@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@300;400;500;600;700;800;900&family=Reem+Kufi:wght@400..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* Mixin
---------------------------------------------------------- */
/* animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #059DC6;
  --color-sub: #E2F9FF;
  --color-sub2: #DEF2F8;
  --color-line: #7BCBE1;
  --color-point: #F9D770;
  --color-font: #2D2D2D;
  --color-grd1-blue: #C7F4FF;
  --color-grd1-yelow: #F8FFCF;
  --color-grd2: linear-gradient(145deg, rgba(225, 249, 255, 0.30) 14.08%, #E1F9FF 41.83%, #FAFFDD 76.07%, rgba(250, 255, 221, 0.30) 86.16%);
  /* font
  ---------------------------------------------------------- */
  --font-zenkaku: "Zen Kaku Gothic New", "noto sans jp", sans-serif;
  --font-en: "Caveat", "noto sans jp", sans-serif;
  --font-no: "Reem Kufi", "noto sans jp", sans-serif;
  --font-poppins: "Poppins", "noto sans jp", sans-serif;
  --font-r: 300;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  --font8: 0.5rem;
  --font9: 0.56rem;
  --font10: 0.62rem;
  --font11: 0.7rem;
  --font12: 0.79rem;
  --font13: 0.81rem;
  --font14: 0.88rem;
  --font15: 0.94rem;
  --font16: 1rem;
  --font18: 1.12rem;
  --font20: 1.25rem;
  --font22: 1.42rem;
  --font23: 1.5rem;
  --font24: 1.5rem;
  --font25: 1.6rem;
  --font26: 1.62rem;
  --font28: 1.8rem;
  --font29: 1.85rem;
  --font30: 1.87rem;
  --font32: 2rem;
  --font33: 2.06rem;
  --font36: 2.28rem;
  --font37: 2.31rem;
  --font38: 2.37rem;
  --font41: 2.56rem;
  --font46: 2.88rem;
  --font50: 3.12rem;
  --font52: 3.25rem;
  --font55: 3.43rem;
  --font61: 3.81rem;
  --font66: 4.12rem;
  --font70: 4.37rem;
  --font74: 4.62rem;
  --font85: 5.31rem;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1040px;
  --sidePadding: 20px;
  --marginTop: 20px;
}
@media screen and (min-width: 768px) {
  :root {
    --sidePadding: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --sidePadding: 80px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --marginTop: 30px;
  }
}

.l-top-ttl-number {
  display: grid;
  grid-template-columns: 50px 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 30px var(--sidePadding) 0;
}
.l-top-ttl-number .-number {
  color: #fff;
  font-family: var(--font-no);
  font-weight: var(--font-m);
  font-size: var(--font20);
  aspect-ratio: 1/1;
  position: relative;
}
.l-top-ttl-number .-number::before, .l-top-ttl-number .-number::after {
  content: "";
  display: inline-block;
  width: 5px;
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 9999px;
  position: absolute;
  top: -29px;
  left: calc(50% - 2.5px);
}
.l-top-ttl-number .-number::before {
  width: 10px;
  top: -16px;
  left: calc(50% - 5px);
}
.l-top-ttl-number .-number span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.l-top-ttl-number .-number span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-top-ttl-number .-ttl {
  font-family: var(--font-zenkaku);
  font-size: var(--font22);
  font-weight: var(--font-m);
}
.l-top-ttl-number .-ttl .-big {
  font-size: var(--font30);
  font-weight: var(--font-b);
}
.l-top-ttl-number .-ttl .-blue {
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-top-ttl-number {
    grid-template-columns: 95px 1fr;
    padding-top: 60px;
  }
  .l-top-ttl-number .-number {
    font-size: var(--font41);
  }
  .l-top-ttl-number .-number::before {
    width: 18px;
    left: calc(50% - 9px);
    top: -30px;
  }
  .l-top-ttl-number .-number::after {
    width: 10px;
    left: calc(50% - 5px);
    top: -55px;
  }
  .l-top-ttl-number .-ttl {
    font-size: var(--font36);
  }
  .l-top-ttl-number .-ttl .-big {
    font-size: var(--font50);
  }
}
.l-top-ttl-number.js-scroll .-number::after {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-top-ttl-number.js-scroll .-number::before {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.5s 0.3s;
  transition: all 0.5s 0.3s;
}
.l-top-ttl-number.js-scroll .-number span {
  opacity: 0;
  -webkit-transform: translateY(-20px) scale(0.8);
          transform: translateY(-20px) scale(0.8);
  -webkit-transition: all 0.7s 0.8s;
  transition: all 0.7s 0.8s;
}
.l-top-ttl-number.js-scroll .-ttl {
  overflow: hidden;
}
.l-top-ttl-number.js-scroll .-ttl > p {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.8s 1.2s;
  transition: all 0.8s 1.2s;
}
.l-top-ttl-number.js-scroll.-start .-number::before, .l-top-ttl-number.js-scroll.-start .-number::after {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-top-ttl-number.js-scroll.-start .-number span {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.l-top-ttl-number.js-scroll.-start .-ttl > p {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-top-mv {
  display: grid;
  grid-template-rows: 1fr auto;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  height: 100svh;
  padding-top: 50px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-top-mv {
    padding-top: 0;
    grid-template-rows: 1fr;
  }
}
.l-top-mv__ttl {
  position: absolute;
  width: calc(100% - 40px);
  margin: 0 20px;
  top: 25%;
  z-index: 1;
}
@media screen and (min-width: 425px) {
  .l-top-mv__ttl {
    text-align: center;
    top: 26.5%;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__ttl {
    top: 37%;
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__ttl {
    top: 47%;
    text-align: center;
  }
}
.l-top-mv__ttl .-main {
  display: inline-block;
  font-family: var(--font-zenkaku);
  font-size: var(--font36);
  font-weight: var(--font-m);
}
@media screen and (min-width: 425px) {
  .l-top-mv__ttl .-main {
    text-align: left;
    margin-right: 50px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__ttl .-main {
    font-size: var(--font46);
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__ttl .-main {
    font-size: var(--font66);
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__ttl .-main {
    font-size: var(--font74);
    margin-right: 0;
    margin-left: calc(50% - 350px - 20px);
  }
  .l-top-mv__ttl .-main br {
    display: none;
  }
}
.l-top-mv__ttl .-sub {
  display: inline-block;
  font-family: var(--font-en);
  color: var(--color-main);
  font-size: var(--font32);
  font-weight: 400;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  position: absolute;
  bottom: -45px;
  right: 0;
}
@media screen and (min-width: 425px) {
  .l-top-mv__ttl .-sub {
    right: auto;
    left: calc(50% + 20px);
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__ttl .-sub {
    left: auto;
    bottom: -50px;
    right: 20px;
    font-size: var(--font41);
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__ttl .-sub {
    font-size: var(--font55);
    bottom: -65px;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__ttl .-sub {
    left: calc(50% + 240px);
  }
}
.l-top-mv__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.l-top-mv__img__item {
  position: absolute;
  overflow: hidden;
  z-index: 1;
}
.l-top-mv__img__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-top-mv__img__item:nth-child(1) {
  width: 69%;
  height: 33%;
  border-radius: 0 30px 30px 0;
  left: 0;
  top: 44%;
}
@media screen and (min-width: 768px) {
  .l-top-mv__img__item:nth-child(1) {
    width: 45%;
    height: 40%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__img__item:nth-child(1) {
    width: 34%;
    height: 49%;
    top: 27%;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__img__item:nth-child(1) {
    width: 37%;
    max-width: 723px;
    right: calc(50% + 242px);
    left: auto;
    border-radius: 30px;
  }
}
.l-top-mv__img__item:nth-child(2) {
  width: 72%;
  height: 22%;
  border-radius: 0 0 0 30px;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-top-mv__img__item:nth-child(2) {
    width: 65%;
    height: 30%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__img__item:nth-child(2) {
    width: 52%;
    height: 40%;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__img__item:nth-child(2) {
    width: 54%;
    max-width: 1022px;
    right: auto;
    left: calc(50% - 35px);
    border-radius: 0 0 30px 30px;
  }
}
.l-top-mv__img__item:nth-child(3) {
  width: 53%;
  height: 20%;
  border-radius: 30px 0 0 0;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-top-mv__img__item:nth-child(3) {
    width: 40%;
    height: 25%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__img__item:nth-child(3) {
    width: 31%;
    height: 32%;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__img__item:nth-child(3) {
    width: 33%;
    max-width: 816px;
    left: calc(50% + 272px);
    right: auto;
    border-radius: 30px 30px 0 0;
  }
}
.l-top-mv__img .c-circles span:nth-child(1) {
  width: 400px;
  top: -176px;
  left: -40%;
}
@media screen and (min-width: 768px) {
  .l-top-mv__img .c-circles span:nth-child(1) {
    width: 500px;
    top: -200px;
    left: -30%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__img .c-circles span:nth-child(1) {
    width: 715px;
    right: calc(50% + 210px);
    left: auto;
    top: -167px;
  }
}
.l-top-mv__img .c-circles span:nth-child(2) {
  width: 178px;
  top: 10%;
  left: -15%;
}
@media screen and (min-width: 768px) {
  .l-top-mv__img .c-circles span:nth-child(2) {
    width: 250px;
    top: -15%;
    left: 10%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__img .c-circles span:nth-child(2) {
    width: 410px;
    top: -95px;
    right: calc(50% + 80px);
    left: auto;
  }
}
.l-top-mv__img .c-circles span:nth-child(3) {
  width: 315px;
  bottom: 15%;
  right: -30%;
}
@media screen and (min-width: 768px) {
  .l-top-mv__img .c-circles span:nth-child(3) {
    width: 350px;
    top: 10%;
    bottom: auto;
    right: -10%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__img .c-circles span:nth-child(3) {
    width: 460px;
    left: calc(50% + 450px);
    right: auto;
    top: 16%;
  }
}
.l-top-mv__img .c-circles span:nth-child(4) {
  width: 350px;
  bottom: -40%;
  left: -30%;
}
@media screen and (min-width: 768px) {
  .l-top-mv__img .c-circles span:nth-child(4) {
    width: 250px;
    bottom: -15%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__img .c-circles span:nth-child(4) {
    width: 435px;
    bottom: -40px;
    left: auto;
    right: calc(50% + 323px);
  }
}
.l-top-mv__news {
  display: inline-grid;
  width: 100%;
  grid-template-columns: auto 1fr;
  font-family: var(--font-zenkaku);
}
@media screen and (min-width: 960px) {
  .l-top-mv__news {
    width: auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.l-top-mv__news__ttlBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  background: #C4E5EC;
}
@media screen and (min-width: 768px) {
  .l-top-mv__news__ttlBox {
    padding: 20px 30px;
  }
}
.l-top-mv__news__ttlBox .-ttl {
  font-size: var(--font18);
  font-weight: var(--font-b);
}
.l-top-mv__news__ttlBox .-more {
  font-weight: var(--font-m);
  position: relative;
  padding-right: 8px;
}
.l-top-mv__news__ttlBox .-more::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-font);
  border-right: 1px solid var(--color-font);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 1.5px);
  right: 2px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__news__ttlBox .-more::after {
    top: calc(50% - 0.2px);
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__news__ttlBox .-more::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-top-mv__news__ttlBox .-more:hover::after {
    right: -3px;
  }
}
.l-top-mv__news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background: #fff;
  padding: 10px 20px 10px 15px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__news__list {
    gap: 10px;
    padding: 15px 30px;
  }
}
.l-top-mv__news__list li {
  font-size: var(--font12);
}
@media screen and (min-width: 768px) {
  .l-top-mv__news__list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: var(--font14);
  }
}
.l-top-mv__news__list li .-day {
  margin-right: 10px;
}
.l-top-mv__news__list li .-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-top-mv__news__list li .-ttl {
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 300px;
  }
}
.l-top-mv__news__list li > a {
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (min-width: 960px) {
  .l-top-mv__news__list li > a:hover {
    text-decoration: none;
  }
}
.l-top-mv.js-scroll .l-top-mv__ttl .-main {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.l-top-mv.js-scroll .l-top-mv__ttl .-sub {
  opacity: 0;
  -webkit-transform: translateY(50px) rotate(-10deg);
          transform: translateY(50px) rotate(-10deg);
  -webkit-transition: all 0.8s 0.5s;
  transition: all 0.8s 0.5s;
}
.l-top-mv.js-scroll .l-top-mv__img__item {
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
          clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  -webkit-transition: all 0.5s ease-in-out 1.2s;
  transition: all 0.5s ease-in-out 1.2s;
}
.l-top-mv.js-scroll .l-top-mv__img__item:nth-child(2) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.l-top-mv.js-scroll .l-top-mv__img__item:nth-child(3) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.l-top-mv.js-scroll.-start .l-top-mv__ttl .-main {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-top-mv.js-scroll.-start .l-top-mv__ttl .-sub {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(-10deg);
          transform: translateY(0) rotate(-10deg);
}
.l-top-mv.js-scroll.-start .l-top-mv__img__item {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.l-top-about {
  margin-top: 30px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .l-top-about {
    margin-top: -120px;
  }
}
.l-top-about .l-sec-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  padding: 0 var(--sidePadding);
  min-height: 410px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top-about .l-sec-inner {
    min-height: 775px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-about .l-sec-inner {
    margin-top: 50px;
  }
}
.l-top-about .l-sec-inner::before {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: var(--color-grd2);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-top-about .l-sec-inner::before {
  width: 400px;
  left: calc(50% - 200px);
}
@media screen and (min-width: 768px) {
  .l-top-about .l-sec-inner::before {
    width: 765px;
    left: calc(50% - 382.5px);
  }
}
.l-top-about__ttl {
  width: 100%;
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .l-top-about__ttl {
    max-width: 1025px;
  }
}
.l-top-about__ttl .-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: var(--font25);
  color: var(--color-main);
  font-weight: 400;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
}
.l-top-about__ttl .-en .-big {
  font-size: var(--font33);
}
@media screen and (min-width: 375px) {
  .l-top-about__ttl .-en {
    font-size: var(--font30);
  }
  .l-top-about__ttl .-en .-big {
    font-size: var(--font41);
  }
}
@media screen and (min-width: 768px) {
  .l-top-about__ttl .-en {
    font-size: 106px;
  }
  .l-top-about__ttl .-en .-big {
    font-size: 1em;
  }
}
.l-top-about__ttl p {
  font-size: var(--font25);
  font-family: var(--font-zenkaku);
  font-weight: var(--font-m);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-top-about__ttl p {
    font-size: var(--font52);
  }
}
.l-top-about__anc {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, auto);
}
@media screen and (min-width: 768px) {
  .l-top-about__anc {
    margin-top: 70px;
    gap: 30px;
  }
}
.l-top-about__anc li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-zenkaku);
  font-size: var(--font16);
}
.l-top-about__anc li a .-big {
  font-size: var(--font23);
  font-weight: var(--font-b);
}
.l-top-about__anc li a .-blue {
  color: var(--color-main);
}
.l-top-about__anc li a::after {
  content: "";
  display: inline-block;
  width: 12.5px;
  height: 6px;
  background: var(--color-main);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-top-about__anc li a {
    font-size: var(--font29);
  }
  .l-top-about__anc li a .-big {
    font-size: var(--font41);
  }
  .l-top-about__anc li a::after {
    width: 21px;
    height: 10.5px;
    margin-top: 17px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-about__anc li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-top-about__anc li a:hover {
    -webkit-transform: translateY(5px) scale(1.1);
            transform: translateY(5px) scale(1.1);
  }
  @-webkit-keyframes arrowAnime {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes arrowAnime {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  .l-top-about__anc li a:hover::after {
    -webkit-animation: arrowAnime 0.8s infinite;
            animation: arrowAnime 0.8s infinite;
  }
}
.l-top-about__woofy {
  width: 35%;
  max-width: 125px;
  position: absolute;
  top: 0;
  left: calc(50% + 50px);
}
.l-top-about__woofy img {
  padding-right: 10px;
}
.l-top-about__woofy figcaption {
  font-size: var(--font10);
  font-family: var(--font-zenkaku);
  text-align: center;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .l-top-about__woofy {
    top: 25%;
    left: calc(50% + 200px);
    max-width: 190px;
  }
  .l-top-about__woofy figcaption {
    font-size: var(--font14);
  }
}
@media screen and (min-width: 960px) {
  .l-top-about__woofy {
    max-width: 225px;
    left: calc(50% + 150px);
  }
  .l-top-about__woofy figcaption {
    display: inline-block;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 80%;
    word-break: keep-all;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-about__woofy {
    left: calc(50% + 200px);
  }
}
.l-top-about .l-sec-inner.js-scroll::before {
  opacity: 0;
  -webkit-transform: translateY(-100px) scale(0.5);
          transform: translateY(-100px) scale(0.5);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.l-top-about .l-sec-inner.js-scroll .l-top-about__ttl .-en {
  opacity: 0;
  -webkit-transform: translateY(50px) rotate(-13deg);
          transform: translateY(50px) rotate(-13deg);
  -webkit-transition: all 0.5s ease-out 0.5s;
  transition: all 0.5s ease-out 0.5s;
}
.l-top-about .l-sec-inner.js-scroll .l-top-about__ttl p {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.8s ease-in-out 1s;
  transition: all 0.8s ease-in-out 1s;
}
.l-top-about .l-sec-inner.js-scroll .l-top-about__anc li {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.4s ease-out 2s;
  transition: all 0.4s ease-out 2s;
}
.l-top-about .l-sec-inner.js-scroll .l-top-about__anc li:nth-child(2) {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.l-top-about .l-sec-inner.js-scroll .l-top-about__anc li:nth-child(3) {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.l-top-about .l-sec-inner.js-scroll .l-top-about__woofy {
  opacity: 0;
}
.l-top-about .l-sec-inner.js-scroll.-start::before {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.l-top-about .l-sec-inner.js-scroll.-start .l-top-about__ttl .-en {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(-13deg);
          transform: translateY(0) rotate(-13deg);
}
.l-top-about .l-sec-inner.js-scroll.-start .l-top-about__ttl p {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-top-about .l-sec-inner.js-scroll.-start .l-top-about__anc li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-top-about .l-sec-inner.js-scroll.-start .l-top-about__woofy {
  -webkit-animation: woofyAnime 0.5s ease-out 3.2s forwards;
          animation: woofyAnime 0.5s ease-out 3.2s forwards;
}
@-webkit-keyframes woofyAnime {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(0.9, 1.2);
            transform: scale(0.9, 1.2);
  }
  75% {
    opacity: 1;
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes woofyAnime {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(0.9, 1.2);
            transform: scale(0.9, 1.2);
  }
  75% {
    opacity: 1;
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.l-top-work {
  padding-top: 70px;
  position: relative;
}
.l-top-work > * {
  position: relative;
  z-index: 1;
}
.l-top-work::before, .l-top-work::after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}
.l-top-work::before {
  height: calc(100% + 115px);
  background: -webkit-linear-gradient(292deg, rgba(215, 248, 255, 0) 28.24%, #D7F8FF 60.31%, #AFF1FF 71.87%);
  background: linear-gradient(158deg, rgba(215, 248, 255, 0) 28.24%, #D7F8FF 60.31%, #AFF1FF 71.87%);
  bottom: 0;
}
@media screen and (min-width: 960px) {
  .l-top-work::before {
    background: -webkit-linear-gradient(280deg, rgba(215, 248, 255, 0) 28.24%, #D7F8FF 60.31%, #AFF1FF 71.87%);
    background: linear-gradient(170deg, rgba(215, 248, 255, 0) 28.24%, #D7F8FF 60.31%, #AFF1FF 71.87%);
  }
}
.l-top-work::after {
  height: 115px;
  background: -webkit-gradient(linear, left top, left bottom, from(#AFF1FF), color-stop(24.5%, #B6F5FA), color-stop(74%, #E7FCCF), to(#F8FABF));
  background: -webkit-linear-gradient(top, #AFF1FF 0%, #B6F5FA 24.5%, #E7FCCF 74%, #F8FABF 100%);
  background: linear-gradient(180deg, #AFF1FF 0%, #B6F5FA 24.5%, #E7FCCF 74%, #F8FABF 100%);
  top: 100%;
}
@media screen and (min-width: 768px) {
  .l-top-work::after {
    height: 290px;
  }
}
.l-top-work .l-sec-inner {
  max-width: calc(var(--maxWidth) + 160px);
  margin: 0 auto;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .l-top-work .l-sec-inner {
    padding: 0 80px;
  }
  .l-top-work .l-sec-inner::before {
    content: "";
    display: inline-block;
    width: 80vw;
    height: 100px;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#AFF1FF));
    background: -webkit-linear-gradient(top, transparent 0%, #AFF1FF 100%);
    background: linear-gradient(180deg, transparent 0%, #AFF1FF 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 960px) {
  .l-top-work .l-top-ttl-number {
    padding-right: 0;
    padding-left: 0;
  }
}
.l-top-work__box {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .l-top-work__box {
    margin-top: 65px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-work__box {
    grid-template-columns: 1fr 260px;
    grid-template-areas: "img list" "btn btn";
    gap: 0 60px;
  }
  .l-top-work__box::after {
    content: "work";
    display: inline-block;
    font-family: var(--font-en);
    font-size: 125px;
    font-weight: 400;
    color: #fff;
    -webkit-transform: rotate(-13deg);
            transform: rotate(-13deg);
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: -1;
  }
}
@media screen and (min-width: 960px) and (min-width: 1220px) {
  .l-top-work__box::after {
    right: 0;
  }
}
.l-top-work__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
  padding: 0 var(--sidePadding);
}
@media screen and (min-width: 960px) {
  .l-top-work__list {
    grid-area: list;
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.l-top-work__list__item {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-line);
}
@media screen and (min-width: 960px) {
  .l-top-work__list__item:last-child {
    border-bottom: none;
  }
}
.l-top-work__list__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  font-size: var(--font14);
  font-family: var(--font-zenkaku);
}
@media screen and (min-width: 425px) {
  .l-top-work__list__item a {
    font-size: var(--font16);
  }
}
@media screen and (min-width: 768px) {
  .l-top-work__list__item a {
    font-size: var(--font20);
    padding: 15px;
  }
}
.l-top-work__list__item a .-small {
  font-size: var(--font10);
}
@media screen and (min-width: 425px) {
  .l-top-work__list__item a .-small {
    font-size: var(--font14);
  }
}
@media screen and (min-width: 960px) {
  .l-top-work__list__item a .-small {
    font-size: var(--font18);
  }
}
.l-top-work__list__item a svg {
  width: 15px;
  height: 15px;
}
@media screen and (min-width: 960px) {
  .l-top-work__list__item a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-top-work__list__item a svg {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .l-top-work__list__item a:hover {
    color: var(--color-main);
  }
  .l-top-work__list__item a:hover svg {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.l-top-work__img {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 70px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 56.8% 34.9%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top-work__img {
    padding: 0 40px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-work__img {
    grid-area: img;
    grid-template-columns: 1fr;
    height: 410px;
    margin-top: 0;
    padding: 0;
  }
}
.l-top-work__img::after {
  content: "work";
  display: inline-block;
  font-family: var(--font-en);
  font-size: var(--font85);
  font-weight: 400;
  color: #fff;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  position: absolute;
  top: -100px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .l-top-work__img::after {
    font-size: 125px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-work__img::after {
    content: none;
  }
}
.l-top-work__img__item {
  position: relative;
  z-index: 1;
}
.l-top-work__img__item:not(:nth-child(1), :nth-child(2)) {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-top-work__img__item:not(:nth-child(1), :nth-child(2)) {
    display: block;
  }
}
.l-top-work__img__item:nth-child(1) {
  aspect-ratio: 1/0.728;
}
@media screen and (min-width: 960px) {
  .l-top-work__img__item:nth-child(1) {
    aspect-ratio: auto;
  }
}
.l-top-work__img__item:nth-child(1) img {
  -o-object-position: top right;
     object-position: top right;
}
.l-top-work__img__item:nth-child(2) {
  aspect-ratio: 1/0.877;
}
@media screen and (min-width: 960px) {
  .l-top-work__img__item:nth-child(2) {
    aspect-ratio: auto;
  }
}
.l-top-work__img__item:nth-child(2) img {
  -o-object-position: top center;
     object-position: top center;
}
.l-top-work__img__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .l-top-work__img__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .l-top-work__img__item.-active {
    opacity: 1;
  }
}
.l-top-work .c-btn-1 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-top-work .c-btn-1 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-work .c-btn-1 {
    grid-area: btn;
  }
}

.l-top-people {
  margin-top: 115px;
  padding-bottom: 90px;
  background: #F8FABF;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top-people {
    margin-top: 200px;
    padding-bottom: 30px;
  }
  .l-top-people > * {
    position: relative;
    z-index: 1;
  }
}
.l-top-people::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 115px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8FABF), color-stop(26%, #E7FCCF), color-stop(75.5%, #B6F5FA), to(#AFF1FF));
  background: -webkit-linear-gradient(top, #F8FABF 0%, #E7FCCF 26%, #B6F5FA 75.5%, #AFF1FF 100%);
  background: linear-gradient(180deg, #F8FABF 0%, #E7FCCF 26%, #B6F5FA 75.5%, #AFF1FF 100%);
  position: absolute;
  left: 0;
  z-index: 1;
  top: 100%;
}
@media screen and (min-width: 768px) {
  .l-top-people::before {
    height: 290px;
  }
}
.l-top-people::after {
  content: "people";
  display: inline-block;
  font-family: var(--font-en);
  font-size: var(--font85);
  font-weight: 400;
  color: var(--color-main);
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  position: absolute;
  bottom: 0;
  right: 18px;
}
@media screen and (min-width: 768px) {
  .l-top-people::after {
    font-size: 125px;
  }
}
@media screen and (min-width: 1250px) {
  .l-top-people::after {
    right: auto;
    left: calc(50% + 350px);
  }
}
@media screen and (min-width: 768px) {
  .l-top-people .l-top-ttl-number {
    margin-bottom: -75px;
    z-index: 2;
  }
}
@media screen and (min-width: 960px) {
  .l-top-people .l-top-ttl-number {
    max-width: var(--maxWidth);
    margin-right: auto;
    margin-left: auto;
  }
}
.l-top-people__list__item {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 20px 20px;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-top-people__list__item {
    padding: 220px 50px 90px;
    margin: 0 15px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-people__list__item {
    padding: 220px 90px 90px;
    width: calc(100% - 160px);
    max-width: var(--maxWidth);
    margin: 0 35px;
  }
}
.l-top-people__list__item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: calc(100% - 30px);
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-top-people__list__item::before {
    height: calc(100% - 130px);
  }
}
.l-top-people__list__item > * {
  position: relative;
  z-index: 1;
}
.l-top-people__list__item .-voice span {
  display: inline;
  font-family: var(--font-zenkaku);
  font-size: var(--font14);
  line-height: var(--lhL);
  background: -webkit-linear-gradient(bottom, var(--color-sub2) 0%, var(--color-sub2) 9px, transparent 10px, transparent 100%);
  background: linear-gradient(to top, var(--color-sub2) 0%, var(--color-sub2) 9px, transparent 10px, transparent 100%);
}
@media screen and (min-width: 375px) {
  .l-top-people__list__item .-voice span {
    font-size: var(--font18);
  }
}
@media screen and (min-width: 768px) {
  .l-top-people__list__item .-voice span {
    font-size: var(--font28);
    background: -webkit-linear-gradient(bottom, var(--color-sub2) 0%, var(--color-sub2) 15px, transparent 16px, transparent 100%);
    background: linear-gradient(to top, var(--color-sub2) 0%, var(--color-sub2) 15px, transparent 16px, transparent 100%);
    font-weight: 400;
    line-height: var(--lhM);
  }
}
@media screen and (min-width: 960px) {
  .l-top-people__list__item .-voice span {
    font-size: var(--font32);
  }
}
.l-top-people__list__item .-dataAndBtn {
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-top-people__list__item .-dataAndBtn {
    width: 50%;
  }
}
.l-top-people__list__item .-data {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-top-people__list__item .-data {
    margin-top: 30px;
  }
}
.l-top-people__list__item .-data p {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 10px;
  font-size: var(--font12);
  font-weight: 400;
}
.l-top-people__list__item .-data p .-name {
  display: inline-block;
  width: 100%;
  font-size: var(--font14);
}
@media screen and (min-width: 768px) {
  .l-top-people__list__item .-data p {
    font-size: var(--font16);
    gap: 20px;
  }
  .l-top-people__list__item .-data p .-name {
    font-size: var(--font23);
  }
}
.l-top-people__list__item .c-btn-1 {
  position: absolute !important;
  bottom: -10px;
  right: -10px;
}
.l-top-people__list__item .c-btn-1 a {
  min-width: 100px;
  padding: 3px 35px 9px 20px;
  font-size: var(--font16);
  -webkit-box-shadow: 2px 2px 3px 0px rgba(153, 211, 226, 0.5) !important;
          box-shadow: 2px 2px 3px 0px rgba(153, 211, 226, 0.5) !important;
}
.l-top-people__list__item .c-btn-1 a svg {
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  right: 20px;
}
@media screen and (min-width: 960px) {
  .l-top-people__list__item .c-btn-1 a:hover {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
@media screen and (min-width: 768px) {
  .l-top-people__list__item .c-btn-1 {
    bottom: -50px;
  }
  .l-top-people__list__item .c-btn-1 a {
    font-size: var(--font20);
    padding: 6px 35px 13px 20px;
    min-width: 140px;
  }
  .l-top-people__list__item .c-btn-1 a svg {
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
  }
}
@media screen and (min-width: 960px) {
  .l-top-people__list__item .c-btn-1 {
    bottom: -10px;
    right: -10px;
  }
}
.l-top-people__list__item .-img {
  width: 50%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -10%;
  z-index: 0;
}
@media screen and (min-width: 425px) {
  .l-top-people__list__item .-img {
    width: 56%;
  }
}
@media screen and (min-width: 768px) {
  .l-top-people__list__item .-img {
    right: 0;
  }
}
.l-top-people__list__item .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.l-top-people__list__item .-img::before, .l-top-people__list__item .-img::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  position: absolute;
  z-index: -1;
}
.l-top-people__list__item .-img::before {
  width: 250px;
  background: -webkit-radial-gradient(50% 50%, 50% 50%, #D9F8FF 0%, rgba(217, 237, 255, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #D9F8FF 0%, rgba(217, 237, 255, 0) 100%);
  bottom: -130px;
  right: -85px;
}
@media screen and (min-width: 960px) {
  .l-top-people__list__item .-img::before {
    width: 730px;
    bottom: -300px;
    right: -140px;
  }
}
.l-top-people__list__item .-img::after {
  width: 130px;
  background: -webkit-radial-gradient(50% 50%, 50% 50%, rgba(250, 255, 212, 0.7) 0%, rgba(250, 255, 212, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(250, 255, 212, 0.7) 0%, rgba(250, 255, 212, 0) 100%);
  bottom: 37px;
  right: -50px;
}
@media screen and (min-width: 960px) {
  .l-top-people__list__item .-img::after {
    width: 360px;
    bottom: 100px;
    right: -100px;
  }
}
.l-top-people .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-top-people .slick-slide {
  height: auto !important;
}
.l-top-people .slick-dotted.slick-slider {
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-top-people .slick-dotted.slick-slider {
    padding-bottom: 20px;
  }
}
.l-top-people .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
}
.l-top-people .slick-dots li {
  width: 5px;
  height: 5px;
  margin: 0;
}
.l-top-people .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #C4E5EC;
  border-radius: 9999px;
}
.l-top-people .slick-dots li button::before {
  content: none;
}
@media screen and (min-width: 960px) {
  .l-top-people .slick-dots li button {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-top-people .slick-dots li button:hover {
    background: var(--color-main);
  }
}
.l-top-people .slick-dots li.slick-active button {
  background: var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-top-people .slick-dots {
    gap: 10px;
  }
  .l-top-people .slick-dots li {
    width: 10px;
    height: 10px;
  }
}
.l-top-people .slide-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  background: #7CD4ED;
  padding: 22px;
  color: #fff;
  border-radius: 9999px;
  position: absolute;
  bottom: calc(50% - 30px - 65px + 10px);
  z-index: 1;
  cursor: pointer;
}
.l-top-people .slide-arrow.-prev {
  left: 40px;
}
.l-top-people .slide-arrow.-prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.l-top-people .slide-arrow.-next {
  right: 40px;
}
@media screen and (min-width: 1220px) {
  .l-top-people .slide-arrow.-prev {
    left: calc(50% - 560px);
  }
  .l-top-people .slide-arrow.-next {
    right: calc(50% - 560px);
  }
}
@media screen and (min-width: 960px) {
  .l-top-people .slide-arrow {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-top-people .slide-arrow:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    background: var(--color-main);
  }
}
.l-top-people .c-btn-1 {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.l-top-people .c-btn-1 a {
  -webkit-box-shadow: 4px 4px 5px 0px #B3C397;
          box-shadow: 4px 4px 5px 0px #B3C397;
}
@media screen and (min-width: 768px) {
  .l-top-people .c-btn-1 {
    margin-top: 60px;
  }
}

.l-top-company {
  margin-top: 115px;
  padding-bottom: 100px;
  position: relative;
}
.l-top-company .l-sec-inner {
  max-width: calc(var(--maxWidth) + 160px);
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .l-top-company .l-sec-inner {
    position: relative;
  }
}
.l-top-company .l-sec-inner > * {
  position: relative;
  z-index: 1;
}
.l-top-company .l-sec-inner::after {
  content: "company";
  display: inline-block;
  font-family: var(--font-en);
  font-size: var(--font85);
  font-weight: 400;
  color: #F6D87A;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  position: absolute;
  bottom: 0;
  right: 18px;
}
@media screen and (min-width: 768px) {
  .l-top-company .l-sec-inner::after {
    font-size: 125px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-company .l-sec-inner::after {
    bottom: -26px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-company {
    margin-top: 200px;
  }
}
.l-top-company::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: calc(100% + 320px);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(16.1%, rgba(215, 248, 255, 0)), color-stop(43.75%, #D7F8FF), color-stop(82.02%, #AFF1FF));
  background: -webkit-linear-gradient(bottom, rgba(215, 248, 255, 0) 16.1%, #D7F8FF 43.75%, #AFF1FF 82.02%);
  background: linear-gradient(to top, rgba(215, 248, 255, 0) 16.1%, #D7F8FF 43.75%, #AFF1FF 82.02%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-top-company__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 var(--sidePadding);
}
@media screen and (min-width: 768px) {
  .l-top-company__list {
    margin-top: 60px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.l-top-company__list__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #fff;
  padding: 20px;
}
.l-top-company__list__item a .-ttl {
  font-size: var(--font16);
}
.l-top-company__list__item a figure {
  margin-top: 15px;
}
.l-top-company__list__item a svg {
  margin-top: 10px;
  width: 45px;
  height: 45px;
  background: #7CD4ED;
  border-radius: 9999px;
  padding: 15px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-top-company__list__item a {
    padding: 37px 20px 30px;
  }
  .l-top-company__list__item a .-ttl {
    font-size: var(--font23);
  }
  .l-top-company__list__item a figure {
    margin-top: 30px;
  }
  .l-top-company__list__item a svg {
    margin-top: 30px;
    width: 60px;
    height: 60px;
    padding: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-company__list__item {
    position: relative;
  }
  .l-top-company__list__item::before, .l-top-company__list__item::after, .l-top-company__list__item a::before, .l-top-company__list__item a::after {
    content: "";
    display: inline-block;
    background: var(--color-point);
    position: absolute;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-top-company__list__item::before, .l-top-company__list__item a::before {
    width: 0;
    height: 5px;
  }
  .l-top-company__list__item::before {
    top: 0;
    left: 0;
  }
  .l-top-company__list__item a::before {
    bottom: 0;
    right: 0;
  }
  .l-top-company__list__item::after, .l-top-company__list__item a::after {
    width: 5px;
    height: 0;
  }
  .l-top-company__list__item::after {
    top: 0;
    left: 0;
  }
  .l-top-company__list__item a::after {
    bottom: 0;
    right: 0;
  }
  .l-top-company__list__item a svg {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .l-top-company__list__item:hover::before, .l-top-company__list__item:hover a::before {
    width: 100%;
  }
  .l-top-company__list__item:hover::after, .l-top-company__list__item:hover a::after {
    height: 100%;
  }
  .l-top-company__list__item:hover a svg {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.l-top-company .c-btn-1 {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-top-company .c-btn-1 {
    margin-top: 80px;
  }
}

.l-top-faq {
  margin-top: 60px;
  padding: 0 var(--sidePadding);
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top-faq {
    max-width: 1040px;
    margin: 130px auto 150px;
  }
}
.l-top-faq .-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-top-faq figure {
  width: 105px;
  position: absolute;
  top: -13px;
  left: 5px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 450px) {
  .l-top-faq figure {
    left: auto;
    right: calc(50% + 110px);
  }
}
@media screen and (min-width: 768px) {
  .l-top-faq figure {
    width: 215px;
    left: 13px;
  }
}
.l-top-faq a {
  display: inline-block;
  width: calc(100% - 45px);
  margin-left: 45px;
  max-width: 310px;
  padding: 27px 65px 27px 30px;
  text-align: center;
  background: -webkit-linear-gradient(347deg, #E2FAFF 14.9%, #B2F1FF 67.98%);
  background: linear-gradient(103deg, #E2FAFF 14.9%, #B2F1FF 67.98%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top-faq a {
    width: calc(100% - 180px);
    max-width: 865px;
    margin-left: 0;
    padding: 75px 120px 75px 80px;
  }
}
.l-top-faq a .-ttl {
  font-family: var(--font-zenkaku);
  font-size: var(--font18);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-top-faq a .-ttl {
    font-size: var(--font36);
  }
}
.l-top-faq a .-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: var(--font30);
  font-weight: 400;
  color: #fff;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  position: absolute;
  bottom: 0;
  left: 55%;
}
@media screen and (min-width: 450px) {
  .l-top-faq a .-en {
    left: 60%;
  }
}
@media screen and (min-width: 768px) {
  .l-top-faq a .-en {
    font-size: 71px;
  }
}
.l-top-faq a svg {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 9999px;
  padding: 15px;
  color: var(--color-main);
  position: absolute;
  top: calc(50% - 22.5px);
  right: 15px;
}
@media screen and (min-width: 768px) {
  .l-top-faq a svg {
    width: 66px;
    height: 66px;
    padding: 25px;
    top: calc(50% - 33px);
    right: 40px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-faq a svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-top-faq a:hover svg {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    background: var(--color-main);
    color: #fff;
  }
}
.l-top-faq.js-scroll .-inner {
  overflow: hidden;
}
.l-top-faq.js-scroll .-inner a {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.l-top-faq.js-scroll.-start .-inner a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}