@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&family=Noto+Color+Emoji&family=Unbounded:wght@200..900&display=swap");
/***************************

foundation/base.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 160px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 834px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  overflow-x: hidden;
  font-size: 1.6rem;
  color: #fff;
  font-family: "IBM Plex Sans JP", serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  background-color: #00bc8b;
  width: 100%;
}
@media screen and (max-width: 450px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: all 0.3s linear;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
header [class^=inner] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 40px 0 55px;
  z-index: 12;
}
@media screen and (max-width: 834px) {
  header [class^=inner] {
    padding: 20px 30px;
  }
  header [class^=inner] .rec-header_menu {
    visibility: hidden;
    pointer-events: none;
  }
}
header [class^=inner].inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
header [class^=inner].inner.is-show {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
header [class^=inner].inner.is-show .toggle {
  background-color: #fff;
  color: #2d2d2d;
  border-color: #2d2d2d;
  border-width: 3px;
}
header [class^=inner].inner.is-show .toggle:hover {
  background-color: #fff;
}
header [class^=inner].inner.is-show .toggle__title {
  color: #2d2d2d;
}
header [class^=inner].inner.is-show .entry-btn {
  background-color: #2d2d2d;
  color: #fff;
  border-color: #2d2d2d;
}
header [class^=inner].inner.is-show .gnav .entry-btn {
  background-color: #fff;
  color: #00bc8b;
  border-color: #fff;
}
@media screen and (max-width: 834px) {
  header [class^=inner].inner.is-show .rec-header_menu {
    visibility: visible;
    pointer-events: all;
  }
}

.rec-header_hg {
  color: #fff;
  transition: transform 0.3s ease;
}
.rec-header_hg.hide {
  transform: translateY(-140%);
}
@media screen and (max-width: 834px) {
  .rec-header_hg {
    max-width: 290px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .rec-header_hg .lh-1 {
    line-height: 1.5;
  }
  .rec-header_hg .tac {
    text-align-last: left;
  }
}

.rec-header_logo {
  margin-bottom: 10px;
  max-width: 127px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .rec-header_logo {
    max-width: 100px;
  }
}

.rec-header_menu {
  max-width: 308px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 834px) {
  .rec-header_menu {
    max-width: calc(100% - 40px);
    position: fixed;
    width: 100%;
    left: 20px;
    bottom: 20px;
    z-index: 6;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .rec-header_menu .entry-btn, .rec-header_menu .toggle {
    max-width: 340px;
    line-height: 114px;
    font-size: 3.4rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 450px) {
  .rec-header_menu .entry-btn, .rec-header_menu .toggle {
    line-height: 48px;
    font-size: 1.6rem;
    font-weight: bold;
  }
}

/* Hamburger menu */
.gnav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s linear;
}
@media screen and (max-width: 834px) {
  .gnav {
    position: fixed;
  }
}
.gnav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
}

.ganv-menu {
  max-width: 460px;
  width: 96%;
  height: calc(100svh - 20px);
  margin: 10px 10px 10px auto;
  padding: 20px 10px;
  background-color: #00bc8b;
  overflow-y: auto;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .ganv-menu {
    margin: 10px auto -10px;
  }
}
.ganv-menu .entry-btn {
  max-width: 370px;
  margin: 8.8vh auto 0;
  line-height: 100px;
  font-size: 3.2rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
}
@media screen and (max-width: 834px) {
  .ganv-menu .entry-btn {
    font-size: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .ganv-menu .entry-btn {
    font-size: 2.6rem;
  }
}

.gnav-list {
  padding-top: 19.8vh;
}
@media screen and (max-width: 834px) {
  .gnav-list {
    padding-top: 20px;
  }
}

.gnav-list-item:not(:last-child) {
  margin-bottom: 2rem;
}

.gnav-list-link {
  color: #fff;
  font-size: 1.8rem;
  font-family: "IBM Plex Sans JP", serif;
  line-height: 1;
}
@media screen and (max-width: 450px) {
  .gnav-list-link {
    font-size: 1.6rem;
  }
}

/* toggle button */
.toggle {
  position: relative;
  cursor: pointer;
  display: block;
  background: none;
  outline: none;
  text-align: center;
  transition: all 0.3s ease-out;
  z-index: 10;
}
.toggle:hover {
  opacity: 1;
  background-color: #fff;
}
.toggle:hover .toggle__title {
  color: #00bc8b;
}

.toggle .toggle__title:before {
  content: "menu";
}
.toggle.active .toggle__title:before {
  content: "close";
}

.toggle__title {
  color: #fff;
  font-family: "Unbounded", serif;
  font-weight: bold;
  transition: all 0.3s ease-out;
}

/***************************

layout/_footer.scss

***************************/
footer {
  position: relative;
  padding: 150px 0 90px 0;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  footer {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 450px) {
  footer {
    padding: 80px 0;
  }
}

.rec-footer_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .rec-footer_flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.rec-catch_ttl.-footer_ttl {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  .rec-catch_ttl.-footer_ttl {
    width: fit-content;
  }
}
@media screen and (max-width: 834px) {
  .rec-catch_ttl.-footer_ttl {
    margin-bottom: 50px;
  }
}

.rec-footer_contents {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  .rec-footer_contents {
    width: 100%;
  }
}

.footer_svg {
  position: absolute;
  top: 11%;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}
.footer_svg svg {
  width: 100%;
  pointer-events: none;
}

.entry-btn.-footer_btn {
  max-width: 300px;
  margin: 35px auto 120px;
  display: block;
  line-height: 74px;
}
@media screen and (max-width: 450px) {
  .entry-btn.-footer_btn {
    max-width: 200px;
    line-height: 48px;
    margin-bottom: 80px;
  }
}

.copy {
  display: block;
  text-align: right;
  opacity: 0.5;
  font-size: 1.2rem;
}
@media screen and (max-width: 450px) {
  .copy {
    font-size: 1.1rem;
  }
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_page-title.scss

***************************/
.cmn-hg {
  color: #00bc8b;
  line-height: 1;
}

.cmn-hg_ttl {
  font-size: 11rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .cmn-hg_ttl {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 450px) {
  .cmn-hg_ttl {
    font-size: 4rem;
  }
}

.cmn-hg_txt {
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .cmn-hg_txt {
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .cmn-hg_txt {
    margin-top: 15px;
  }
}

/***************************

object/component/_box.scss

***************************/
.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp {
    display: block;
  }
}

.sp_no {
  display: block;
}
@media screen and (max-width: 450px) {
  .sp_no {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 834px) {
  .tab {
    display: block;
  }
}

.tab_no {
  display: block;
}
@media screen and (max-width: 834px) {
  .tab_no {
    display: none;
  }
}

.speech-bubble {
  position: relative;
  color: #fff;
}

.inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .inner {
    width: 90%;
  }
}
.inner.-s {
  max-width: 1200px;
  width: 90%;
}
.inner.-m {
  max-width: 1440px;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 2000px) {
  .inner.-m {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1500px) {
  .inner.-m {
    margin: 0 auto;
    width: 90%;
  }
}

/***************************

object/component/_button.scss

***************************/
.btn {
  display: block;
  max-width: 150px;
  width: 100%;
  line-height: 48px;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 3px solid #fff;
}

.entry-btn {
  background-color: #fff;
  color: #00bc8b;
}
.entry-btn:hover {
  opacity: 1;
  background-color: #00bc8b;
  color: #fff;
}

.entry-btn_ico {
  position: relative;
  top: -3px;
  margin-right: 9px;
  line-height: 1;
}
.entry-btn_ico img {
  animation: hands 3s linear infinite;
}

@keyframes hands {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(0);
  }
}
.app-btn {
  position: fixed;
  right: 35px;
  bottom: 10px;
  z-index: 12;
  transition: opacity 0.3s ease;
}
.app-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .app-btn {
    max-width: 220px;
    bottom: auto;
    top: 80px;
    right: 20px;
  }
}
@media screen and (max-width: 450px) {
  .app-btn {
    display: none;
  }
}

/***************************

object/object/project/_common.scss

***************************/
#particles-js, #particles-js-body, #particles-js-body-sec {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

#particles-js-body-sec {
  position: absolute;
  border-radius: 45px;
  -webkit-border-radius: 45px;
}
@media screen and (max-width: 450px) {
  #particles-js-body-sec {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

#particles-js {
  position: absolute;
}

#particles-js-body {
  position: fixed;
}

.rec-main {
  padding-top: 145px;
}

.sec-rudius {
  border-radius: 45px;
  -webkit-border-radius: 45px;
}
@media screen and (max-width: 450px) {
  .sec-rudius {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

/* モーダル */
.modalDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 16;
}

/* モーダルがactiveの時 */
.modalDialog.is-active {
  opacity: 1;
  display: flex;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 11;
}

/* モーダルのコンテンツ */
.modal-content {
  position: relative;
  background-color: #fff;
  max-width: 750px;
  width: 90%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  z-index: 12;
}
@media screen and (max-width: 834px) {
  .modal-content {
    max-height: 90vh;
    overflow-x: visible;
    overflow-y: auto;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  width: 25px;
  aspect-ratio: 25/42;
  top: calc(50% - 12px);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 11;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 834px) {
  .swiper-button-next,
  .swiper-button-prev {
    position: fixed;
    width: 20px;
  }
}

.swiper-button-next {
  background-position: top right;
  right: -45px;
  background-image: url(../img/common/btn-next.webp);
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .swiper-button-next {
    right: 10px;
  }
}

.swiper-button-prev {
  left: -45px;
  background-image: url(../img/common/btn-prev.webp);
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .swiper-button-prev {
    left: 10px;
  }
}

.batu-btn {
  position: fixed;
  width: 50px;
  aspect-ratio: 1/1;
  top: 40px;
  right: 40px;
  border-width: 0;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  background: url(../img/common/close-btn.webp) no-repeat top left/cover;
  z-index: 13;
}
@media screen and (max-width: 1000px) {
  .batu-btn {
    width: 40px;
    top: 30px;
    right: 30px;
  }
}
@media screen and (max-width: 834px) {
  .batu-btn {
    width: 30px;
    top: 15px;
    right: 15px;
  }
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/***************************

object/object/project/_mv.scss

***************************/
.rec-mv {
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .rec-mv {
    height: auto;
  }
}

.rec-mv_txtBox {
  max-width: 1306px;
  width: 98%;
  margin: 0 auto;
  line-height: 1;
}

.rec-mv_ja {
  text-align: right;
}
@media screen and (max-width: 716px) {
  .rec-mv_ja.f32 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .rec-mv_ja {
    line-height: 1;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .rec-mv_ja.f32 {
    font-size: 1.8rem;
  }
}

.rec-mv_en {
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .rec-mv_en {
    margin-top: 15px;
  }
}

.rec-mv_moveBox {
  position: fixed;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 80svh;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .rec-mv_moveBox {
    height: 70vh;
  }
}
@media screen and (max-width: 834px) {
  .rec-mv_moveBox {
    position: relative;
    height: auto;
    margin-top: -95px;
  }
}
@media screen and (max-width: 716px) {
  .rec-mv_moveBox {
    margin-top: -40px;
  }
}

#mv-ribonPc {
  position: relative;
  width: 114%;
  height: auto;
  bottom: -19%;
  left: -3%;
  z-index: 1;
}
@media screen and (max-width: 1320px) {
  #mv-ribonPc {
    bottom: -37%;
  }
}
@media screen and (max-width: 834px) {
  #mv-ribonPc {
    display: none;
  }
}

#basePc path {
  fill: #fff; /*塗りの色*/
}

.fade-in-delay-1 {
  animation: fadeIn 0.6s forwards linear;
}

.fade-in-delay-2 {
  animation: fadeIn 0.3s 1s forwards linear;
  fill: none;
}

.fade-in-delay-3 {
  animation: fadeIn 0.3s 0.1s forwards linear;
  fill: none;
}

@keyframes fadeIn {
  0% {
    fill: none;
  }
  100% {
    fill: #fff;
  }
}
#maskPc path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 32px;
}

#mv-ribonSp {
  display: none;
}
@media screen and (max-width: 834px) {
  #mv-ribonSp {
    position: absolute;
    width: 112%;
    top: 30vw;
    left: -2%;
    display: block;
    z-index: 1;
  }
}
@media screen and (max-width: 550px) {
  #mv-ribonSp {
    top: 10vw;
  }
}
@media screen and (max-width: 450px) {
  #mv-ribonSp {
    top: 0;
  }
}

#baseSp path {
  fill: #fff;
}

#svgMaskSp path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 32px;
  fill: none;
}

.rec-mv_human-wrap {
  max-width: 1325px;
  width: 100%;
  margin: -34% auto 0;
  position: relative;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 834px) {
  .rec-mv_human-wrap {
    margin: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.rec-mv_human {
  width: 20%;
  text-align: right;
  opacity: 0;
  animation: fadin 0.5s linear forwards;
}
@media screen and (max-width: 834px) {
  .rec-mv_human {
    width: 33.3333333333%;
    text-align: center;
  }
}
.rec-mv_human:nth-child(2) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(2):nth-child(4) {
    animation-delay: 1.6s;
  }
  .rec-mv_human:nth-child(2):nth-child(5) {
    animation-delay: 1.2s;
  }
}
.rec-mv_human:nth-child(3) {
  animation-delay: 0.8s;
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(3):nth-child(4) {
    animation-delay: 1.6s;
  }
  .rec-mv_human:nth-child(3):nth-child(5) {
    animation-delay: 1.2s;
  }
}
.rec-mv_human:nth-child(4) {
  animation-delay: 1.2s;
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(4):nth-child(4) {
    animation-delay: 1.6s;
  }
  .rec-mv_human:nth-child(4):nth-child(5) {
    animation-delay: 1.2s;
  }
}
.rec-mv_human:nth-child(5) {
  animation-delay: 1.6s;
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(5):nth-child(4) {
    animation-delay: 1.6s;
  }
  .rec-mv_human:nth-child(5):nth-child(5) {
    animation-delay: 1.2s;
  }
}
.rec-mv_human:nth-child(1), .rec-mv_human:nth-child(3), .rec-mv_human:nth-child(5) {
  position: relative;
  z-index: 2;
}
.rec-mv_human:nth-child(2) {
  padding-right: 2.5vw;
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(2) {
    z-index: 1;
  }
}
.rec-mv_human:nth-child(3) {
  position: relative;
  right: -1.5vw;
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(3) {
    right: -47px;
  }
}
@media screen and (max-width: 450px) {
  .rec-mv_human:nth-child(3) {
    right: -18px;
  }
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(1) {
    top: 30px;
    padding-top: 30px;
    z-index: 0;
  }
}
@media screen and (max-width: 700px) {
  .rec-mv_human:nth-child(1) img {
    width: 55%;
  }
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(4), .rec-mv_human:nth-child(5) {
    position: relative;
    width: 50%;
    top: -30px;
  }
}
.rec-mv_human:nth-child(4) {
  position: relative;
}
@media (min-width: 835px) and (max-width: 1570px) and (max-height: 768px) {
  .rec-mv_human:nth-child(4) {
    z-index: 1;
  }
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(4) {
    padding-left: 7vw;
    z-index: 1;
  }
}
@media screen and (max-width: 450px) {
  .rec-mv_human:nth-child(4) img {
    width: 55%;
  }
}
@media screen and (max-width: 834px) {
  .rec-mv_human:nth-child(5) {
    top: -50px;
    z-index: 0;
  }
}
@media screen and (max-width: 450px) {
  .rec-mv_human:nth-child(5) img {
    width: 40%;
  }
}

@keyframes fadin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.rec-mv_human-cap {
  position: absolute;
  top: -33px;
  right: -3vw;
  z-index: -1;
  padding: 20px 15px 30px;
  line-height: 1.3;
  text-align: left;
  font-weight: 500;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  font-size: 1.5rem;
  background: url(../img/icon/fukidasi-mv.webp) no-repeat top left/cover;
  box-shadow: none;
}
@media screen and (max-width: 450px) {
  .rec-mv_human-cap {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  .rec-mv_human-cap {
    padding: 35px 30px 55px;
    top: -30px;
    right: -30px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .rec-mv_human-cap {
    padding: 20px 15px 30px;
    font-size: 1.5rem;
    right: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 450px) {
  .rec-mv_human-cap {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 635px) {
  .rec-mv_human-cap {
    right: -30px;
  }
}
.rec-mv_human-cap::before {
  display: none;
}

/***************************

object/object/project/_catch.scss

***************************/
.rec-catch {
  position: relative;
  z-index: 1;
}
.rec-catch p:not(.rec-catch_txt) {
  line-height: 3;
  font-weight: 600;
  font-style: italic;
}
@media screen and (max-width: 450px) {
  .rec-catch p:not(.rec-catch_txt) {
    line-height: 2;
  }
}
.rec-catch p:not(.rec-catch_txt):not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 450px) {
  .rec-catch p:not(.rec-catch_txt):not(:first-child) {
    margin-top: 20px;
  }
}

.rec-catch_ttl {
  width: fit-content;
  margin: 0 auto 90px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .rec-catch_ttl {
    margin-bottom: 40px;
  }
}
.rec-catch_ttl span {
  position: relative;
  display: block;
}

.rec-catch_ttl-ico01 {
  position: absolute;
  width: 35px;
  left: -10px;
  bottom: 18px;
  font-size: 3.5rem;
}
@media screen and (max-width: 834px) {
  .rec-catch_ttl-ico01 {
    width: 70px;
  }
}
@media screen and (max-width: 716px) {
  .rec-catch_ttl-ico01 {
    width: 30px;
    bottom: 10px;
  }
}

.rec-catch_ttl-ico02 {
  width: 32px;
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 834px) {
  .rec-catch_ttl-ico02 {
    width: 40px;
  }
}
@media screen and (max-width: 716px) {
  .rec-catch_ttl-ico02 {
    width: 26px;
  }
  .rec-catch_ttl-ico02 img {
    width: 26px;
  }
}
@media screen and (max-width: 450px) {
  .rec-catch_ttl-ico02 {
    width: 20px;
  }
  .rec-catch_ttl-ico02 img {
    width: 20px;
  }
}

.rec-catch_txt {
  margin: 80px 0 0 auto;
  width: fit-content;
  line-height: 1;
  font-weight: bold;
  font-style: italic;
}
@media screen and (max-width: 834px) {
  .rec-catch_txt {
    width: 100%;
    margin: 80px auto;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .rec-catch_txt {
    margin-top: 40px;
  }
}
.rec-catch_txt span:not(.bd-btm):not(.end) {
  display: block;
}
.rec-catch_txt .bd-btm {
  margin-top: 13px;
}
@media screen and (max-width: 450px) {
  .rec-catch_txt .bd-btm {
    margin-top: 10px;
  }
}
.rec-catch_txt .bd-btm:before {
  height: 5px;
  background-color: #fff;
}
@media screen and (max-width: 450px) {
  .rec-catch_txt .bd-btm:before {
    height: 3px;
  }
}
@media screen and (max-width: 834px) {
  .rec-catch_txt .f60 {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 772px) {
  .rec-catch_txt .f60 {
    font-size: 4.1rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-catch_txt .f60 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 834px) {
  .rec-catch_txt .f42 {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 772px) {
  .rec-catch_txt .f42 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-catch_txt .f42 {
    font-size: 2.2rem;
  }
}

.rec-catch_swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .rec-catch_swiper {
    position: relative;
    margin-top: 120px;
    padding: 50px;
  }
}
@media screen and (max-width: 450px) {
  .rec-catch_swiper {
    margin-top: -70px;
  }
}

@media screen and (max-width: 834px) {
  .rec-catch_swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
    transition-timing-function: linear;
  }
}
@media screen and (max-width: 450px) {
  .rec-catch_swiper-wrapper {
    gap: 20px;
  }
}

.rec-catch_img {
  position: absolute;
  width: fit-content;
  height: fit-content;
}
.rec-catch_img:nth-child(1) {
  top: -60px;
  left: 6.6vw;
}
.rec-catch_img:nth-child(2) {
  right: 0;
  top: 12.4%;
}
@media screen and (max-width: 1360px) {
  .rec-catch_img:nth-child(2) {
    text-align: right;
  }
}
.rec-catch_img:nth-child(3) {
  left: 0;
  bottom: 27.6%;
}
.rec-catch_img:nth-child(4) {
  right: 8.3vw;
  bottom: 16.6%;
}
@media screen and (max-width: 1360px) {
  .rec-catch_img:nth-child(4) {
    text-align: right;
  }
}
.rec-catch_img:nth-child(5) {
  bottom: -40px;
  left: 7.4vw;
}
@media screen and (max-width: 834px) {
  .rec-catch_img {
    position: relative;
    width: auto;
    height: auto;
  }
  .rec-catch_img:nth-child(1), .rec-catch_img:nth-child(2), .rec-catch_img:nth-child(3), .rec-catch_img:nth-child(4), .rec-catch_img:nth-child(5) {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
.rec-catch_img img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1360px) {
  .rec-catch_img img {
    width: 70%;
  }
}
@media screen and (max-width: 834px) {
  .rec-catch_img img {
    width: 100%;
  }
}

/***************************

object/object/project/_work.scss

***************************/
.rec-work {
  margin-top: 175px;
  padding: 120px 0 140px;
  background-color: #e4f2ee;
  color: #000;
  border-radius: 45px 45px 20px 20px;
  -webkit-border-radius: 45px 45px 20px 20px;
}
@media screen and (max-width: 834px) {
  .rec-work {
    margin-top: 100px;
    padding: 100px 0 140px;
  }
}
@media screen and (max-width: 450px) {
  .rec-work {
    margin-top: 0px;
    padding: 50px 0 80px;
    border-radius: 30px 30px 10px 10px;
    -webkit-border-radius: 30px 30px 10px 10px;
  }
}

.rec-work_flex {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .rec-work_flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 1500px) and (max-width: 450px) {
  .rec-work_flex {
    margin-top: 40px;
  }
}

.rec-work_contents {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .rec-work_contents {
    max-width: 100%;
  }
}
.rec-work_contents h3 {
  margin-bottom: 30px;
}
.rec-work_contents span {
  display: block;
}
.rec-work_contents span:last-child {
  margin-top: 10px;
}

.rec-work_flex-txt {
  padding-right: 60px;
}
@media screen and (max-width: 1500px) {
  .rec-work_flex-txt {
    padding-right: 0;
  }
}

.rec-work_box {
  position: relative;
  margin-top: 85px;
  padding: 60px 70px 25px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .rec-work_box {
    padding: 30px 40px 30px 30px;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_box {
    padding: 30px 20px;
  }
}
.rec-work_box h4 {
  margin-bottom: 30px;
  line-height: 1.5;
  text-decoration: underline;
}
.rec-work_box .speech-bubble {
  position: absolute;
  top: -13px;
  left: -37px;
  padding: 20px 40px 50px;
  box-shadow: none;
  line-height: 1.8;
  background: url(../img/icon/fukidasi-work.webp) no-repeat top left/cover;
  font-size: 1.5rem;
}
@media screen and (max-width: 834px) {
  .rec-work_box .speech-bubble {
    top: -55px;
    left: -15px;
    padding: 10px 20px 30px;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_box .speech-bubble {
    font-size: 1.4rem;
  }
}
.rec-work_box .speech-bubble::before {
  display: none;
}
.rec-work_box .speech-bubble i {
  margin-left: 5px;
}
@media screen and (max-width: 450px) {
  .rec-work_box .speech-bubble i {
    width: 18px;
  }
  .rec-work_box .speech-bubble i img {
    width: 18px;
  }
}

.rec-work_box-txt {
  padding-right: 50px;
  font-size: 1.4rem;
}
@media screen and (max-width: 450px) {
  .rec-work_box-txt {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_box-txt {
    padding-right: 70px;
  }
}

.rec-work_box-img {
  position: absolute;
  bottom: -28px;
  right: 15px;
}
@media screen and (max-width: 834px) {
  .rec-work_box-img {
    width: 100px;
    right: -5px;
  }
}

.rec-work_cursor {
  position: relative;
  width: calc(100% - 600px);
}
@media screen and (max-width: 1500px) {
  .rec-work_cursor {
    width: 100%;
  }
}

.rec-work_cursor-img {
  position: relative;
  left: -40px;
  width: calc(100% + 40px);
}
@media screen and (max-width: 1500px) {
  .rec-work_cursor-img {
    width: 100%;
    left: 0;
  }
  .rec-work_cursor-img img {
    width: 100%;
  }
}

.rec-work_modal01-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  padding-top: 30px;
  max-width: 101px;
  width: 100%;
  aspect-ratio: 101/114;
  background: url(../img/work/modal-btn.webp) no-repeat top left/cover;
  border: none;
  font-family: "Unbounded", serif;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .rec-work_modal01-btn {
    max-width: 60px;
    padding-top: 18px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal01-btn {
    max-width: 50px;
    padding-top: 14px;
    font-size: 1.2rem;
  }
}
.rec-work_modal01-btn:nth-child(1) {
  top: 5.4vw;
  left: 6.2vw;
}
@media screen and (max-width: 1500px) {
  .rec-work_modal01-btn:nth-child(1) {
    top: 13vw;
    left: 13vw;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal01-btn:nth-child(1) {
    top: 6vw;
    left: 10vw;
  }
}
.rec-work_modal01-btn:nth-child(2) {
  top: 11.8vw;
  left: calc(42.5% - 50px);
}
@media screen and (max-width: 1500px) {
  .rec-work_modal01-btn:nth-child(2) {
    top: 23vw;
    left: calc(45% - 50px);
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal01-btn:nth-child(2) {
    left: calc(50% - 50px);
  }
}
.rec-work_modal01-btn:nth-child(3) {
  top: -38px;
  left: calc(39% - 50px);
}
@media screen and (max-width: 1500px) {
  .rec-work_modal01-btn:nth-child(3) {
    top: -20px;
    left: calc(43% - 50px);
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal01-btn:nth-child(3) {
    left: calc(50% - 50px);
  }
}
.rec-work_modal01-btn:nth-child(4) {
  top: -27px;
  left: calc(58% - 50px);
}
@media screen and (max-width: 1500px) {
  .rec-work_modal01-btn:nth-child(4) {
    top: -10px;
    left: calc(61% - 50px);
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal01-btn:nth-child(4) {
    left: calc(67% - 50px);
  }
}
.rec-work_modal01-btn:nth-child(5) {
  top: 4.5vw;
  right: calc(28% - 50px);
}
@media screen and (max-width: 1500px) {
  .rec-work_modal01-btn:nth-child(5) {
    top: 8vw;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal01-btn:nth-child(5) {
    top: 7vw;
    right: calc(36% - 50px);
  }
}
.rec-work_modal01-btn:nth-child(6) {
  top: 10vw;
  right: calc(14% - 50px);
}
@media screen and (max-width: 1500px) {
  .rec-work_modal01-btn:nth-child(6) {
    top: 17vw;
    right: calc(15% - 50px);
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal01-btn:nth-child(6) {
    top: 14vw;
    right: calc(25% - 50px);
  }
}

.cursor-work {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 120px;
  aspect-ratio: 1/1;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  transform: scale(0);
  background: url(../img/work/cursor.webp) no-repeat center/cover;
  transition: all 0.3s linear;
  pointer-events: none;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .cursor-work {
    width: 100px;
  }
}
@media screen and (max-width: 450px) {
  .cursor-work {
    width: 70px;
  }
}
.cursor-work.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.work-modal_box {
  position: relative;
  padding: 40px 50px 60px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .work-modal_box {
    padding: 30px;
  }
}

.rec-work_ttl {
  line-height: 1;
  font-weight: 500;
  font-size: 2.4rem;
}
@media screen and (max-width: 450px) {
  .rec-work_ttl {
    font-size: 2rem;
  }
}

.rec-work_number {
  display: inline-block;
  width: 50px;
  margin-right: 15px;
  padding-top: 15px;
  aspect-ratio: 1/1;
  color: #fff;
  font-family: "Unbounded", serif;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  background-color: #00bc8b;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .rec-work_number {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_number {
    width: 40px;
    margin-right: 10px;
    padding-top: 10px;
  }
}

.rec-work_modal-swiper_flex {
  margin-top: 20px;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .rec-work_modal-swiper_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal-swiper_flex {
    margin-bottom: 20px;
    gap: 5px;
  }
}
.rec-work_modal-swiper_flex img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.rec-work_modal-swiper_main {
  max-width: 540px;
  width: 100%;
}

.rec-work_modal-thum {
  max-width: 100px;
  width: 100%;
  height: calc((100% - 20px) / 5);
}
@media screen and (max-width: 834px) {
  .rec-work_modal-thum {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal-thum {
    gap: 3px;
  }
}
@media screen and (max-width: 450px) {
  .rec-work_modal-thum img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
  }
}

.rec-work_modal-thum_item {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  cursor: pointer;
}
.rec-work_modal-thum_item.thumb-media-active {
  border: 2px solid #00bc8b;
}
.rec-work_modal-thum_item:not(:first-child) {
  margin-top: 5px;
}
@media screen and (max-width: 834px) {
  .rec-work_modal-thum_item:not(:first-child) {
    margin-top: 0;
  }
}

.rec-work_list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}

.rec-work_list-item {
  background-color: #f5f5f5;
  color: #00bc8b;
  font-weight: 500;
  line-height: 1;
  padding: 10px 15px;
  border-radius: 45px;
  -webkit-border-radius: 45px;
}

/***************************

object/object/project/_team.scss

***************************/
.rec-team {
  position: relative;
  margin-top: -45px;
  padding: 80px 0 95px;
  z-index: 11;
  overflow: hidden;
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 450px) {
  .rec-team {
    padding: 50px 0;
  }
}

.rec-team_svg {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 1;
  width: 100%;
}
.rec-team_svg svg {
  width: 100%;
}

.sec-team_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1430px) {
  .sec-team_flex {
    display: block;
  }
}

.rec-team_contents {
  width: 685px;
}
@media screen and (max-width: 1430px) {
  .rec-team_contents {
    width: 100%;
  }
}
.rec-team_contents .fc-green {
  margin: 60px 0 40px;
}
@media screen and (max-width: 450px) {
  .rec-team_contents .fc-green {
    margin: 30px 0 20px;
  }
}
@media screen and (max-width: 450px) {
  .rec-team_contents .f60 {
    font-size: 2.4rem;
  }
}
.rec-team_contents span {
  display: block;
}
.rec-team_contents span:nth-child(2) {
  margin-top: 30px;
  letter-spacing: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 834px) {
  .rec-team_contents span:nth-child(2) {
    margin-top: 15px;
  }
}
@media screen and (max-width: 450px) {
  .rec-team_contents span:nth-child(2) {
    margin-top: 10px;
  }
}
.rec-team_contents span:nth-child(2) .end {
  top: 0;
  width: 0.8em;
}

.rec-team_swiper {
  position: relative;
  width: calc(100% - 715px);
  z-index: 2;
}
@media screen and (max-width: 1430px) {
  .rec-team_swiper {
    position: relative;
    right: -10%;
    width: 90%;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .rec-team_swiper {
    margin-top: 20px;
    width: 100%;
  }
}
.rec-team_swiper .swiper-slide {
  scale: 0.8;
  transition: all 0.3s linear;
}
.rec-team_swiper .swiper-slide.swiper-slide-active {
  scale: 1;
}

.rec-team_modal-open {
  position: relative;
  border: none;
  background: none;
}
@media screen and (max-width: 570px) {
  .rec-team_modal-open {
    min-height: 300px;
  }
}

.rec-team_swiper-cap {
  position: absolute;
  padding: 34px 15.5px;
  right: 4.2vw;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #00bc8b;
  color: #fff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  line-height: 1;
  writing-mode: vertical-rl;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .rec-team_swiper-cap {
    padding: 15px 10px;
    gap: 5px;
  }
}
@media screen and (max-width: 450px) {
  .rec-team_swiper-cap {
    gap: 0;
  }
}
.rec-team_swiper-cap .f20 {
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 834px) {
  .rec-team_swiper-cap .f20 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-team_swiper-cap .f20 {
    font-size: 1.4rem;
  }
}
.rec-team_swiper-cap .f24 {
  display: inline-block;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .rec-team_swiper-cap .f24 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-team_swiper-cap .f24 {
    font-size: 1.8rem;
  }
}

.team-modal_box {
  padding: 40px 50px 60px;
}
@media screen and (max-width: 834px) {
  .team-modal_box {
    padding: 30px;
  }
}

.team-modal_box-flex {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 27px;
}
@media screen and (max-width: 834px) {
  .team-modal_box-flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.team-modal_box-fig {
  max-width: 111px;
  width: 100%;
}

.team-modal_hg {
  line-height: 1;
}
.team-modal_hg .f18, .team-modal_hg .fc-green {
  font-weight: 600;
}
.team-modal_hg .fc-green {
  margin-top: 15px;
}
.team-modal_hg p:last-child {
  margin-top: 15px;
  font-weight: 500;
}

.cursor-team {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 120px;
  aspect-ratio: 1/1;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  transform: scale(0);
  background: url(../img/team/cursor.webp) no-repeat center/cover;
  transition: all 0.3s linear;
  pointer-events: none;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .cursor-team {
    width: 100px;
  }
}
@media screen and (max-width: 450px) {
  .cursor-team {
    width: 70px;
  }
}
.cursor-team.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/***************************

object/object/project/_environment.scss

***************************/
.rec-environ {
  position: relative;
  margin-top: -45px;
  height: calc(100vh + 5900px);
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .rec-environ {
    height: calc(100vh + 5140px);
  }
}
.rec-environ::before {
  position: sticky;
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/environment/bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 1005px) {
  .rec-environ .cmn-hg_ttl {
    font-size: 9rem;
  }
}
@media screen and (max-width: 834px) {
  .rec-environ .cmn-hg_ttl {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-environ .cmn-hg_ttl {
    font-size: 3.2rem;
  }
}

.rec-environ_txt-contents {
  position: sticky;
  max-width: 1200px;
  width: 90%;
  height: 100svh;
  margin: -80vh auto 0;
  top: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.rec-environ_txt-contents .cmn-hg {
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .rec-environ_txt-contents .cmn-hg {
    margin-bottom: 30px;
  }
}
.rec-environ_txt-contents p.fc-white.tac {
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .rec-environ_txt-contents p.fc-white.tac {
    margin-bottom: 20px;
  }
}
.rec-environ_txt-contents p.fc-white.tac span:last-child {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 834px) {
  .rec-environ_txt-contents p.fc-white.tac span:last-child {
    margin-top: 10px;
    line-height: 1.3;
  }
}

.rec-environ_txt-contents_txt {
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .rec-environ_txt-contents_txt.tac {
    text-align: left;
  }
}

.rec-environ_speech {
  position: relative;
  max-width: 370px;
  width: 100%;
  padding: 30px 35px 100px 50px;
  aspect-ratio: 370/404;
  top: 100vh;
  z-index: 3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
@media screen and (max-width: 450px) {
  .rec-environ_speech {
    max-width: 300px;
    padding: 20px;
  }
}
.rec-environ_speech.-right {
  margin: 0 0 0 auto;
  right: -15px;
  background-image: url(../img/environment/speech_right.webp);
}
.rec-environ_speech.-left {
  left: -15px;
  background-image: url(../img/environment/speech_left.webp);
}
.rec-environ_speech:not(:first-child) {
  margin-top: 70px;
}
.rec-environ_speech h3 {
  margin: 12px 0 20px;
}
@media screen and (max-width: 450px) {
  .rec-environ_speech h3 {
    margin: 10px 0;
  }
}
.rec-environ_speech h3 span {
  display: block;
  line-height: 1;
}
.rec-environ_speech h3 span:last-child {
  margin-top: 10px;
}
@media screen and (max-width: 450px) {
  .rec-environ_speech i {
    max-width: 30px;
    max-height: 30px;
  }
}

.rec-environ_speech-icon {
  margin: 0 0 0 auto;
  width: fit-content;
  display: block;
}

/***************************

object/object/project/_data.scss

***************************/
.rec-data {
  position: relative;
  margin-top: -45px;
  padding: 80px 0 95px;
  background-color: #e4f2ee;
  color: #000;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .rec-data {
    padding: 60px 0;
  }
}
@media screen and (max-width: 450px) {
  .rec-data {
    padding: 50px 0;
  }
}
.rec-data::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #000 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #000 calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center center;
  border-radius: 45px;
  -webkit-border-radius: 45px;
  mix-blend-mode: overlay;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}
.rec-data .inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 985px) {
  .rec-data .cmn-hg_ttl {
    font-size: 9rem;
  }
}
@media screen and (max-width: 834px) {
  .rec-data .cmn-hg_ttl {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-data .cmn-hg_ttl {
    font-size: 3rem;
  }
}

.cmn-hg.-rec-data {
  position: sticky;
  top: 50%;
}

.rec-data_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .rec-data_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.rec-data_flex._01 {
  margin-top: 70px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .rec-data_flex._01 {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.rec-data_flex._02 {
  margin-top: -60px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .rec-data_flex._02 {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.rec-data_box {
  position: relative;
  padding-top: 55px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.rec-data_box._01 {
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 55px;
}
.rec-data_box._01 figure {
  margin-top: -130px;
}
@media screen and (max-width: 600px) {
  .rec-data_box._01 figure {
    margin-top: -30px;
  }
}
.rec-data_box._02 {
  margin-top: 140px;
  padding-right: 55px;
  padding-left: 40px;
  padding-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .rec-data_box._02 {
    margin-top: 0;
  }
}
.rec-data_box._02 .tac {
  margin-top: 30px;
}
.rec-data_box._03 {
  padding-right: 10px;
  padding-left: 35px;
  padding-bottom: 65px;
}
.rec-data_box._04 {
  margin-top: 20px;
  padding-right: 30px;
  padding-left: 60px;
  padding-bottom: 65px;
}
@media screen and (max-width: 834px) {
  .rec-data_box._04 {
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .rec-data_box._04 {
    width: 100%;
  }
}
.rec-data_box._04 .flexbox {
  gap: 20px;
}
@media screen and (max-width: 450px) {
  .rec-data_box._04 .flexbox {
    gap: 10px;
  }
}
.rec-data_box._04 .rec-data_hg {
  margin-bottom: 0;
}
.rec-data_box._04 .lh-1 {
  margin-top: -20px;
}
@media screen and (max-width: 450px) {
  .rec-data_box._04 .lh-1 {
    margin-top: 0;
  }
}
.rec-data_box._05 {
  margin: 75px 0 0 auto;
  max-width: 972px;
  padding-right: 30px;
  padding-left: 55px;
  padding-bottom: 45px;
}
@media screen and (max-width: 834px) {
  .rec-data_box._05 {
    margin-top: 30px;
  }
}
.rec-data_box._05 .flexbox {
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .rec-data_box._05 .flexbox {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
  }
}
.rec-data_box._05 .rec-data_hg {
  margin-bottom: 24px;
}
@media screen and (max-width: 834px) {
  .rec-data_box._05 .rec-data_hg {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 834px) {
  .rec-data_box._05 .tar {
    text-align: left;
  }
}
.rec-data_box .fwsb {
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .rec-data_box {
    padding: 40px 30px !important;
  }
}
@media screen and (max-width: 450px) {
  .rec-data_box {
    padding: 30px 20px !important;
  }
}

.rec-data_hg {
  margin-bottom: 25px;
  color: #cadcd7;
  line-height: 1;
}
.rec-data_hg .fwsb {
  margin-top: 24px;
}
@media screen and (max-width: 450px) {
  .rec-data_hg .f28 {
    font-size: 1.6rem;
  }
}

.rec-data_txt {
  margin-top: 10px;
}

/***************************

object/object/project/_detail.scss

***************************/
.rec-detail {
  position: relative;
  margin-top: -45px;
  padding: 120px 0 130px;
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 834px) {
  .rec-detail {
    padding: 80px 0;
  }
}
@media screen and (max-width: 450px) {
  .rec-detail {
    padding: 80px 0 50px;
  }
}
@media screen and (max-width: 834px) {
  .rec-detail .cmn-hg_ttl {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-detail .cmn-hg_ttl {
    font-size: 3rem;
  }
}

.rec-detail_flex01 {
  margin-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0px;
}
@media screen and (max-width: 1340px) {
  .rec-detail_flex01 {
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .rec-detail_flex01 {
    margin-top: 50px;
  }
  .rec-detail_flex01 .f42 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 450px) {
  .rec-detail_flex01 {
    margin-top: 30px;
  }
  .rec-detail_flex01 .f42 {
    font-size: 1.8rem;
  }
}

.tabs {
  position: relative;
  margin-top: 15px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f5f5f5;
  border-radius: 80px;
  -webkit-border-radius: 80px;
}
@media screen and (max-width: 1340px) {
  .tabs {
    max-width: 500px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 834px) {
  .tabs {
    padding: 5px 10px;
  }
}

.tabBtn {
  width: 163px;
  padding: 16px 0;
  display: block;
  color: #000;
  text-align: center;
  line-height: 1.3;
  font-size: 1.5rem;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .tabBtn {
    width: 33.3333333333%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .tabBtn {
    font-size: 1.2rem;
  }
}
.tabBtn.current {
  color: #fff;
}
.tabBtn:nth-child(1).current ~ .tab-current {
  transform: translateX(0);
}
.tabBtn:nth-child(2).current ~ .tab-current {
  transform: translateX(100%);
}
.tabBtn:nth-child(3).current ~ .tab-current {
  transform: translateX(200%);
}

.tab-current {
  position: absolute;
  content: "";
  width: 163px;
  height: 70px;
  top: 5px;
  background-color: #00bc8b;
  border-radius: 80px;
  -webkit-border-radius: 80px;
  z-index: 1;
  transition: all 0.3s linear;
}
@media screen and (max-width: 834px) {
  .tab-current {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 450px) {
  .tab-current {
    height: 65px;
  }
}

.rec-detail_flex02 {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .rec-detail_flex02 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .rec-detail_flex02 {
    margin-top: 30px;
  }
}

.rec-detail_fig {
  max-width: 540px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .rec-detail_fig {
    max-width: 100%;
  }
}
.rec-detail_fig img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.rec-detail_list {
  width: calc(100% - 600px);
}
@media screen and (max-width: 1100px) {
  .rec-detail_list {
    width: 100%;
  }
}

.rec-detail_cap {
  margin-top: 30px;
}
@media screen and (max-width: 450px) {
  .rec-detail_cap {
    margin-top: 20px;
  }
}

.rec-detail_ttl {
  margin-bottom: 15px;
  border-bottom: 1px dashed #ccc;
}

.rec-detail_item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 834px) {
  .rec-detail_item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.rec-detail_dt {
  line-height: 1;
  color: #00bc8b;
  font-weight: 600;
}

.rec-detail_dd {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .rec-detail_dd {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  .rec-detail_dd {
    margin-top: 15px;
  }
}
.rec-detail_dd .f12 {
  display: block;
}
.rec-detail_dd ul {
  padding-left: 17px;
}
.rec-detail_dd li {
  position: relative;
}
.rec-detail_dd li::before {
  position: absolute;
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  top: 8px;
  left: -17px;
  background-color: #00bc8b;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.rec-detail_dd p {
  margin-top: 10px;
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

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

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 835px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_text.scss

***************************/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwsb {
  font-weight: 600;
}

.fwn {
  font-weight: normal;
}

.fsi {
  font-style: italic;
}

.lh-1 {
  line-height: 1;
}

.bd-btm {
  position: relative;
  display: inline-block;
}
.bd-btm:before {
  position: absolute;
  content: "";
  width: 100%;
  bottom: -2px;
}

.end {
  position: relative;
  bottom: 0;
  display: inline-block;
  overflow: hidden;
  width: 0.5em;
  top: 10px;
}

.en {
  font-family: "Unbounded", serif;
  font-weight: bold;
}

.ja {
  font-family: "IBM Plex Sans JP", serif;
}

.f12 {
  font-size: 1.2rem;
}
@media screen and (max-width: 450px) {
  .f12 {
    font-size: 1.1rem;
  }
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f20 {
  font-size: 2rem;
}
@media screen and (max-width: 834px) {
  .f20 {
    font-size: 1.8rem;
  }
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 716px) {
  .f21 {
    font-size: 1.6rem;
  }
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 450px) {
  .f24 {
    font-size: 2rem;
  }
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 450px) {
  .f28 {
    font-size: 2rem;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 834px) {
  .f32 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .f32 {
    font-size: 2.6rem;
  }
}

.f39 {
  font-size: 3.9rem;
}

.f40 {
  font-size: 4rem;
}

.f42 {
  font-size: 4.2rem;
}
@media screen and (max-width: 834px) {
  .f42 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 450px) {
  .f42 {
    font-size: 2rem;
  }
}

.f50 {
  font-size: 5rem;
}

.f60 {
  font-size: 6rem;
}
@media screen and (max-width: 834px) {
  .f60 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 450px) {
  .f60 {
    font-size: 3rem;
  }
}

.f70 {
  font-size: 7rem;
}
@media screen and (max-width: 834px) {
  .f70 {
    font-size: 8.6rem;
  }
}
@media screen and (max-width: 716px) {
  .f70 {
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 450px) {
  .f70 {
    font-size: 3.2rem;
  }
}

.f100 {
  font-size: 11rem;
}
@media screen and (max-width: 1331px) {
  .f100 {
    font-size: 6.8rem;
  }
}
@media screen and (max-width: 834px) {
  .f100 {
    font-size: 11rem;
  }
}
@media screen and (max-width: 716px) {
  .f100 {
    font-size: 6.8rem;
  }
}
@media screen and (max-width: 450px) {
  .f100 {
    font-size: 5rem;
  }
}

.f110 {
  font-size: 11rem;
}
@media screen and (max-width: 1331px) {
  .f110 {
    font-size: 6.8rem;
  }
}
@media screen and (max-width: 834px) {
  .f110 {
    font-size: 11rem;
  }
}
@media screen and (max-width: 716px) {
  .f110 {
    font-size: 6.8rem;
  }
}
@media screen and (max-width: 450px) {
  .f110 {
    font-size: 5rem;
  }
}

.f136 {
  font-size: 13.6rem;
}
@media screen and (max-width: 834px) {
  .f136 {
    font-size: 17rem;
  }
}
@media screen and (max-width: 716px) {
  .f136 {
    font-size: 11rem;
  }
}
@media screen and (max-width: 450px) {
  .f136 {
    font-size: 7rem;
  }
}

.fc-green {
  color: #00bc8b;
}

.fc-white {
  color: #fff;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mr0 {
  margin-right: 0px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mr45 {
  margin-right: 45px;
}

.mr50 {
  margin-right: 50px;
}

.mr55 {
  margin-right: 55px;
}

.mr60 {
  margin-right: 60px;
}

.mr65 {
  margin-right: 65px;
}

.mr70 {
  margin-right: 70px;
}

.mr75 {
  margin-right: 75px;
}

.mr80 {
  margin-right: 80px;
}

.mr85 {
  margin-right: 85px;
}

.mr90 {
  margin-right: 90px;
}

.mr95 {
  margin-right: 95px;
}

.mr100 {
  margin-right: 100px;
}

.ml0 {
  margin-left: 0px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.ml45 {
  margin-left: 45px;
}

.ml50 {
  margin-left: 50px;
}

.ml55 {
  margin-left: 55px;
}

.ml60 {
  margin-left: 60px;
}

.ml65 {
  margin-left: 65px;
}

.ml70 {
  margin-left: 70px;
}

.ml75 {
  margin-left: 75px;
}

.ml80 {
  margin-left: 80px;
}

.ml85 {
  margin-left: 85px;
}

.ml90 {
  margin-left: 90px;
}

.ml95 {
  margin-left: 95px;
}

.ml100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.subEng {
  text-transform: uppercase;
  font-family: "Lexend Zetta", sans-serif;
}

.garamond {
  font-family: "EB Garamond", serif;
}

.lexend {
  font-family: "Lexend Zetta", sans-serif;
}

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