@charset "UTF-8";
/* CSS Document */

/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
:root {
  --color1: rgb(0, 255, 255);
  --color2: rgb(244, 35, 43);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  font-size: min(3.4vw, 14px);
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background: #e8e8e1 url("../images/bg_texture.gif") repeat center top;
  background-size: 120px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.anim.on {
  opacity: 1;
  transform: translateY(0px);
}

a {
  color: #000;
}

section {
  padding: min(12vw, 80px) 0;
}

section h2 {
  font-size: min(6.8vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-bottom: 1.4em;
  white-space: nowrap;
}

section h2 .ttlEn {
  color: var(--color2);
  font-size: 0.44em;
  display: block;
  letter-spacing: 0.06em;
  margin-bottom: 0.8em;
  border-left: #000 solid 1px;
  padding-left: 1em;
  line-height: 1.2;
}

.contentWrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 min(6vw, 60px);
  position: relative;
  z-index: 2;
}

.footerArea {
  height: 660px;
}

/*////////// text glitch //////////*/
@keyframes txt_glitch-1 {
  0% {
    clip: rect(103px, 450px, 30px, 0);
  }

  5.88235% {
    clip: rect(94px, 450px, 44px, 0);
  }

  11.76471% {
    clip: rect(55px, 450px, 48px, 0);
  }

  17.64706% {
    clip: rect(11px, 450px, 110px, 0);
  }

  23.52941% {
    clip: rect(26px, 450px, 107px, 0);
  }

  29.41176% {
    clip: rect(49px, 450px, 71px, 0);
  }

  35.29412% {
    clip: rect(83px, 450px, 109px, 0);
  }

  41.17647% {
    clip: rect(52px, 450px, 45px, 0);
  }

  47.05882% {
    clip: rect(30px, 450px, 82px, 0);
  }

  52.94118% {
    clip: rect(58px, 450px, 106px, 0);
  }

  58.82353% {
    clip: rect(115px, 450px, 22px, 0);
  }

  64.70588% {
    clip: rect(56px, 450px, 96px, 0);
  }

  70.58824% {
    clip: rect(80px, 450px, 113px, 0);
  }

  76.47059% {
    clip: rect(9px, 450px, 93px, 0);
  }

  82.35294% {
    clip: rect(35px, 450px, 34px, 0);
  }

  88.23529% {
    clip: rect(12px, 450px, 63px, 0);
  }

  94.11765% {
    clip: rect(52px, 450px, 81px, 0);
  }

  100% {
    clip: rect(14px, 450px, 109px, 0);
  }
}

@keyframes txt_glitch-2 {
  0% {
    clip: rect(65px, 450px, 83px, 0);
  }

  5.88235% {
    clip: rect(94px, 450px, 32px, 0);
  }

  11.76471% {
    clip: rect(59px, 450px, 31px, 0);
  }

  17.64706% {
    clip: rect(59px, 450px, 10px, 0);
  }

  23.52941% {
    clip: rect(10px, 450px, 46px, 0);
  }

  29.41176% {
    clip: rect(103px, 450px, 113px, 0);
  }

  35.29412% {
    clip: rect(53px, 450px, 107px, 0);
  }

  41.17647% {
    clip: rect(112px, 450px, 72px, 0);
  }

  47.05882% {
    clip: rect(99px, 450px, 93px, 0);
  }

  52.94118% {
    clip: rect(63px, 450px, 100px, 0);
  }

  58.82353% {
    clip: rect(108px, 450px, 4px, 0);
  }

  64.70588% {
    clip: rect(113px, 450px, 41px, 0);
  }

  70.58824% {
    clip: rect(24px, 450px, 74px, 0);
  }

  76.47059% {
    clip: rect(40px, 450px, 92px, 0);
  }

  82.35294% {
    clip: rect(62px, 450px, 29px, 0);
  }

  88.23529% {
    clip: rect(75px, 450px, 17px, 0);
  }

  94.11765% {
    clip: rect(80px, 450px, 30px, 0);
  }

  100% {
    clip: rect(91px, 450px, 108px, 0);
  }
}

.txt_glitch {
  position: relative;
  display: inline-block;
}

.txt_glitch::after,
.txt_glitch::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip: rect(0, 0, 0, 0);
}

.txt_glitch:after {
  left: 0;
  text-shadow: -1px 0 red;
  animation: txt_glitch-1 2s infinite linear alternate-reverse;
}

.txt_glitch:before {
  left: 0;
  text-shadow: 2px 0 var(--color1);
  animation: txt_glitch-2 5s infinite linear alternate-reverse;
}

@media screen and (min-width: 821px) {
  .sp {
    display: none;
  }

  a {
    transition: all 0.3s ease-out;
  }

  a:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }

  .footerArea {
    height: 140vw;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Header

//////////////////////////////////////////////////////////////////////////////// */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(7vw, 30px) min(6vw, 50px);
  z-index: 1000;
  background-color: rgba(232, 232, 225, 0);
  transition: all 0.6s ease-out;
}

header.on {
  background-color: rgba(232, 232, 225, 0.8);
}

header h1 {
  width: min(28vw, 140px);
  line-height: 0;
  position: relative;
}

header h1::before {
  content: "";
  display: block;
  width: 55%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 60%;
  background: url("../images/paint_wh.svg") no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
  z-index: 0;
}

header h1 img {
  position: relative;
  z-index: 1;
}

header #mainMenu .mainMenuInr>ul {
  display: flex;
  gap: min(6vw, 30px);
}

header #mainMenu .mainMenuInr>ul li a {
  text-decoration: none;
  font-weight: 900;
}

@media screen and (min-width: 821px) {

  .menuLogo,
  .menuContact {
    display: none !important;
  }

  #menuButton {
    display: none !important;
  }

  #mainMenu {
    display: block !important;
  }
}

@media screen and (max-width: 820px) and (orientation: landscape) {

  .menuLogo,
  .menuContact {
    display: none !important;
  }

  #menuButton {
    display: none !important;
  }

  #mainMenu {
    display: block !important;
  }
}

@media screen and (max-width: 820px) and (orientation: portrait) {
  #mainMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
  }

  header #mainMenu .mainMenuInr {
    width: 100%;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: min(25vw, 16vh);
  }

  header #mainMenu .mainMenuInr>ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: auto;
  }

  header #mainMenu .mainMenuInr>ul li a {
    color: #fff;
    font-size: 1.4em;
  }

  .menuLogo {
    width: 60vw;
    max-width: 320px;
    margin: 0 auto;
    line-height: 0;
  }

  .menuContact {
    position: relative;
    overflow: hidden;
    background-color: var(--color2);
    padding: min(10vw, 80px) min(6vw, 60px);
  }

  .menuContact::before {
    content: "";
    background: url("../images/paint_wh.svg") no-repeat center center;
    background-size: contain;
    width: 70%;
    aspect-ratio: 1/0.87;
    opacity: 0.2;
    position: absolute;
    top: -20%;
    left: 40%;
    z-index: 0;
  }

  .menuContact .menuContactTtl {
    font-size: 1.8em;
    font-weight: 900;
    text-align: center;
  }

  .menuContact .menuContactTtl img {
    width: 5.4em;
    vertical-align: top;
    margin-right: 0.2em;
  }

  .menuContact .contactBtn {
    margin: min(5vw, 50px) auto 0;
  }

  #menuButton {
    display: block;
    width: min(10vw, 40px);
    height: min(10vw, 40px);
    position: fixed;
    top: min(4vw, 30px);
    right: min(5vw, 30px);
    z-index: 9999;
  }

  #menuButton span {
    display: block;
    background: #000;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.4s;
  }

  #menuButton.active span {
    background: #fff;
  }

  #menuButton span:nth-child(1) {
    transform: translateY(-350%) rotate(0deg);
  }

  #menuButton span:nth-child(2) {
    transform: translateY(250%) rotate(0deg);
  }

  #menuButton span:nth-child(3) {
    transform: translateY(-50%);
  }

  #menuButton.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
  }

  #menuButton.active span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
  }

  #menuButton.active span:nth-child(3) {
    opacity: 0;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Main visual

//////////////////////////////////////////////////////////////////////////////// */

#contact {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  transition: all 0.3s ease-out;
  /* overflow: hidden; */
  padding: 7px 10px 0 0;
  transition: 0.5s ease-out;
}

#contact::before {
  content: "";
  width: 410px;
  height: 60px;
  border-radius: 0 20px 0 0;
  background-color: #ED1C24;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#contact::after {
  content: "";
  width: 425px;
  height: 100%;
  border-radius: 0 20px 0 0;
  background-color: #00FFFF;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -1;
}

#contact .contactMain {
  border-radius: 0 20px 0 0;
  padding: 0;
  background-color: #000;
  width: 420px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  margin-bottom: -1px;
  border-top: #000 solid 2px;
  border-right: #000 solid 2px;
  will-change: transform, animation, position;
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

#contact .contactMain::before {
  content: "";
  display: block;
  position: absolute;
  top: -18%;
  left: 0%;
  background: url(../images/paint_wh.svg) no-repeat center center;
  background-size: contain;
  /* width: 32%; */
  width: 384px;
  aspect-ratio: 1 / 0.9;
  z-index: 2;
  opacity: 0.2;
  transition: all 0.6s ease-out;
  pointer-events: none;
}



#contact .contactMain.on {
  background-color: var(--color2);
}

#contact .contactMain h3 {
  /* padding: min(3vw, 15px) 2em; */
  padding: 15px 80px 15px 2.5rem;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.4em;
  line-height: 1.2;
  transition: all 0.6s ease-out;
  position: relative;
}

#contact .contactMain h3 img {
  width: 5.2em;
  margin-right: 0.3em;
  transition: all 0.6s ease-out;
  will-change: transform, animation, position;
}

#contact .contactMain h3::after {
  content: "";
  width: 70px;
  height: 33px;
  display: block;
  background: url(../images/mail.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(-30deg);

}

#contact.bottom {
  opacity: 0;
  pointer-events: none;
}

.contactBtn {
  position: relative;
  width: fit-content;
  margin: min(7vw, 50px) auto 0;
}

.contactBtn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 8px;
  background-color: #cbc0a8;
  z-index: 0;
  border-radius: 16px;
}

.contactBtn a {
  display: block;
  background-color: #fbf4e4;
  border: #000 solid 2px;
  padding: min(2vw, 10px) 6em min(2.4vw, 12px);
  border-radius: 16px;
  color: #000;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.contactBtn a:hover {
  opacity: 1;
}

.subNavi {
  display: flex;
  justify-content: center;
  margin: min(14vw, 100px) 0 min(6vw, 40px);
}

.subNavi li {
  padding: 0 2em;
  border-right: #fbf4e4 solid 1px;
}

.subNavi li:last-child {
  border-right: none;
}

.subNavi li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
}

.contactMini {
  background-color: #000;
  width: 1200px;
  max-width: 95vw;
  border-radius: 0 20px 0 0;
  padding: min(5vw, 25px) min(6vw, 30px);
  align-items: center;
  display: none;
}

.contactMini .contactMiniLinks {
  border-left: #fff solid 1px;
  margin-left: min(6vw, 30px);
  padding-left: min(6vw, 30px);
}

.contactMini .contactBtn {
  margin: 0 auto;
}

.contactMini .contactBtn a {
  padding: min(1vw, 5px) 4em min(1.8vw, 7px);
  border-radius: 14px;
  font-size: 1.1em;
}

.contactMini .subNavi {
  margin: min(4vw, 20px) 0 0;
}

.contactMini .subNavi li {
  padding: 0 1.2em;
  line-height: 1.4;
}

.contactMini .subNavi li a {
  font-size: 0.8em;
}

@media screen and (min-width: 821px) {
  #contact .contactMain:hover {
    background-color: var(--color2);
  }

  .contactBtn a:hover {
    transform: translateY(4px);
  }
}

@media screen and (max-width: 820px) {
  #contact {
    transition: all 0.3s ease-out;
    transform: translateY(100%);
    opacity: 0;
  }

  #contact._isActive {
    transform: translateY(0%);
    opacity: 1;
  }

  #contact::before {
    width: 330px;
    height: 60px;

  }

  #contact::after {
    width: 350px;
    height: 100%;
  }

  #contact .contactMain {
    transition: all 0.3s ease-out;
    padding: 0;
    /* width: min(68vw, 340px); */
    width: 340px;
  }

  #contact .contactMain::before {
    transition: all 0.3s ease-out;
    left: -3vw;
    width: 31vw;
  }

  #contact .contactMain h3 {
    transition: all 0.3s ease-out;
    /* padding: min(3vw, 15px) 1em; */
    padding: 15px 60px 15px 1.5rem;
    font-size: 1.2em;
  }

  #contact .contactMain h3::after {
    content: "";
    width: 50px;
    height: 23px;
    display: block;
    background: url(../images/mail.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    transform: rotate(-30deg);

  }

  #contact .contactMain h3 img {
    transition: all 0.3s ease-out;
  }

  .contactBtn a {
    padding: min(2vw, 10px) 4em min(2.4vw, 12px);
  }

  .subNavi {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: min(3vw, 15px);
  }

  .subNavi li {
    padding: 0 1em;
  }

  .contactMini {
    flex-direction: column;
    gap: min(6vw, 30px);
  }

  .contactMini p {
    font-size: 0.9em;
    width: 100%;
  }

  .contactMini .contactMiniLinks {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    border-top: #fff solid 1px;
    padding-top: min(6vw, 30px);
    width: 100%;
  }

  .contactMini .subNavi {
    margin: min(6vw, 40px) 0 0;
    flex-wrap: wrap;
    gap: min(3vw, 15px) 0;
    justify-content: flex-start;
  }

  .contactMini .subNavi li {
    padding: 0 0.8em;
    line-height: 1.4;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Main visual

//////////////////////////////////////////////////////////////////////////////// */

#mainVisual {
  width: 100%;
  height: 135vh;
  padding: min(9vw, 100px);
  position: relative;
  overflow: hidden;
  padding-top: 48px;
}

@media screen and (max-width: 1280px) {
  #mainVisual {
    height: 150vh;
  }

}

#mainVisual .titleWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

#mainVisual .titleWrap .ruby {
  font-weight: 700;
  font-size: 1.6vw;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;

  opacity: 0;
  transform: translateY(40px);
  animation: op 1s ease-out 0s forwards;
}

#mainVisual .titleWrap .titleLogo {
  width: 38vw;
  line-height: 0;

  opacity: 0;
  transform: translateY(40px);
  animation: op 1s ease-out 0s forwards;
}

#mainVisual .titleWrap .catch {
  font-weight: 900;
  font-size: 2.84vw;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 0.5em;

  opacity: 0;
  transform: translateY(40px);
  animation: op 1s ease-out 0.4s forwards;
}

#mainVisual .titleWrap .catch span {
  background-color: #000;
  color: #fbf4e4;
  padding: 0 0.14em 0.12em;
  line-height: 1;
  display: inline-block;
  margin-right: 0.1em;
}

#mainVisual .mvImg01 {
  position: absolute;
  top: 9%;
  left: 42%;
  width: 65vw;
  aspect-ratio: 1 / 0.87;
  line-height: 0;
  z-index: 0;

  opacity: 0;
  animation: op2 2s linear 1s forwards;
}

#mainVisual .mvImg01 .paintC {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: plus-lighter;
  z-index: 1;
}

#mainVisual .mvImg01 .paintR {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#mainVisual .mvImg02 {
  position: absolute;
  /* top: 16%;
  left: 50%;
  width: 61vw; */
  aspect-ratio: 1 / 0.87;
  line-height: 0;
  z-index: 1;

  opacity: 0;
  animation: op2 2s linear 1s forwards;
}

#mainVisual .mvImg02 .paintC {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: 1;
}

#mainVisual .mvImg02 .paintR {
  position: absolute;
  top: 0;
  left: 0;
  margin: 1.6% 0 0 0;
  z-index: 0;
}

@keyframes op {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes op2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 821px) {
  #mainVisual .mvImg01 {
    top: 50%;
    transform: translateY(-50%);
  }

  #mainVisual .mvImg02 {
    /* top: 50%;
    transform: translateY(-50%); */
  }
}

@media screen and (max-width: 820px) and (orientation: portrait) {
  #mainVisual {
    height: fit-content;
  }

  #mainVisual .titleWrap {
    margin: min(22vw, 6vh) auto 0;
    height: auto;
    width: fit-content;
  }

  #mainVisual .titleWrap .ruby {
    font-size: min(3.8vw, 2.6vh);
    margin-bottom: 0.5em;
  }

  #mainVisual .titleWrap .titleLogo {
    width: 100%;
    max-width: 52vh;
  }

  #mainVisual .titleWrap .catch {
    font-size: min(5.6vw, 3.8vh);
    margin-top: 0.6em;
  }

  #mainVisual .mvImg01 {
    top: auto;
    bottom: 5%;
    left: 45%;
    width: 114vw;
    max-width: 60vh;
    transform: translateX(-50%);
  }

  #mainVisual .mvImg02 {
    /* top: auto;
    bottom: 4%;
    left: 54%;
    width: 111vw;
    max-width: 60vh;
    transform: translateX(-50%); */
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	About

//////////////////////////////////////////////////////////////////////////////// */
#about {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  padding: min(18vw, 100px) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about.on {
  background-color: rgba(0, 0, 0, 1);
}

#about h3 {
  text-align: center;
  font-weight: 800;
  font-size: min(6.8vw, 36px);
  margin-bottom: 1.6em;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

#about p {
  max-width: 880px;
  margin: 0 auto;
  font-size: min(3.8vw, 16px);
  font-weight: 600;
  line-height: 2.2;
}

#about p+p {
  margin-top: 2em;
}

@media screen and (max-width: 820px) {}

/* ////////////////////////////////////////////////////////////////////////////////

	Reason

//////////////////////////////////////////////////////////////////////////////// */

#reason .contentWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#reason .reasonTxt {
  width: 45%;
}

#reason .reasonTxt p {
  line-height: 2;
  font-feature-settings: "palt";
  font-size: 1.2em;
}

#reason .leaderImg {
  width: 38%;
  line-height: 0;
}

@media screen and (max-width: 820px) {
  #reason .contentWrap {
    flex-direction: column;
    gap: min(5vw, 30px);
  }

  #reason .reasonTxt {
    width: 100%;
  }

  #reason .leaderImg {
    width: 70%;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Project leader

//////////////////////////////////////////////////////////////////////////////// */
#leader {
  position: relative;
}

#leader::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -56%;
  left: -3%;
  background: url(../images/paint_wh.svg) no-repeat center center;
  background-size: contain;
  width: 70%;
  height: 91%;
  z-index: 0;
  opacity: 0.6;
}

#leader .overFlow {
  width: 100%;
  overflow: hidden;
}

#leader .contentWrap::after {
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-top: #000 solid 2px;
  border-bottom: #000 solid 2px;
  pointer-events: none;
}

#leader .leaderPic {
  position: absolute;
  top: 50%;
  left: min(6vw, 60px);
  border: #000 solid 3px;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
  width: 24%;
  aspect-ratio: 1/1.777;
  transform: translateY(-50%);
}

#leader .leaderMain {
  margin-left: 20%;
  padding: 8% 0% 8% 18%;
  border-top: #000 solid 2px;
  border-left: #000 solid 2px;
  border-bottom: #000 solid 2px;
  border-radius: 16px 0 0 16px;
}

#leader .leaderMain .profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: min(10vw, 60px);
}

#leader .leaderMain .profile .thumb {
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: #fff solid 2px;
  overflow: hidden;
}

#leader .leaderMain .profile .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#leader .leaderMain .profile .txt {
  width: calc(100% - 140px);
}

#leader .leaderMain .profile .txt .name {
  font-size: 1.5em;
  font-weight: 800;
  margin-bottom: 0.4em;
}

#leader .leaderMain .profile .txt p {
  font-size: 1.2em;
}

#leader .leaderMain .point {
  background-color: #fff;
  border-radius: 10px;
  padding: min(6vw, 30px);
  position: relative;
}

#leader .leaderMain .point h3 {
  color: var(--color2);
  font-size: 1.6em;
  letter-spacing: 0.06em;
  position: absolute;
  top: 0;
  left: min(6vw, 30px);
  line-height: 1.2;
  transform: translateY(-50%);
}

#leader .leaderMain .point ul {
  list-style: none;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.6;
}

#leader .leaderMain .point ul li {
  padding-left: 1.7em;
  position: relative;
}

#leader .leaderMain .point ul li+li {
  margin-top: 0.3em;
}

#leader .leaderMain .point ul li::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 3px;
  border-radius: 100px;
  background-color: #000;
  position: absolute;
  top: 0.8em;
  left: 0;
}

:root {
  --glitch-width: 100%;
  --glitch-height: 100%;
  --gap-horizontal: 10px;
  --gap-vertical: 5px;
  --color-title: #fff;
  --time-anim: 4s;
  --delay-anim: 2s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: none;
  --blend-mode-4: overlay;
  --blend-mode-5: overlay;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: transparent;
  --blend-color-4: #666666;
  --blend-color-5: #000000;
}

/* Glitch styles */
.glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--glitch-width);
  height: var(--glitch-height);
  overflow: hidden;
}

#mainVisual .glitch {
  overflow: visible;
}

.glitch__img {
  position: absolute;
  top: calc(-1 * var(--gap-vertical));
  left: calc(-1 * var(--gap-horizontal));
  width: calc(100% + var(--gap-horizontal) * 2);
  height: calc(100% + var(--gap-vertical) * 2);
  transform: translate3d(0, 0, 0);
}

#mainVisual .glitch__img {
  background: url(../images/paint.svg) no-repeat center center;
  background-color: var(--blend-color-1);
  background-size: contain;
  background-blend-mode: var(--blend-mode-1);
}

#leader .glitch__img {
  background: url(../images/project_leader.jpg) no-repeat 50% 0;
  background-color: var(--blend-color-1);
  background-size: cover;
  background-blend-mode: var(--blend-mode-1);
}

.glitch__img:nth-child(n + 2) {
  opacity: 0;
}

.imgloaded .glitch__img:nth-child(n + 2) {
  animation-duration: var(--time-anim);
  animation-delay: var(--delay-anim);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.imgloaded .glitch__img:nth-child(2) {
  background-color: var(--blend-color-2);
  background-blend-mode: var(--blend-mode-2);
  animation-name: glitch-anim-1;
}

.imgloaded .glitch__img:nth-child(3) {
  background-color: var(--blend-color-3);
  background-blend-mode: var(--blend-mode-3);
  animation-name: glitch-anim-2;
}

.imgloaded .glitch__img:nth-child(4) {
  background-color: var(--blend-color-4);
  background-blend-mode: var(--blend-mode-4);
  animation-name: glitch-anim-3;
}

.imgloaded .glitch__img:nth-child(5) {
  background-color: var(--blend-color-5);
  background-blend-mode: var(--blend-mode-5);
  animation-name: glitch-anim-flash;
}

/* Animations */

@keyframes glitch-anim-1 {
  0% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }

  2% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }

  4% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }

  6% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }

  8% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }

  10% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }

  12% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }

  14% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }

  16% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }

  18% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }

  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }

  21.9% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
  }

  22%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
  }

  3% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }

  5% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }

  7% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }

  9% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }

  11% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }

  13% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }

  15% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }

  17% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }

  19% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }

  20% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }

  21.9% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
  }

  22%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}

@keyframes glitch-anim-3 {
  0% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }

  1.5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }

  2% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }

  2.5% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }

  3% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }

  5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }

  5.5% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }

  7% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }

  8% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }

  9% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }

  10.5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }

  11% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }

  13% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }

  14% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }

  14.5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }

  15% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }

  16% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }

  18% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }

  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }

  21.9% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
  }

  22%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}

@keyframes glitch-anim-text {
  0% {
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }

  2% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }

  4% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }

  5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }

  6% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }

  7% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }

  8% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }

  9% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }

  9.9% {
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0) scale3d(-1, -1, 1);
  }

  10%,
  100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

/* Flash */
@keyframes glitch-anim-flash {

  0%,
  5% {
    opacity: 0.2;
    transform: translate3d(var(--gap-horizontal), var(--gap-vertical), 0);
  }

  5.5%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 820px) {
  #leader {
    padding-top: 0;
  }

  #leader .overFlow {
    overflow: hidden;
    padding-top: 64vw;
  }

  #leader h2 {
    position: absolute;
    top: -34vw;
    left: min(6vw, 60px);
  }

  #leader .leaderPic {
    top: -60vw;
    left: auto;
    right: min(6vw, 60px);
    border: #000 solid 2px;
    border-radius: 15px;
    width: 39%;
    transform: translateY(0%);
    z-index: 2;
  }

  #leader .leaderMain {
    margin-left: 0;
    padding: 14% 0% 14% 8%;
    border-radius: 10px 0 0 10px;
  }

  #leader .leaderMain .profile .thumb {
    width: 17vw;
  }

  #leader .leaderMain .profile .txt {
    width: calc(100% - 20vw);
  }

  #leader .leaderMain .profile .txt .name {
    font-size: 1.2em;
  }

  #leader .leaderMain .profile .txt p {
    font-size: 1em;
  }

  #leader .leaderMain .point {
    border-radius: 8px;
    padding: min(5vw, 30px);
  }

  #leader .leaderMain .point ul {
    font-size: 1.34em;
  }

  #leader .leaderMain .point ul li {
    padding-left: 1.3em;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Works

//////////////////////////////////////////////////////////////////////////////// */

#works {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.worksTxt {
  width: 35%;
  padding-left: min(6vw, 60px);
  z-index: 2;
}

@media screen and (min-width: 1281px) {
  .worksTxt {
    margin-left: calc((100vw - 1280px) / 2);
    width: calc(35% - ((100vw - 1280px) / 2));
  }
}

.worksDetail {
  margin-top: min(6vw, 30px);
}

.worksTxt .worksTtl {
  display: flex;
  gap: min(4vw, 20px);
  align-items: center;
  margin-bottom: 1.6em;
}

.worksTxt .worksTtl .icon {
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
}

.worksTxt .worksTtl .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worksTxt .worksTtl h3 {
  font-size: 1.6em;
  font-weight: 800;
}

.worksTxt p {
  font-size: 1.1em;
}

.worksTxt .moreBtn {
  margin-top: 3em;
}

.worksTxt .moreBtn a {
  background: #000;
  display: block;
  border-radius: 100px;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.3em 2.5em 0.4em 2.5em;
  position: relative;
  overflow: hidden;
}

.worksTxt .moreBtn a::before {
  content: "";
  display: block;
  width: 90%;
  aspect-ratio: 1/1;
  background: url("../images/paint_wh.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -25%;
  transform: translateY(-50%);
  opacity: 0.2;
}

.follower {
  position: absolute;
  bottom: 40px;
  right: -120px;
  width: 10em;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 50%;
  border: #000 solid 2px;
  transition: all 0.4s cubic-bezier(0.83, 0, 0.17, 1);
  transform: scale(0.2);
  opacity: 0;
}

.on .follower {
  transform: scale(1);
  opacity: 1;
}

.follower>div {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.follower .follow {
  background-color: var(--color1);
  padding-top: 5%;
}

.follower .good {
  background-color: var(--color2);
  padding-bottom: 5%;
}

.follower>div p {
  font-size: 1.6em;
  font-weight: 900;
  line-height: 1.2;
}

.follower>div p span {
  display: block;
  font-size: 0.56em;
}

.slideWrap {
  position: relative;
  overflow: visible;
  width: 60%;
}

.workSlide li {
  margin: 0;
  width: 80vw;
  max-width: 440px;
}

.slick-slide {
  transform: scale(0.8);
  transition: transform 0.3s;
}

.slick-slide.slick-current {
  transform: scale(1);
}

.card {
  perspective: 1000px;
  height: 480px;
  aspect-ratio: 1/1.495;
  line-height: 0;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.3s;
}

.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 10px;
  border: #000 solid 2px;
  line-height: 0;
}

.card-front {
  z-index: 2;
}

.card-back {
  color: white;
  transform: rotateY(180deg);
}

.flip .card-inner {
  transform: rotateY(180deg);
}

.card-front img,
.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#nextSlideBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 350px);
  height: 100%;
}

@media screen and (min-width: 821px) {
  .worksTxt {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .worksDetail {
    flex: auto;
  }
}

@media screen and (max-width: 820px) {
  #works {
    position: relative;
    flex-direction: column-reverse;
    padding-left: min(6vw, 60px);
  }

  #works h2 {
    position: absolute;
    top: min(10vw, 80px);
    left: min(6vw, 60px);
  }

  .slideWrap {
    width: 100%;
    margin-top: min(24vw, 120px);
  }

  .card {
    height: 380px;
  }

  .worksTxt {
    width: 80%;
    padding-left: 0;
  }

  .worksDetail {
    margin-top: min(6vw, 30px);
    position: relative;
  }

  .worksTxt p {
    font-size: 1.1em;
  }

  .worksTxt .moreBtn {
    margin-top: 2.4em;
  }

  .follower {
    bottom: auto;
    top: -170px;
    right: auto;
    left: -4vw;
    width: 9em;
  }

  .follower>div p {
    font-size: 1.4em;
  }

  #nextSlideBtn {
    width: calc(100% - 270px);
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Case

//////////////////////////////////////////////////////////////////////////////// */

.caseWrap {
  width: min(80%, 680px);
}

.caseWrap .caseBody {
  display: none;
}

.caseWrap #case01 {
  display: block;
}

.caseWrap .caseTab {
  display: flex;
}

.caseWrap .caseTab li {
  width: 50%;
  border-top: #000 solid 2px;
  border-left: #000 solid 2px;
  border-right: #000 solid 2px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.caseWrap .caseTab li a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 1.1em;
  font-weight: 800;
  padding: 1em;
  background-color: #f0f0ed;
}

.caseWrap .caseTab li.current a {
  background-color: var(--color1);
}

.caseWrap .caseBodyWrap {
  background-color: #fff;
  padding: min(7vw, 40px) min(6vw, 30px);
  border: #000 solid 2px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.caseWrap .caseBodyWrap ul {
  list-style: none;
  font-size: 1.2em;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

.caseWrap .caseBodyWrap ul li {
  padding-left: 1.5em;
  position: relative;
}

.caseWrap .caseBodyWrap ul li+li {
  margin-top: 0.8em;
}

.caseWrap .caseBodyWrap ul li::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 2px;
  border-radius: 100px;
  background-color: #000;
  position: absolute;
  top: 0.8em;
  left: 0;
}

.caseWrap .caseBodyWrap ul li p {
  position: relative;
  width: fit-content;

  display: inline;
  background: none;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.1em;
}

.caseWrap .caseBodyWrap ul li span {
  position: relative;
  z-index: 1;

  display: inline;
  background: linear-gradient(to right, rgba(252, 189, 191, 1) 0%, rgba(252, 189, 191) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.caseWrap.on .caseBodyWrap ul li span {
  background-size: 100% 100%;
}

@media screen and (min-width: 821px) {
  #case h2 {
    position: absolute;
    top: 0;
    right: min(6vw, 60px);
    margin-bottom: 0;

    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  #case h2 .ttlEn {
    margin-bottom: 0em;
    margin-left: 0.8em;
    border-top: #000 solid 1px;
    border-left: none;
    padding-top: 1em;
    padding-left: 0em;
  }
}

@media screen and (max-width: 820px) {
  .caseWrap {
    width: 100%;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	ADVERTISING COSTS

//////////////////////////////////////////////////////////////////////////////// */
#costs {
  position: relative;
}

#costs::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(234, 234, 234, 0.8);
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

.costsWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: url("../images/illust_costs.svg") no-repeat left bottom;
  background-size: 22%;
}

.costsWrap .costsNav {
  width: 20%;
  border: #000 solid 2px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0f0ed;
  margin-top: min(4vw, 20px);
}

.costsWrap .costsNav li+li {
  border-top: #000 solid 2px;
}

.costsWrap .costsNav li a {
  text-decoration: none;
  display: block;
  padding: 1.1em 1.1em 1.1em 2.4em;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}

.costsWrap .costsNav li.current a {
  background-color: var(--color1);
  font-weight: 900;
}

.costsWrap .costsNav li.current a::before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  background-color: #000;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 1.2em;
  transform: translateY(-50%);
}

.costsBody {
  display: none;
  width: 75%;
}

#costs01 {
  display: block;
}

.tableList li {
  display: flex;
  border-right: #000 solid 2px;
  border-left: #000 solid 2px;
  border-bottom: #000 solid 2px;
}

.tableList li.head {
  border-right: none;
  border-left: none;
}

.tableList li:last-child {
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.tableList li p {
  font-size: 1.2em;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: min(3vw, 15px) min(4vw, 20px);
  transition: all 0.6s cubic-bezier(0.83, 0, 0.17, 1) 0.3s;
}

.tableList li p.th {
  width: 40%;
  background-color: #fff;
  align-items: flex-start;
}

.tableList li p.emp {
  width: 30%;
  background-color: #caffff;
  border-right: #000 solid 2px;
  border-left: #000 solid 2px;
  text-align: center;
  font-size: 1.5em;
}

.tableList li p.td {
  width: 40%;
  background-color: #f0f0ed;
  text-align: center;
}

.tableList.on li p.th {
  width: 35%;
}

.tableList.on li p.emp {
  width: 35%;
}

.tableList.on li p.td {
  width: 30%;
}

.tableList li small {
  font-size: 60%;
}

.tableList li.head p.th {
  background-color: #000;
  border-radius: 16px 0 0 0;
  margin-top: min(4vw, 20px);
}

.tableList li.head p.emp {
  background-color: var(--color1);
  border-radius: 0 0 0 0;
  line-height: 0;
  border-top: #000 solid 2px;
  margin-top: min(4vw, 20px);
}

.tableList.on li.head p.emp {
  border-radius: 16px 16px 0 0;
  margin-top: 0;
}

.tableList li.head p.emp img {
  width: 70%;
}

.tableList li.head p.td {
  background-color: #000;
  border-radius: 0 16px 0 0;
  margin-top: min(4vw, 20px);
  color: #fff;
}

@media screen and (max-width: 820px) {
  .costsWrap {
    flex-direction: column;
    gap: min(6vw, 30px);
    background: none;
  }

  .costsWrap .costsNav {
    width: 72%;
    border-radius: 10px;
    margin-top: 0;
    display: flex;
  }

  .costsWrap .costsNav li {
    width: 50%;
  }

  .costsWrap .costsNav li+li {
    border-top: none;
    border-left: #000 solid 2px;
  }

  .costsWrap .costsNav li a {
    padding: 0.8em 0.8em 0.8em 2em;
    font-size: 1.1em;
  }

  .costsWrap .costsNav li.current a::before {
    width: 0.3em;
    height: 0.3em;
    left: 0.9em;
  }

  .costsBody {
    width: 100%;
  }

  .tableList li:last-child {
    border-radius: 0 0 10px 10px;
  }

  .tableList li p {
    padding: min(2.4vw, 15px) clamp(8px, 1vw, 20px);
    font-size: 1.1em;
    line-height: 1.6;
  }

  .tableList li.head p.th {
    border-radius: 10px 0 0 0;
  }

  .tableList li.head p.emp {
    border-radius: 0 0 0 0;
  }

  .tableList.on li.head p.emp {
    border-radius: 10px 10px 0 0;
  }

  .tableList li.head p.emp img {
    width: 100%;
  }

  .tableList li.head p.td {
    border-radius: 0 10px 0 0;
  }

  .tableList.on li p.emp {
    font-size: 1.2em;
    width: 40%;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Outsourcing

//////////////////////////////////////////////////////////////////////////////// */
#outsourcing {
  position: relative;
  overflow: hidden;
}

#outsourcing::after {
  content: "";
  display: block;
  position: absolute;
  top: 5%;
  right: -14%;
  background: url("../images/paint_wh.svg") no-repeat center center;
  background-size: contain;
  width: 60%;
  height: 71%;
  z-index: 0;
  opacity: 0.6;
}

.outsourcingWrap {
  width: 80%;
}

.outsourcingWrap h3 {
  font-size: 1.6em;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

.outsourcingWrap h3 span {
  color: var(--color2);
}

.outsourcingWrap .tableList {
  margin-bottom: min(8vw, 60px);
}

.outsourcingWrap .strongPoint {
  border: #000 solid 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: min(5vw, 25px);
  margin-top: min(4vw, 20px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: min(3vw, 15px) 0;
}

.outsourcingWrap .strongPoint li {
  width: 48%;
  font-size: 1.2em;
  font-weight: 800;
  position: relative;
  padding-left: 2em;
}

.outsourcingWrap .strongPoint li::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color2) url("../images/ico_check.png") no-repeat center center;
  background-size: 40%;
  color: #fff;
  width: 1.8em;
  height: 1.8em;
  position: absolute;
  top: 0.28em;
  left: 0;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8em;
}

.outsourcingWrap .strongPoint li span {
  color: var(--color2);
}

@media screen and (min-width: 821px) {
  #outsourcing h2 {
    position: absolute;
    top: 0;
    right: min(6vw, 60px);
    margin-bottom: 0;

    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  #outsourcing h2 .ttlEn {
    margin-bottom: 0em;
    margin-left: 0.8em;
    border-top: #000 solid 1px;
    border-left: none;
    padding-top: 1em;
    padding-left: 0em;
  }
}

@media screen and (max-width: 820px) {
  #outsourcing::after {
    height: auto;
    aspect-ratio: 1 / 0.9;
    width: 64%;
    top: 4%;
    right: -12%;
  }

  .outsourcingWrap {
    width: 100%;
  }

  .outsourcingWrap .strongPoint {
    border-radius: 10px;
  }

  .outsourcingWrap .strongPoint li {
    width: 100%;
    padding-left: 2em;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Service

//////////////////////////////////////////////////////////////////////////////// */
#service {
  position: relative;
}

#service::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(234, 234, 234, 0.8);
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}

#service::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 4%;
  left: -1%;
  background: url("../images/paint_wh.svg") no-repeat center center;
  background-size: contain;
  width: 60%;
  height: 71%;
  z-index: 0;
  opacity: 0.6;
}

.serviceList {
  display: flex;
  flex-wrap: wrap;
  gap: min(7vw, 40px) 3.5%;
}

.serviceList li {
  width: 31%;
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: 16px;
  padding: min(5vw, 25px);
}

.serviceList li .img {
  line-height: 0;
  text-align: center;
  height: min(40vw, 180px);
  padding: min(4vw, 20px) 0;
}

.serviceList li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.serviceList li .txt h3 {
  font-size: 1.3em;
  font-weight: 900;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 0.6em;
}

@media screen and (max-width: 820px) {
  .serviceList {
    justify-content: space-between;
    gap: min(4vw, 20px) 0;
  }

  .serviceList li {
    width: 48%;
  }

  .serviceList li .img {
    height: min(24vw, 180px);
    padding: min(3vw, 20px) 0;
    margin-bottom: 0.4em;
  }

  .serviceList li .txt h3 {
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 0.7em;
  }

  .serviceList li .txt p {
    line-height: 1.6;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Flow

//////////////////////////////////////////////////////////////////////////////// */

#flow h2 {
  position: absolute;
  top: 0;
  right: min(6vw, 60px);
  margin-bottom: 0;

  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#flow h2 .ttlEn {
  margin-bottom: 0em;
  margin-left: 0.8em;
  border-top: #000 solid 1px;
  border-left: none;
  padding-top: 1em;
  padding-left: 0em;
}

#flow .contentWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.flowListWrap {
  width: 38%;
  position: relative;
  z-index: 1;
}

.arrow {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  height: 0%;
  transition: all 1s cubic-bezier(0.83, 0, 0.17, 1);
}

.on .arrow {
  height: 79%;
}

.arrow .rect {
  display: block;
  width: 40%;
  height: 100%;
  background-color: #000;
  margin: 0 auto;
}

.arrow .tri {
  display: block;
  width: 6em;
  height: 2.5em;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #000;
}

.flowListWrap .flowList {
  display: flex;
  flex-direction: column;
  gap: min(4vw, 20px);
  position: relative;
  z-index: 1;
}

.flowListWrap .flowList li {
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: 10px;
  text-align: center;
  padding: min(4vw, 20px) min(3vw, 15px);
  font-size: 1.2em;
  font-weight: 700;
}

.flowListWrap .flowList li.contact {
  background-color: #000;
  color: #fff;
  margin-bottom: 1.5em;
}

.flowListWrap .flowList li.start {
  background-color: var(--color1);
  margin-top: 3em;
}

.flowImg {
  line-height: 0;
  width: 55%;
  padding-right: 9%;
}

@media screen and (max-width: 820px) {
  .flowListWrap {
    width: 72%;
  }

  .flowImg {
    width: 52%;
    position: absolute;
    bottom: 20px;
    right: 0;
    padding-right: min(4vw, 30px);
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

  contact

//////////////////////////////////////////////////////////////////////////////// */

#contactPage section {
  position: relative;
  overflow: hidden;
  padding-top: min(24vw, 180px);
}

#contactPage section::after {
  content: "";
  display: block;
  position: absolute;
  top: 5%;
  right: -8%;
  background: url(../images/paint_wh.svg) no-repeat center center;
  background-size: contain;
  width: 68vw;
  height: 58.4vw;
  z-index: 0;
  opacity: 0.4;
}

#contactPage .catch {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(5.8vw, 38px);
  font-weight: 900;
  text-align: center;
  margin-bottom: min(4vw, 24px);
}

#contactPage .catch img {
  width: min(30vw, 188px);
  margin: 0 min(2vw, 16px) min(1vw, 4px) 0;
}

#contactPage .catch+p {
  font-size: min(3.2vw, 15px);
  text-align: center;
}

#contactForm {
  max-width: 960px;
  margin: auto;
  padding: 56px 0;
}

.inputArea {
  background-color: rgba(255, 255, 255, 0.6);
  padding: min(6vw, 48px) min(4vw, 40px);
  border-radius: min(2.5vw, 16px);
}

.inputArea p {
  line-height: 1.8;
}

.inputArea>div {
  display: flex;
  margin-bottom: min(6vw, 40px);
}

.inputArea>div:last-child {
  margin-bottom: 0;
}

.inputArea>div:not(.radioArea) {
  align-items: center;
}

.inputArea .label {
  display: inline-block;
  font-size: min(3.2vw, 15px);
  font-weight: 900;
}

.inputArea .label .required {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  vertical-align: middle;
  background-color: #f4232b;
  color: #fff;
  padding: 0em 1em 0.15em;
  border-radius: 100px;
  margin-left: 0.5em;
}

.inputArea>div>span>input,
.inputArea>div>input,
.inputArea textarea,
.inputArea .selectBox {
  display: inline-block;
  border: 2px solid #000;
  border-radius: min(2vw, 8px);
  font-size: 16px;
  background-color: #fff;
}

.inputArea>div>.label {
  width: 200px;
}

.inputArea>div>span {
  width: calc(100% - 200px);
}

.inputArea>div>span>input {
  padding: 10px 15px;
  width: 100%;
}

.inputArea textarea {
  padding: 10px 15px;
}

/* .inputArea > div > input {
  width: calc(100% - 200px);
  padding: 10px 15px;
} */
.inputArea>div div {
  width: calc(100% - 200px);
}

.inputArea>div>.label+p {
  width: calc(100% - 200px);
}

.inputArea .radioWrap .wpcf7-form-control-wrap .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: min(3vw, 8px) min(4vw, 40px);
}

.inputArea input[type="radio"] {
  display: none;
}

.inputArea .wpcf7-list-item-label {
  display: inline-block;
  font-size: min(3.2vw, 15px);
  font-weight: 900;
  padding-left: 2em;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.inputArea .wpcf7-list-item-label:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.3em;
  height: 1.3em;
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: 100%;
}

.inputArea input[type="radio"]:checked+.wpcf7-list-item-label::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0.65em;
  transform: translate(-50%, -50%);
  width: 0.77em;
  height: 0.77em;
  border-radius: 100%;
  background-color: #f4232b;
}

.inputArea .wpcf7-list-item {
  margin-left: 0;
}

/* .inputArea input[type="radio"] {
  display: none;
}
.inputArea .label.radio {
  padding-left: 2em;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.inputArea .label.radio:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.3em;
  height: 1.3em;
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: 100%;
}
.inputArea input[type="radio"]:checked + label::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0.65em;
  transform: translate(-50%, -50%);
  width: 0.77em;
  height: 0.77em;
  border-radius: 100%;
  background-color: #f4232b;
} */
.inputArea textarea {
  width: 100%;
  height: 200px;
  margin-top: min(1vw, 10px);
}

.check .inputArea .radioWrap {
  gap: 0;
}

.inputArea .radioWrap p+p {
  margin-top: min(2vw, 16px);
  border-top: #d2d2d2 solid 1px;
  padding-top: min(2vw, 16px);
}

.inputArea .selectBox {
  position: relative;
  width: 300px;
}

.inputArea .selectBox::after {
  position: absolute;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  height: 10px;
  width: 10px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg) translateY(-50%);
}

.inputArea select {
  width: 100%;
  padding: 13px 15px;
}

#contactForm .submitBtn input[type="checkbox"] {
  margin-right: 0.5em;
}

#contactForm .submitBtn {
  margin-top: min(8vw, 64px);
}

#contactForm .submitBtn input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1em 0;
  border-radius: min(2vw, 20px);
  border: 2px solid #000;
  background-color: #fbf4e4;
  text-align: center;
  font-size: min(3.8vw, 18px);
  font-weight: 900;
  box-shadow: #cbc0a8 0px 6px 0px 0px;
  letter-spacing: 0.1em;
}

#contactForm .submitBtn p {
  text-align: center;
  font-size: min(3.4vw, 16px);
  margin-bottom: min(4vw, 32px);
}

#contactForm .submitBtn p a {
  color: #f4232b;
}

#contactForm h3 {
  text-align: center;
  font-size: min(5vw, 24px);
  font-weight: 900;
  margin-bottom: min(4vw, 40px);
}

#contactForm p {
  font-size: min(3.4vw, 16px);
  line-height: 2.4;
  padding: 0 min(4vw, 40px);
}

#contactForm .btnWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(4vw, 40px);
  margin-top: min(8vw, 64px);
}

#contactForm .btnWrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
  width: 100%;
  padding: 1em 0;
  border-radius: min(2vw, 20px);
  border: 2px solid #000;
  background-color: #fbf4e4;
  text-align: center;
  font-size: min(3.8vw, 18px);
  font-weight: 900;
  box-shadow: #cbc0a8 0px 6px 0px 0px;
  text-decoration: none;
  white-space: nowrap;
}

#contactForm .btnWrap a:nth-child(1) img:first-child {
  width: min(26vw, 120px);
  margin: 0 0.8em 2px 0;
}

#contactForm .btnWrap a:nth-child(1) img:last-child {
  width: 1em;
  margin-left: 0.5em;
}

#contactForm .privacy .wpcf7-list-item-label {
  font-size: 0;
  position: relative;
}

#contactForm .privacy .wpcf7-not-valid-tip {
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
}

@media screen and (max-width: 820px) {
  #contactForm {
    padding: 30px 0;
  }

  .inputArea>div {
    flex-direction: column;
  }

  .inputArea>div>span {
    width: 100%;
  }

  .inputArea>div>.label,
  .inputArea>div>input,
  .inputArea>div>div,
  .inputArea>div>.label+p {
    width: 100%;
  }

  .inputArea>div>.label {
    margin-bottom: min(2vw, 16px);
  }
}

#topFooter {
  color: #fff;
  transition: all 0.6s ease-out;
  overflow: hidden;
  position: relative;
}

#topFooter::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/paint_wh.svg) no-repeat center center;
  background-size: contain;
  aspect-ratio: 1 / 0.9;
  z-index: 2;
  opacity: 0.2;
  transition: all 0.6s ease-out;
  pointer-events: none;
  top: 0%;
  left: -5%;
  width: 51%;
}

#topFooter .topFooterInr {
  background-color: #000;
  transition: all 0.6s ease-out;
  margin-bottom: -1px;
  border-top: #000 solid 2px;
  border-right: #000 solid 2px;
  will-change: transform, animation, position;

  /* width: 100vw; */
  border-radius: 0;
  cursor: default;
  padding: min(12vw, 100px) 0 min(8vw, 60px);
  overflow: hidden;
}

#topFooter .topFooterInr h3 {
  padding: min(3vw, 15px) 2em min(8vw, 60px);
  width: fit-content;
  margin: 0 auto;
  line-height: 1.2;
  transition: all 0.6s ease-out;
  font-size: 2.6em;
  pointer-events: none;
}

#topFooter .topFooterInr h3 img {
  width: 5.2em;
  margin-right: 0.3em;
  transition: all 0.6s ease-out;
  will-change: transform, animation, position;
}

#topFooter .toggleBox {
  padding: 0 min(6vw, 60px);
  text-align: center;
  overflow: hidden;
}

#topFooter .toggleBox>p {
  font-size: 1.2em;
  line-height: 2;
  letter-spacing: 0.08em;
}

#topFooter .toggleBox .copyright {
  font-size: 0.74em;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 820px) {
  #topFooter::before {
    left: -5%;
    width: 71%;
  }

  #topFooter .toggleBox>p {
    font-size: 1.1em;
    letter-spacing: 0.04em;
  }

  #topFooter .topFooterInr h3 {
    transition: all 0.3s ease-out;
    padding: min(3vw, 15px) 1em min(10vw, 80px);
    font-size: 1.8em;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

  Footer

//////////////////////////////////////////////////////////////////////////////// */

footer {
  background-color: #000;
  color: #fff;
  padding: min(8vw, 80px) min(6vw, 64px) min(8vw, 64px);
}

footer .footerList {
  display: flex;
  justify-content: center;
  margin-bottom: min(10vw, 64px);
}

footer .footerList li {
  padding: 0 1em;
}

footer .footerList li+li {
  border-left: #fff dotted 1px;
}

footer .footerList a {
  color: #fff;
  text-decoration: none;
}

footer .copy {
  text-align: center;
  font-size: min(2.6vw, 10px);
}

@media screen and (max-width: 820px) {
  footer .footerList {
    flex-wrap: wrap;
    gap: 1em 2em;
    justify-content: flex-start;
  }

  footer .footerList li {
    padding: 0;
  }

  footer .footerList li+li {
    border-left: none;
  }
}