@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
:root {
  --primary: #000000;
  --bg: #F7F3EB;
  --text: #000000;
  --white: #ffffff;
  --value1: #3D52C2;
  --value2: #EB5228;
  --value3: #FFC300;
  --value4: #58AB7B;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Futura", "Jost", sans-serif;
  --content-width: 1300px;
  --content-width-sp: 315px;
  --space-section: 120px;
  --space-section-sp: 50px;
  --header-height: 92px;
  --header-height-sp: 60px;
}
/* リセットcss */
* { margin: 0; padding: 0; box-sizing: border-box;}
html { scroll-padding-top: var(--header-height);}
body {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}
ul, ol { list-style-type: none;}
h1, h2, h3, h4 { font-size: inherit; font-weight: var(--bold); word-break: auto-phrase;}
a { color: var(--text); text-decoration: none; transition: all 0.5s ease;}
p > a { text-decoration: underline;}
img { width: 100%; height: auto; vertical-align: bottom;}
iframe { width: 100%; height: 100%; vertical-align: bottom;}
mark, em, small { color: inherit; font-style: normal; font-size: inherit; font-weight: inherit; background-color: transparent;}
strong { color: inherit; font-style: normal; font-size: inherit; font-weight: var(--bold); background-color: transparent;}

/* component */
.l-inner {
  width: 90%;
  max-width: var(--content-width);
  margin: auto;
}
.c-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}
.c-bg-wrap {
  background-color: #F7F3EB;
  border-radius: 60px;
  /* overflow: hidden; */
  position: relative;
  z-index: 2;
}
.c-section-title {
  width: max-content;
  min-width: 196px;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.325;
  text-align: center;
  border-bottom: 4px solid var(--text);
  padding-bottom: 4px;
  margin: 0 auto 64px;
}
.c-btn {
  display: block;
  max-width: max-content;
  background-color: var(--text);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  border-radius: 16px;
  padding: 0 32px 4px;
  margin: 24px auto 0;
}
.js-scroll-up {
  transition: 0.6s ease-in-out;
  transform: translateY(80px);
  opacity: 0;
}
.js-scroll-up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/* component　end */

/* header */
header { height: var(--header-height);}
.header {
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5% 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.header__logo {
  width: 144px;
}
.header__nav,
.header__nav-list {
  display: flex;
  column-gap: 50px;
}
.header__nav-item a {
  font-family: var(--font-en);
  color: #B8B5AE;
  font-size: 14px;
  font-weight: 700;
}
.header__nav-item a:hover {
  color: #212121;
}
.header__nav-item.cta a {
  color: #212121;
  font-size: 12px;
  border: 1px solid #212121;
  border-radius: 20px;
  padding: 12px 13px;
}
.header__nav-item.cta a:hover {
  color: var(--white);
  background-color: #212121;
}
/* header end */

/* fv */
.fv-wrap { min-height: calc(100vh - var(--header-height) - 16px); position: relative;}
.fv-wrap::before {
  content: "";
  width: 100%;
  height: calc(100% + var(--header-height) + 60px);
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
  left: 0;
  bottom: -60px;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.fv {
  aspect-ratio: 1375 / 636;
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #EFF2FF;
  border-radius: 60px;
  padding-left: 5%;
  position: absolute;
  top: 8px;
  left: 5%;
  z-index: 1;
  opacity: 0;
  animation: fv-feed .6s .2s forwards;
}
.is-fv.fv-wrap::before { opacity: 1;}
.is-fv .fv {
  position: fixed;
  top: 0;
  z-index: -1;
}
.fv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/fv-bg.png) no-repeat center right;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fv::after {
  content: "";
  display: block;
  width: 47%;
  aspect-ratio: 677/ 541;
  background: url(../img/fv.png) no-repeat bottom right;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.fv__text { opacity: 0; animation: fv-feed 1s .8s forwards;}
.fv__text-head {
  font-family: var(--font-en);
  font-size: 5vw;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}
.fv__text-head span {
  display: block;
  font-size: 1.66vw;
  margin-bottom: 16px;
}
.fv__text-text {
  max-width: 39.2em;
  font-size: 1.04vw;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@keyframes fv-feed {
  0% { opacity: 0;}
  100% { opacity: 1;}
}
.fv__speacer { height: 16px;}
/* fv end */

/* mission */
.mission__inner {
  max-width: 1060px;
  margin: auto;
}
.mission__box .mission__inner {
  display: flex;
  align-items: center;
  column-gap: 9.8%;
  margin-bottom: var(--space-section);
}
.mission__img {
  max-width: 440px;
  margin: auto;
}
.mission__text {
  width: calc(95% - 440px);
  max-width: 515px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  margin: auto;
}
.mission__text p + p {
  margin-top: 2em;
}
.mission__message {
  position: relative;
}
.mission__message::after {
  content: "";
  display: block;
  width: 40%;
  max-width: 720px;
  aspect-ratio: 600 / 593;
  background: url(../img/message.png) no-repeat bottom right;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.mission__message-head {
  font-size: 24px;
  text-indent: -.5em;
  margin-bottom: 24px;
}
.mission__message-text {
  font-weight: 400;
}
.mission__message-text p + p {
  margin-top: 1.8em;
}
.mission__message-sign {
  width: 337px;
  margin: 64px 0;
}
.mission__message-name {
  font-size: 15px;
  font-weight: 400;
  margin-top: 64px;
}
/* mittion end */

/* values */
.values__box {
  max-width: 1200px;
  display: flex;
  column-gap: 16px;
  margin: 0 auto var(--space-section);
  position: relative;
}
.values__item {
  width: calc((100% - 48px) / 4);
  display: flex;
  flex-direction: column;
}
.values__item:nth-child(odd) {
  flex-direction: column-reverse;
}
.values__item-head {
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 10px;
  padding: 0 7%;
  position: relative;
  opacity: 0;
}
.values__item:nth-child(odd) .values__item-head { margin-top: 12px;}
.values__item:nth-child(even) .values__item-head { margin-bottom: 12px;}
.values__item:nth-child(1) .values__item-head { background-color: var(--value1);}
.values__item:nth-child(2) .values__item-head { background-color: var(--value2);}
.values__item:nth-child(3) .values__item-head { background-color: var(--value3);}
.values__item:nth-child(4) .values__item-head { background-color: var(--value4);}
.values__item-head-title {
  font-size: 30px;
  letter-spacing: 0.16em;
  word-break: keep-all;
}
.values__item-head-title em {
  font-size: 38px;
  letter-spacing: 0.16em;
}
.values__item-head-title em.narrow {
  margin: 0 -.5em;
}
.values__item-img {position: relative; opacity: 0;}
.values__item-img img {
  width: 100%;
  height: 414px;
  object-fit: cover;
  border-radius: 10px;
}

.values__nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: -40px;
  top: 0;
}
.values__nav-item {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 4px;
}

.values__card {
  position: relative;
  padding-top: 60px;
}

.values__card-item {
  position: sticky;
  top: 60px;
  min-height: 600px;
  width: 100%;
  background-color: var(--white);
  border-radius: 60px;
  box-shadow: 0px 0px 16px -4px rgb(0 0 0 / 0.1);
  padding: 48px 48px 80px;
  opacity: 1;
  transform-origin: top center;
  transition: all .5s;
}
.values__card-item + .values__card-item { margin-top: 200px;}
.values__card-item.is-past { opacity: 0.4;}
.values01 { z-index: 1; }
.values02 { z-index: 2; }
.values03 { z-index: 3; }
.values04 { z-index: 4; }
.values__card-item.is-past { transform: scale(.95) translateY(-20px);}
.values__card-item.is-past2 { transform: scale(.9) translateY(-40px);}
.values__card-item.is-past3 { transform: scale(.85) translateY(-30px);}
/* .values__card {
  position: relative;
  padding-top: 60px;
}
.values__card-item {
  position: sticky;
  top: 0;
  height: 600px;
  transform-origin: top center;
  will-change: transform, opacity;
  transition: transform 0.15s linear, opacity 0.15s linear;
  width: 100%;
  background-color: var(--white);
  border-radius: 60px;
  padding: 48px 48px 80px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
  transform-origin: top center;
  transition: all .5s;
} */
/* .values__card .splide__track { overflow: visible;}
.values__card .splide__list { width: 90%; max-width: 1300px; margin: auto !important;}
.values__card-item.values01 { z-index: 4; top: -20px; transform: scale(.95);}
.values__card-item.values02 { z-index: 3; top: -20px; transform: scale(.95);}
.values__card-item.values03 { z-index: 2; top: -40px; transform: scale(.9);}
.values__card-item.values04 { z-index: 1; top: -40px; transform: scale(.85);}
.values__card-item.values04.is-next { z-index: 2; top: -40px; transform: scale(.9);}
.values__card-item.values01.is-active,
.values__card-item.values02.is-active,
.values__card-item.values03.is-active,
.values__card-item.values04.is-active { z-index: 5; opacity: 1; top: 0; transform: scale(1); position: relative;} */
.values__card-item::after {
  content: "";
  display: block;
  width: 50%;
  aspect-ratio: 659 / 532;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 40px;
  right: 4%;
  z-index: -1;
}
.values__card-item.values01::after { background-image: url(../img/value01-slide.png);}
.values__card-item.values02::after { background-image: url(../img/value02-slide.png);}
.values__card-item.values03::after { background-image: url(../img/value03-slide.png);}
.values__card-item.values04::after { background-image: url(../img/value04-slide.png);}
.values__card-head {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 24px;
}
.values__card-head em {
  font-family: var(--font-en);
  font-size: 22px;
  margin-right: 24px;
}
.values__card-title img {
  width: auto;
  height: 75px;
  margin-bottom: 32px;
}
.values__card-text {
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.values__card-text p + p {
  margin-top: 1.5em;
}
/* .values__card .splide__pagination--ttb {
  padding: 0;
  right: auto;
  left: 4%;
  bottom: auto;
  top: 60px;
}
.values__card .splide__pagination__page { background-color: #d9d9d9; opacity: 1;}
.values__card .splide__pagination li:nth-child(1) .splide__pagination__page.is-active { background-color: var(--value1);}
.values__card .splide__pagination li:nth-child(2) .splide__pagination__page.is-active { background-color: var(--value2);}
.values__card .splide__pagination li:nth-child(3) .splide__pagination__page.is-active { background-color: var(--value3);}
.values__card .splide__pagination li:nth-child(4) .splide__pagination__page.is-active { background-color: var(--value4);}
.values .splide:not(.is-overflow) .splide__pagination { display: flex;} */
/* values end */

/* do */
.do__list {
  display: flex;
  max-width: max-content;
  margin: 64px auto;
}
.do__list-item {
  font-size: 22px;
  line-height: 1;
  letter-spacing: .06em;
  border-right: 1px solid var(--text);
  padding: 0 1em;
  cursor: pointer;
}
.do__list-item span {
  display: block;
  position: relative;
}
.do__list-item span::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  right: 0;
  bottom: -15px;
}
.do__list-item--kokorozashi { margin-left: 0;}
.do__list-item--kokorozashi.active span::after { width: calc(100% - .5em); background-color: var(--value1);}
.do__list-item--honki.active span::after { background-color: var(--value2);}
.do__list-item--tomoni.active span::after { background-color: var(--value3);}
.do__list-item--mirai.active span::after { background-color: var(--value4);}
.do__list-item:last-of-type {
  border: none;
}
.do__card {
  position: relative;
}
.do__wrap {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.do__wrap.active  { visibility: visible;}
.do__wrap--kokorozashi { position: relative;}
.do__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  min-width: 0;
}
.do__item {
  position: relative;
  z-index: 1;
}
.do__item-do {
  background-color: var(--white);
  border-radius: 60px;
  padding: 48px 5% 56px;
  position: relative;
  transition: transform .3s;
}
.do__item-not {
  transform: rotateY(90deg);
  transition: transform .3s;
}
@media (hover: hover) and (pointer: fine) {
  .do__item:hover .do__item-do {
    transform: rotateY(90deg);
  }
  .do__item:hover .do__item-not{
    transform: rotateY(0);
    transition-delay: 0.2s;
  }
}
.do__item.is-open .do__item-do {
  transform: rotateY(90deg);
}
.do__item.is-open .do__item-not{
  transform: rotateY(0);
  transition-delay: 0.2s;
}

.do__item-head {
  width: 65px;
  margin: auto;
}
.do__item-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4em;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
.do__wrap--kokorozashi .do__item-text { color: var(--value1);}
.do__wrap--honki .do__item-text { color: var(--value2);}
.do__wrap--tomoni .do__item-text { color: var(--value3);}
.do__wrap--mirai .do__item-text { color: var(--value4);}
.do__item-not {
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  border-radius: 60px;
  padding: 48px 5% 56px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.do__item-not-head {
  font-family: var(--font-en);
  font-size: 30px;
  font-style: italic;
  line-height: 49px;
  text-align: center;
}
.do__item-not-text {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4em;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
.do__card.on .do__wrap--kokorozashi .do__item-do.do__anime { animation: do-card .8s;}
.do__card.on .do__wrap--kokorozashi .do__item-not.do__anime { animation: do-not-card .8s;}
@keyframes do-card {
  0% { transform: rotateY(0);}
  10% { transform: rotateY(180deg);opacity: 0;}
  100% { transform: rotateY(720deg);opacity: 1;}
}
@keyframes do-not-card {
  0% { transform: rotateY(90deg);}
  10% { transform: rotateY(0);}
  98% { transform: rotateY(540deg);}
}
/* do end */

/* fellows */
.fellows__box {
  max-width: 1150px;
  height: 600px;
  display: flex;
  justify-content: center;
  margin: auto;
}
.fellows__item {
  width: calc(25% + 1px);
  max-width: 232px;
  border: 1px solid #212121;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: width .5s ease;
}
.fellows__item:hover, .fellows__item.on {
  width: 45%;
  max-width: 453px;
}
.fellows__item:not(:first-of-type) {
  margin-left: -1px;
}
.fellows__item:nth-child(1) { background-color: #E0E4F8; border-radius: 10px 0 0 10px;}
.fellows__item:nth-child(2) { background-color: #FFD9CF;}
.fellows__item:nth-child(3) { background-color: #FFEDB2;}
.fellows__item:nth-child(4) { background-color: #BFF6D7; border-radius: 0 10px 10px 0;}
.fellows__item-img {
  padding: 20px 0 15px;
  transition: transform .5s ease;
}
.fellows__item:nth-child(1) .fellows__item-img { transform: scale(3.2) translateX(12%) translateY(14%);} 
.fellows__item:nth-child(2) .fellows__item-img { transform: scale(3.8) translateX(14.5%) translateY(30%);}
.fellows__item:nth-child(3) .fellows__item-img { transform: scale(3.4) translateX(-15%) translateY(28%);}
.fellows__item:nth-child(4) .fellows__item-img { transform: scale(3.3) translateX(15%) translateY(27%);}
.fellows__item:hover .fellows__item-img,
.fellows__item.on .fellows__item-img { height: 328px; text-align: center;}
.fellows__item:hover .fellows__item-img img,
.fellows__item.on .fellows__item-img img { height: 100%; object-fit: contain;}
.fellows__item:hover:nth-child(1) .fellows__item-img,
.fellows__item.on .fellows__item-img { transform: scale(1) translateX(0) translateY(0);} 
.fellows__item:hover:nth-child(2) .fellows__item-img { transform: scale(1) translateX(0) translateY(0);}
.fellows__item:hover:nth-child(3) .fellows__item-img { transform: scale(1) translateX(0) translateY(0);}
.fellows__item:hover:nth-child(4) .fellows__item-img { transform: scale(1) translateX(0) translateY(0);}
.fellows__item-content {
  position: absolute;
  width: 100%;
  height: 270px;
  left: 0;
  bottom: -100%;
  background-color: var(--white);
  transition: bottom .5s ease;
}
.fellows__item:hover .fellows__item-content,
.fellows__item.on .fellows__item-content { bottom: 0;}
.fellows__item-head {
  color: var(--white);
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.09em;
}
.fellows__item:nth-child(1) .fellows__item-head { background-color: var(--value1);}
.fellows__item:nth-child(2) .fellows__item-head { background-color: var(--value2);}
.fellows__item:nth-child(3) .fellows__item-head { background-color: var(--value3);}
.fellows__item:nth-child(4) .fellows__item-head { background-color: var(--value4);}
.fellows__item-head span {
  font-size: 18px;
}
.fellows__item-text {
  font-weight: 400;
  padding: 32px 8%;
}
/* fellows end */

/* culture */
.culture__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2%;
  row-gap: 24px;
  min-width: 0;
}
.culture__item {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 10px;
  padding: 24px;
}
.culture__item-img {
  margin-bottom: 32px;
}
.culture__item-title {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}
.culture__item-link {
  text-align: right;
}
.culture__item-link a {
  display: inline-block;
  background-color: var(--bg);
  font-size: 12px;
  line-height: 2;
  border-radius: 20px;
  padding: 8px 40px 8px 18px;
  position: relative;
}
.culture__item-link a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/culture-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}
/* culture end */

/* join */
.join { background-color: var(--white); overflow: hidden;}
.join__title {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.join__inner {
  max-width: 980px;
}
.join__box {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.join__item a {
  display: block;
  background-color: var(--bg);
  border-radius: 10px;
  padding: 32px 4% 24px;
  position: relative;
}
.join__item a::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/join-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 24px;
  right: 4%;
}
.join .list-item-category .category {
  background-color: var(--text);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  border-radius: 6px;
  padding: 2px 5px;
  margin-bottom: 8px;
}
.join__item-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.join__item p {
  margin-right: calc(4% + 40px);
}
/* join end */

/* footer */
.footer {
  background-color: var(--bg);
  border-radius: 60px 60px 0 0;
  padding: 72px 0 40px;
  position: relative;
  z-index: 1;
}
.footer__inner {
  width: 90%;
  display: flex;
  justify-content: space-between;
  column-gap: min(12%, 100px);
  align-items: flex-start;
  max-width: 980px;
  margin: auto;
}
.footer__logo {
  width: 197px;
  margin-bottom: 24px;
}
.footer__address {
  font-size: 12px;
  margin-bottom: 24px;
}
.footer__link {
  display: flex;
  column-gap: 30px;
}
.footer__link img {
  width: auto;
  height: 24px;
}
.footer__nav-list {
  display: flex;
  width: 100%;
  column-gap: 48px;
  row-gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}
.blank .footer__nav-item a {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.footer__nav-list.blank { margin-top: 30px;}
.footer__nav-list.blank .footer__nav-item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/icon-blank.png) no-repeat;
  background-size: contain;
}
.footer-copy {
  background-color: #212121;
  color: var(--white);
  font-size: 12px;
  text-align: center;
  padding: 16px 5%;
}
/* footer end */

/* bg-drow */
.line-draw {
  height: auto;
  overflow: visible;
}
.line-draw__path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-draw.is-animated .line-draw__path {
  animation: drawLine 2s ease forwards;
}

.draw { position: absolute; z-index: -1; overflow: hidden;}
.draw--red { top: 0; right: 0;}
.draw--red .line-draw { width: 446px;}
.draw--blue { top: 320px; left: 0;}
.draw--blue .line-draw { width: 154px;}
.bg-yellow { position: relative; z-index: 1;}
.draw--yellow { top: 0; left: 0; width: 100%;}
.draw--yellow .line-draw { width: 100%;}
.is-fixed .draw--yellow { position: fixed;}
.is-bottom .draw--yellow { top: auto; bottom: 0; border-radius: 0 0 0 60px; overflow: hidden;}
.draw--join1 { top: 189px; left: 0;}
.draw--join1 .line-draw { width: 295px;}
.draw--join2 { top: 330px; right: -71px;}
.draw--join2 .line-draw { width: 380px;}
.draw--join3 { bottom: -78px; left: 0;}
.draw--join3 .line-draw { width: 729px;}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
/* bg-drow end */

@media (max-width: 1279px) {
  .values__card-item::after {
    width: 40%;
    right: 2%;
    bottom: 80px;
  }
  .values__card-item:nth-of-type(3):after {
    right: 4%;
  }
}
@media (min-width: 1024px) {
  .c-view-sp { display: none;}
  .values__nav.on .values__nav-item:nth-child(1) { animation: values_nav1 .1s forwards;}
  .values__nav.on .values__nav-item:nth-child(2) { animation: values_nav2 .1s .8s forwards;}
  .values__nav.on .values__nav-item:nth-child(3) { animation: values_nav3 .1s 1.3s forwards;}
  .values__nav.on .values__nav-item:nth-child(4) { animation: values_nav4 .1s 1.8s forwards;}
  @keyframes values_nav1 {
    0% { background-color: #d9d9d9;}
    100% { background-color: var(--value1);}
  }
  @keyframes values_nav2 {
    0% { background-color: #d9d9d9;}
    100% {  background-color: var(--value2);}
  }
  @keyframes values_nav3 {
    0% { background-color: #d9d9d9;}
    100% { background-color: var(--value3);}
  }
  @keyframes values_nav4 {
    0% { background-color: #d9d9d9;}
    100% { background-color: var(--value4);}
  }
  .values__item:nth-child(1).on .values__item-head { animation: values_bottom .5s forwards;}
  .values__item:nth-child(2).on .values__item-head { animation: values_top .5s .5s forwards;}
  .values__item:nth-child(3).on .values__item-head { animation: values_bottom .5s 1s forwards;}
  .values__item:nth-child(4).on .values__item-head { animation: values_top .5s 1.5s forwards;}
  .values__item:nth-child(1).on .values__item-img { animation: values_top .5s forwards;}
  .values__item:nth-child(2).on .values__item-img { animation: values_bottom .5s .5s forwards;}
  .values__item:nth-child(3).on .values__item-img { animation: values_top .5s 1s forwards;}
  .values__item:nth-child(4).on .values__item-img { animation: values_bottom .5s 1.5s forwards;}
  @keyframes values_top {
    0% { top: -120px; opacity: 0;}
    100% { top: 0; opacity: 1;}
  }
  @keyframes values_bottom {
    0% { bottom: -120px; opacity: 0;}
    100% { bottom: 0; opacity: 1;}
  }
}
@media (max-width: 1023px) {
  .c-view-pc { display: none;}
  .c-section { padding: var(--space-section-sp) 0;}
  .c-section-title { font-size: 26px; margin-bottom: 48px;}
  .l-inner { max-width: var(--content-width-sp);}
  header { height: var(--header-height-sp);}
  .header {
    height: var(--header-height-sp);
    padding: 0 0 0 5%;
    position: fixed;
  }
  .header__logo { width: 106px;}
  .header__nav-wrap { display: flex; align-items: center; column-gap: 20px;}
  .header__nav-list {
    width: 100%;
    height: calc(100vh - var(--header-height-sp));
    flex-direction: column;
    row-gap: 24px;
    background-color: var(--white);
    position: absolute;
    top: var(--header-height-sp);
    left: 0;
    z-index: 9;
    text-align: center;
    padding: 48px 5%;
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s;
  }
  .header__nav-list.active {
    visibility: visible;
    opacity: 1;
    transition: opacity .3s;
  }
  .sp-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--header-height-sp);
    height: var(--header-height-sp);
    background-color: #B8B5AE;
    border-radius: 50% 0 0 50%;
    padding-left: 6px;
  }
  .sp-menu__bar {
    width: 36px;
    height: 2px;
    background-color: var(--white);
    border-radius: 1px;
  }
  .sp-menu__bar::before,
  .sp-menu__bar::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    position: relative;
  }
  .sp-menu__bar::before { top: -12px; transition: all .3s;}
  .sp-menu__bar::after { top: 10px; transition: all .3s;}
  body.active { height: 100vh; overflow: hidden;}
  .active .sp-menu__bar { height: 0;}
  .active .sp-menu__bar::before { transform: rotate(45deg); top: 0;}
  .active .sp-menu__bar::after { transform: rotate(-45deg); top: auto; bottom: 2px; }
  .fv-wrap { height: calc(100vh - var(--header-height-sp) - 16px); aspect-ratio: auto;}
  .fv {
    width: 94%;
    height: 100%;
    max-width: 350px;
    align-items: center;
    border-radius: 60px;
    padding: 64px 20px 0;
    left: max(3%, calc((100vw - 350px) / 2));
  }
  .fv::before {
    background-image: url(../img/fv-bg-sp.png);
  }
  .fv::after {
    width: 100%;
    aspect-ratio: 350 / 279;
    background-image: url(../img/fv-sp.png);
  }
  .fv__text-head { font-size: min(9.6vw, 36px);}
  .fv__text-head span { font-size: 12px;}
  .fv__text-text {
    max-width: 276px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-indent: -.5em;
    margin: 0 auto 280px;
  }
  .mission__box .mission__inner { flex-direction: column; row-gap: 32px; margin-bottom: 80px;}
  .mission__text { width: 100%; font-size: 14px; margin-left: auto; margin-right: auto;}
  .mission__message-head { font-size: 20px; margin-left: auto; margin-right: auto;}
  .mission__message-text { font-size: 14px; margin-left: auto; margin-right: auto;}
  .mission__message-sign { max-width: 180px; margin: 32px 0 16px auto;}
  .mission__message-name { font-size: 12px; text-align: right; margin: 32px 0;}
  .mission__message::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 348 / 363;
    background: url(../img/message.png) no-repeat top right;
    background-size: contain;
    margin-left: auto;
    position: static;
  }
  .values__nav { display: none;}
  .values__box { flex-wrap: wrap; column-gap: 12px; row-gap: 12px; margin-bottom: var(--space-section-sp);}
  .values__item { width: calc((100% - 12px) / 2);}
  .values__item-head { height: 96px;}
  .values__item-img img { height: auto; aspect-ratio: 149 / 230;}
  .values__item:nth-child(1).on .values__item-head { animation: values_bottom_sp .5s forwards;}
  .values__item:nth-child(2).on .values__item-head { animation: values_top_sp .5s forwards;}
  .values__item:nth-child(3).on .values__item-head { animation: values_bottom_sp .5s forwards;}
  .values__item:nth-child(4).on .values__item-head { animation: values_top_sp .5s forwards;}
  .values__item:nth-child(1).on .values__item-img { animation: values_top_sp .5s forwards;}
  .values__item:nth-child(2).on .values__item-img { animation: values_bottom_sp .5s forwards;}
  .values__item:nth-child(3).on .values__item-img { animation: values_top_sp .5s forwards;}
  .values__item:nth-child(4).on .values__item-img { animation: values_bottom_sp .5s forwards;}
  @keyframes values_top_sp {
    0% { top: -120px; opacity: 0;}
    100% { top: 0; opacity: 1;}
  }
  @keyframes values_bottom_sp {
    0% { bottom: -120px; opacity: 0;}
    100% { bottom: 0; opacity: 1;}
  }
  .values__card-wrap { width: 95%; max-width: 345px;}
  .values__card { font-size: 14px;}
  .values__card-head { display: block;}
  .values__card-item { padding: 40px 4%; top: -300px;}
  .values__card-item + .values__card-item { margin-top: 80px;}
  .values__card-item::after { position: static; width: 100%; margin-top: 24px;}
  .values__card-item.is-active::after { opacity: 1;}
  .values__card-head em { display: block; font-size: 18px;}
  .values__card-head span { display: block;}
  .values__card-title img { height: 60px;}
  .values__card-item.values04 { max-height: max-content;}
  .do__inner { width: 100%; max-width: 100%;}
  .do__card { margin-left: 5%;}
  .do__card { max-width: 100%; overflow-x: auto;}
  .do__card .simplebar-track { background-color: #d9d9d9; border-radius: 7px;}
  .do__card .simplebar-track.simplebar-horizontal { height: 4px;}
  .do__card .simplebar-scrollbar::before { background: #000; top: 0; bottom: 0; left: 0; right: 0;}
  .do__card .simplebar-scrollbar.simplebar-visible:before { opacity: 1;}
  .do__list-item span::after { bottom: -11px;}
  .do__box { min-width: 936px; column-gap: 18px; margin-bottom: 32px; padding-right: 5vw;}
  .do__list { display: grid; row-gap: 32px; justify-content: center; grid-template-columns: repeat(2, 1fr); min-width: 0; margin: 32px auto;}
  .do__list-item { font-size: 16px; text-align: center; border-right: none;}
  .do__item-text { font-size: 16px;}
  .do__item-not-text { font-size: 16px;}
  .fellows__inner { max-width: 345px;}
  .fellows__box { flex-wrap: wrap; height: auto; max-width: 341px;}
  .fellows__item { width: 50%; height: 376px;}
  .fellows__item:hover, .fellows__item.on { width: 50%;}
  .fellows__item:nth-child(1) { border-radius: 10px 0 0 0;}
  .fellows__item:nth-child(2) { border-radius: 0 10px 0 0;}
  .fellows__item:nth-child(3) { border-radius: 0 0 0 10px; margin-top: -1px; margin-left: 0;}
  .fellows__item:nth-child(4) { border-radius: 0 0 10px 0; margin-top: -1px;}
  .fellows__item:hover .fellows__item-img, .fellows__item.on .fellows__item-img { height: 123px; padding: 6px;}
  .fellows__item-head { font-size: 12px;}
  .fellows__item-head span { font-size: 8px;}
  .fellows__item-content { height: auto;}
  .fellows__item-text { font-size: 12px; padding: 16px 5%; height: 226px;}
  .culture__box { grid-template-columns: 1fr;}
  .join { padding: calc(var(--space-section-sp) + 60px) 0 124px; margin: -60px 0;}
  .join__title { font-size: 36px; margin-bottom: 8px;}
  .join__item a { padding: 18px 4%;}
  .join__item a::after { width: 26px; height: 26px; bottom: auto; top: 18px;}
  .join__item-title { margin-bottom: 0;}
  .join__item-text { margin-right: 0;}
  .footer { padding: 40px 0;}
  .footer__inner { flex-direction: column-reverse; align-items: center;}
  .footer__nav-list { display: grid; grid-template-columns: repeat(3, 1fr); justify-content: center; column-gap: 5%; row-gap: 24px;}
  .footer__nav-list.blank { grid-template-columns: repeat(2, 1fr); margin: 48px 0; column-gap: 64px;}
  .footer__right { margin-bottom: 8px;}
  .draw--yellow .line-draw { transform: rotateX(180deg);}
  .line-draw.is-animated .line-draw__path { animation: drawLine 2.5s ease forwards;}
  .draw--yellow .line-draw.is-animated .line-draw__path { animation: drawLine 3s ease forwards;}
  .mission__box, .mission__message { position: relative; z-index: 1;}
  .draw--red { top: auto; bottom: 64px; right: 0;}
  .draw--red .line-draw { width: 111px;}
  .draw--blue { top: 40px; left: 0;}
  .draw--blue .line-draw { width: 133px; max-width: 35.5vw;}
  .draw--join1 { top: 189px; left: 0;}
  .draw--join1 .line-draw { width: 242px;}
  .draw--join2 { top: 30%; right: 0;}
  .draw--join2 .line-draw { width: 120px;}
  .draw--join3 { bottom: -20px; left: 0;}
  .draw--join3 .line-draw { width: 217px;}
}
