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

RESET

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

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

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
  /*16px * 62.5% = 10px*/
}

/* For Desktop */
@media (min-width: 960px) {

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

COMMON

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

  body {
    background: #f7f7f7;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    font-size: 1.5rem;
    font-feature-settings: "palt";
    letter-spacing: 1px;
  }

  .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 0;
  }

  .display-l {
    text-align: center;
    font-size: 4.4rem;
    font-weight: 700;
    margin-bottom: 64px;
    line-height: 1.4;
  }

  .display-l span {
    font-size: 2.1rem;
    display: block;
    font-weight: 500;
    color: #0D9AAC;
    margin-bottom: 16px;
  }

  a:hover {
    transition: 0.4s;
    opacity: 0.7;
  }

  .non-pc {
    display: none !important;
  }

  section {
    padding: 0 32px;
  }

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

HEADER

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

  header {
    padding: 24px 4%;
    background: #fff !important;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    gap: 24px;
  }

  header #logo-hrs {
    width: 184px;
  }

  header #right-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  header nav ul {
    display: flex;
    gap: 32px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  header nav ul li {
    position: relative;
  }

  header nav ul li:not(:first-child):after {
    content: "";
    display: block;
    background: #ccc;
    height: 16px;
    width: 1px;
    position: absolute;
    left: -16px;
    top: 4px;
  }

  .button a {
    background: #F7D125;
    font-size: 1.3rem;
    width: 192px;
    border-radius: 100px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    text-align: center;
    margin-right: 16px;
  }

  .button a:hover {
    background: #05454E;
    background-size: 24px 24px;
    color: #fff;
    opacity: 1;
  }

  #login a {
    font-size: 1.3rem;
    padding-left: 24px;
    background: url(../img/ico-login.svg)no-repeat;
    background-size: contain;
  }

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

HERO

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

  #hero {
    background: #1BB9CE;
    position: relative;
    height: 608px;
    overflow: hidden;
    padding: 0 4%;
  }

  #hero .wrapper {
    width: 1200px;
    height: 608px;
    margin: 0 auto;
    display: flex;
    padding: 40px 0 0 0;
    gap: 40px;
  }

  #left-hero {
    width: 660px;
    text-align: center;
  }

  #left-hero h1{
    margin-bottom: 24px;
  }
  
  #left-hero h1 #caption-head {
    font-size: 3.8rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    margin-bottom:8px;
    display:block;
  }

  #left-hero h1 #caption-head span {
    font-size: 6.0rem;
    font-weight: 600;
    background: url(../img/back-nega.svg) no-repeat;
    background-size: 100%;
    padding: 0 10px;
    position: relative;
    top: 3px;
    margin: 0 2px;
  }

  #left-hero h1 #tit-head {
    font-size: 6.0rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 1.5px;
  }

  #left-hero h1 #tit-head span {
    font-size: 8.6rem;
    color:#fff;
  }

  #left-hero #intro {
    font-size: 1.8rem;
    color: #fff;
    white-space: nowrap;
    line-height: 1.6;
  }

  #left-hero #intro span {
    font-size: 2.1rem;
    font-weight: 600;
  }

  #left-hero .button {
    display: flex;
    width: 488px;
    gap: 16px;
    margin: 24px auto 0 auto;
    align-items: center;
  }

  #left-hero .button a {
    width: 344px;
    padding: 16px 0;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 auto;
  }

  #left-hero dl {
    background: url(../img/badge.svg) no-repeat;
    background-size: contain;
    width: 128px;
    height: 128px;
    box-sizing: border-box;
    color: #0D9AAC;
    font-weight: 600;
    padding-top: 13px;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 1.8rem;
  }

  #left-hero dt:after {
    content: "";
    height: 2px;
    background: #0D9AAC;
    width: 68px;
    display: block;
    margin: 4px auto;
  }

  #right-hero {
    width: 926px;
    flex-shrink: 0;
    position: relative;
    top: 44px;
  }

  #right-hero:before {
    content: "";
    display: block;
    width: 299px;
    height: 213px;
    background: url(../img/conversation.svg)no-repeat;
    position: absolute;
    bottom: 43px;
    left: -68px;
  }

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

EVENT

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

  #event {
    padding: 48px 0;
  }

  #event p {
    width: 728px;
    margin: 0 auto;
  }

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

CLIENTS

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

  #clients {
    background: #fff;
    padding: 48px 0;
  }

  #head-clients {
    text-align: center;
  }

  #head-clients dl {
    display: inline-block;
    margin: 0 48px 32px 48px;
    position: relative;
  }

  #clients dl:before {
    width: 26px;
    height: 60px;
    content: "";
    display: block;
    background: url(../img/wreath-left.svg)no-repeat;
    position: absolute;
    left: -32px;
    bottom: 0;
  }

  #clients dl:after {
    width: 26px;
    height: 60px;
    content: "";
    display: block;
    background: url(../img/wreath-right.svg)no-repeat;
    position: absolute;
    right: -32px;
    bottom: 0;
  }

  #head-clients dl * {
    display: inline-block;
  }

  #head-clients dt {
    font-size: 2.1rem;
    font-weight: 500;
  }

  #head-clients dd {
    font-size: 2.1rem;
    font-weight: 500;
  }

  #head-clients dd span {
    font-family: "Inter", sans-serif;
    font-size: 4.4rem;
    position: relative;
    top: 4px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  #head-clients dd span span {
    font-size: 3rem;
    position: relative;
    top: -3px;
  }

  #clients li {
    padding: 0 24px;
  }

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

PROBLEM

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

  #problem {
    background: #1BB9CE;
  }

  #problem p,
  #problem h1 {
    color: #fff;
    text-align: center;
  }

  #problem p {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 16px;
  }

  #problem h1 {
    font-size: 4.4rem;
    margin-bottom: 48px;
  }

  #problem ul {
    display: flex;
    justify-content: center;
    gap: 3%;
    height: 145px;
  }

  #problem li {
    border-radius: 8px;
    background: #fff;
    padding: 24px 16px;
    line-height: 1.7;
    width: 34%;
    box-sizing: border-box;
    position: relative;
    height: 105px;
  }

  #problem li:first-child {
    width: 32%;
  }

  #problem li:nth-child(1):before {
    content: "";
    display: block;
    width: 41px;
    height: 53px;
    background: url(../img/bubble-left.svg) no-repeat;
    position: absolute;
    left: 110px;
    bottom: -40px;
    background-size: contain;
  }

  #problem li:nth-child(1):after {
    content: "";
    display: block;
    background: url(../img/problem-men1.svg) no-repeat;
    width: 99px;
    height: 156px;
    position: absolute;
    bottom: -143px;
    left: 132px;
  }

  #problem li:nth-child(2):before {
    content: "";
    display: block;
    width: 31px;
    height: 59px;
    background: url(../img/bubble-center.svg) no-repeat;
    position: absolute;
    left: 126px;
    bottom: -50px;
    background-size: contain;
  }

  #problem li:nth-child(2):after {
    content: "";
    display: block;
    background: url(../img/problem-woman.svg) no-repeat;
    width: 95px;
    height: 146px;
    position: absolute;
    bottom: -143px;
    left: 143px;
  }

  #problem li:nth-child(3):before {
    content: "";
    display: block;
    width: 41px;
    height: 53px;
    background: url(../img/bubble-right.svg) no-repeat;
    position: absolute;
    left: 210px;
    bottom: -40px;
    background-size: contain;
  }

  #problem li:nth-child(3):after {
    content: "";
    display: block;
    background: url(../img/problem-men2.svg) no-repeat;
    width: 157px;
    height: 158px;
    position: absolute;
    bottom: -143px;
    left: 125px;
  }

  #problem li p {
    color: #333;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0;
  }

  #problem li p span {
    font-weight: 600;
  }

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

SOLUTION

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

  #solution {
    background: #EDF9FB;
  }

  #solution h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 64px;
    position: relative;
  }

  #solution h2 span {
    display: block;
    font-size: 3.2rem;
    font-weight: 600;
    margin-top: 10px;

  }

  #solution .highlight span {
    position: relative;
    display: inline;
  }

  #solution .highlight span:before {
    content: "";
    display: block;
    background: #333;
    height: 36px;
    width: 3px;
    position: absolute;
    left: -20px;
    bottom: 4px;
    transform: rotate(-30deg);
  }

  #solution .highlight span:after {
    content: "";
    display: block;
    background: #333;
    height: 36px;
    width: 3px;
    position: absolute;
    right: -18px;
    bottom: 4px;
    transform: rotate(30deg);
  }

  #solution h2 img {
    width: 152px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
  }

  #solution ul {
    width: 100%;
    display: flex;
    gap: 5%;
  }

  #solution li {
    background: #fff;
    padding: 32px 32px 200px 32px !important;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    width: 30%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    font-size: 1.8rem;
    line-height: 1.6;
  }

  #solution li span {
    font-weight: 600;
  }

  #solution li:nth-child(1) {
    background: url(../img/prevent.svg)no-repeat bottom center #fff;
    padding-bottom: 180px;
  }

  #solution li:nth-child(2) {
    background: url(../img/follow.svg)no-repeat bottom center #fff;
    padding-bottom: 180px;
  }

  #solution li:nth-child(3) {
    background: url(../img/specificaction.svg)no-repeat bottom center #fff;
    padding-bottom: 180px;
  }


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

FEATURE

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

  .display-l img {
    width: 272px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
  }

  #feature h2 {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 64px;
  }

  #feature .highlight {
    font-size: 3.2rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
  }

  #feature .highlight span {
    position: relative;
  }

  #feature .highlight span:before {
    content: "";
    display: block;
    background: #333;
    height: 84px;
    width: 3px;
    position: absolute;
    left: -56px;
    bottom: 1px;
    transform: rotate(-30deg);
  }

  #feature .highlight span:after {
    content: "";
    display: block;
    background: #333;
    height: 84px;
    width: 3px;
    position: absolute;
    right: -36px;
    bottom: 1px;
    transform: rotate(30deg);
  }

  #feature .highlight+p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
  }

  #process {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin: 64px 0 120px 0;
  }

  #process li {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    text-align: center;
    position: relative;
  }

  #process li p {
    width: 248px;
    height:90px;       
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    box-sizing: border-box;
    position: absolute;
    bottom: -70px;
    font-size: 1.3rem;
    line-height: 1.5;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  #process li:nth-child(1) p {
    left: -45px;
  }

  #process li:nth-child(2) p {
    right: -140px;
    z-index: 999;
  }

  #process li:nth-child(4) p { 
    left: -46px;
  }

  #process li h3 {
    font-weight: 500;
    font-size: 2.1rem;
    padding-top: 40px;
    letter-spacing: 0.8px;
  }

  #process li:nth-child(1) {
    background: url(../img/ico-study.svg) no-repeat center 64% #fff;
    border: 3px solid #0D9AAC;
  }

  #process li:nth-child(1) h3 {
    color: #0D9AAC;
  }

  #process li:nth-child(2) {
    background: url(../img/ico-visualyzation.svg) no-repeat center 64% #fff;
    border: 3px solid #0D47AC;
  }

  #process li:nth-child(2) h3 {
    color: #0D47AC;
  }

  #process li:nth-child(3) {
    background: url(../img/ico-identify.svg) no-repeat center 64% #fff;
    border: 3px solid #550DAC;
        position:relative;
      z-index:-1;
  }

  #process li:nth-child(3) h3 {
    color: #550DAC;
  }

  #process li:nth-child(4) {
    background: url(../img/ico-action.svg) no-repeat center 64% #fff;
    border: 3px solid #9C0DAC;
  }

  #process li:nth-child(4) h3 {
    color: #9C0DAC;
  }

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

PROCESS ANIMATION

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

#process {
  position: relative;
}

#process li {
  position: relative;
  opacity: 0;
}

#process li p {
  opacity: 0;
}

#process li::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 157px;
  width: 56px;
  height: 3px;
  background: #ccc;
  transform: scaleX(0);
  transform-origin: left;
}

#process li:last-child::after {
  display: none;
}

@keyframes itemFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubbleFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

#process.is-active li:nth-child(1) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 0s;
}

#process.is-active li:nth-child(1) p {
  animation: bubbleFade 0.2s ease forwards;
  animation-delay: 0.2s;
}

#process.is-active li:nth-child(1)::after {
  animation: lineGrow 0.2s ease forwards;
  animation-delay: 0.8s;
  z-index: -1;
}

#process.is-active li:nth-child(2) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 1.2s;
}

#process.is-active li:nth-child(2) p {
  animation: bubbleFade 0.2s ease forwards;
  animation-delay: 1.4s;
}

#process.is-active li:nth-child(2)::after {
  animation: lineGrow 0.1s ease forwards;
  animation-delay: 2s;
  z-index: -1;
}

#process.is-active li:nth-child(3) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 2.4s;
}

#process.is-active li:nth-child(3)::after {
  animation: lineGrow 0.2s ease forwards;
  animation-delay: 3s;
  z-index: -1;
}

#process.is-active li:nth-child(4) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 3.4s;
}

#process.is-active li:nth-child(4) p {
  animation: bubbleFade 0.2s ease forwards;
  animation-delay: 3.6s;
}

  /* ---------- END ANIMATION ---------- */

  #detail-feature {
    margin-bottom: 64px;
  }

  .feature-row {
    display: flex;
    align-items: stretch;
    gap: 1%;
    margin-bottom: 24px;
  }

  .box-detail-feature {
    flex: 1;
    display: flex;/
  }

  .section-detail-feature {
    width: 100%;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    box-sizing: border-box;
  }

  .section-detail-feature h3 {
    width: 240px;
    padding: 12px 8px 12px 32px;
    margin: 0 auto 24px auto;
    text-align: center;
    border-radius: 8px;
    font-size: 2.1rem;
    font-weight: 500;
  }

  .feature-study h3 {
    border: 2px solid #0D9AAC;
    color: #0D9AAC;
  }

  .section-detail-feature span {
    position: relative;
  }

  .feature-visualization h3 {
    border: 2px solid #0D47AC;
    color: #0D47AC;
  }

  .feature-identify h3 {
    border: 2px solid #550DAC;
    color: #550DAC;
  }

  .feature-action h3 {
    border: 2px solid #9C0DAC;
    color: #9C0DAC;
  }

  .section-detail-feature span:before {
    content: "";
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    left: -40px;
    top: 0;
  }

  .feature-study span:before {
    background: url(../img/ico-study.svg);
    background-size: contain;
  }

  .feature-visualization span:before {
    background: url(../img/ico-visualyzation.svg);
    background-size: contain;
  }

  .feature-identify span:before {
    background: url(../img/ico-identify.svg);
    background-size: contain;
  }

  .feature-action span:before {
    background: url(../img/ico-action.svg);
    background-size: contain;
  }

  .section-detail-feature p {
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
  }

  .section-detail-feature li {
    padding-left: 32px;
    background: url(../img/ico-circlecheck.svg) no-repeat left top;
    margin: 16px 0 0 0;
    font-weight: 400;
    line-height: 1.6;
  }

  .feature-study {
    padding-bottom: 200px;
    background: url(../img/study.svg) no-repeat center bottom #fff;
  }

  .feature-visualization {
    padding-bottom: 200px;
    background: url(../img/visualization.svg) no-repeat center bottom #fff;
  }

  .feature-identify {
    padding-bottom: 200px;
    background: url(../img/identify.svg) no-repeat center bottom #fff;
  }

  .feature-action {
    padding-bottom: 200px;
    background: url(../img/action.svg) no-repeat center bottom #fff;
  }

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

DETAIL FEATURE ANIMATION

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

#detail-feature .section-detail-feature,
#detail-feature .box-blink-arrow {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink-animation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

#tit-process.is-active + #detail-feature .section-detail-feature,
#tit-process.is-active + #detail-feature .box-blink-arrow {
  animation: fadeIn 1s forwards;
}

#tit-process.is-active + #detail-feature .feature-study {
  animation-delay: 0.2s;
}

#tit-process.is-active + #detail-feature .box-blink01 {
  animation-delay: 0.4s;
}

#tit-process.is-active + #detail-feature .feature-visualization {
  animation-delay: 0.6s;
}

#tit-process.is-active + #detail-feature .box-blink02 {
  animation-delay: 0.8s;
}

#tit-process.is-active + #detail-feature .feature-identify {
  animation-delay: 1.0s;
}

#tit-process.is-active + #detail-feature .box-blink03 {
  animation-delay: 1.2s;
}

#tit-process.is-active + #detail-feature .feature-action {
  animation-delay: 1.4s;
}

.box-blink-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-blink-arrow div {
  font-size: 1.8rem;
  transform: scale(0.7, 1);
  color: #666;
  display: inline-block;
  margin: -2px;
  opacity: 1;
}

#tit-process.is-active + #detail-feature .box-blink-arrow div {
  animation-name: blink-animation;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
}

#tit-process.is-active + #detail-feature .blink-arrow2 {
  animation-delay: 0.4s;
}

.box-blink02 {
  transform: rotate(130deg);
  position: relative;
  bottom: 10px;
}

  /* ---------- END ANIMATION ---------- */

  #detail-feature+h2 {
    margin-bottom: 24px;
  }

  .other-feature {
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items:center;
    gap:24px;
  }

  .other-feature h3 {
    font-size: 2.1rem;
    font-weight: 500;
    line-height:1.6;
    margin-bottom: 24px;
  }

  .other-feature li {
    padding-left: 32px;
    background: url(../img/ico-circlecheck.svg) no-repeat left 2px;
    margin-top: 16px;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.6;
  }

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

SUPERVISOR

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

  #supervisor .wrapper {
    padding-bottom: 0;
  }

  #detail-supervisor {
    display: flex;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    gap: 32px;
   align-items:ce
  }

  #profile-supervisor img {
    margin-bottom: 16px;
    border-radius: 8px;
  }

  #profile-supervisor h2 {
    font-size: 2.1rem;
    font-weight: 500;
    margin: 8px 0 16px 0;
  }

  #profile-supervisor {
    width: 296px;
    flex-shrink: 0;
  }

  #profile-supervisor p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  #comment-supervisor h3 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1em;
    white-space:break-spaces;
  }

  #comment-supervisor p {
    margin-bottom: 1em;
    font-size: 1.8rem;
    line-height: 1.6;
  }

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

CASE

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

  #case {
    padding-top: 88px;
  }

  #detail-case {
    position: relative;
    padding: 0 40px;
  }

  #detail-case button:hover {
    cursor: pointer;
  }

  .splide__arrow--prev {
    width: 48px !important;
    height: 48px !important;
    background: url(../img/arrow-prev.svg) no-repeat !important;
    background-size: contain !important;
    border-radius: 0 !important;
    text-indent: -999em;
    border: 0;
    position: absolute;
    left: 16px !important;
    top: 45%;
    z-index: 9999;
    opacity: 1 !important;
  }

  .splide__arrow--next {
    width: 48px !important;
    height: 48px !important;
    background: url(../img/arrow-forward.svg) no-repeat !important;
    background-size: contain !important;
    border-radius: 0 !important;
    text-indent: -999em;
    border: 0;
    position: absolute;
    right: 16px !important;
    top: 45%;
    z-index: 9999;
    opacity: 1 !important;
  }

  .section-detail-case {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    margin: 0 24px;
  }

  .section-detail-case h2 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 24px;
    position: relative;
  }

  .section-detail-case h2:before {
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(../img/ico-quote1.svg)no-repeat left top;
    position: absolute;
    left: 0;
    top: 0;
  }

  .section-detail-case h2:after {
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(../img/ico-quote2.svg)no-repeat left top;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .section-detail-case h2+p {
    margin-bottom: 24px;
    font-size: 1.5rem;
  }

  .section-detail-case h2+p span {
    padding-left: 28px;
    background: url(../img/ico-groups.svg)no-repeat left top;
    margin-left: 16px;
    background-size: contain;
  }

  .section-detail-case dl {
    border: 1px solid #ccc;
    padding: 16px;
  }

  .section-detail-case dt {
    font-size: 1.8rem;
    margin-bottom: 8px;
    padding-left: 34px;
  }

  .section-detail-case dd {
    font-size: 1.5rem;
  }

  .section-detail-case dd span {
    font-weight: 600;
  }

  .section-detail-case .case-solution {
    border-radius: 8px;
    margin-bottom: 24px;
  }

  .section-detail-case .case-solution dt {
    background: url(../img/ico-solution.svg) no-repeat left top;
  }

  .section-detail-case .case-before {
    background: #F9F5F5;
    border-radius: 8px 8px 0 0;
  }

  .section-detail-case .case-before dt {
    background: url(../img/ico-before.svg) no-repeat left top;
  }

  .section-detail-case .case-after {
    background: #F6FAF5;
    border-top: 0;
    border-radius: 0 0 8px 8px
  }

  .section-detail-case .case-after dt {
    background: url(../img/ico-after.svg) no-repeat left top;
  }

  .section-detail-case .case-solution ul {
    display: flex;
    gap: 16px;
  }

  .section-detail-case .case-solution li {
    padding-left: 28px;
    background: url(../img/ico-check.svg)no-repeat left top;
  }

  .section-detail-case .case-before li,
  .section-detail-case .case-after li {
    text-indent: -9px;
    margin-left: 15px;
    line-height: 1.7;
  }

  .section-detail-case .case-before li:not(:last-child),
  .section-detail-case .case-after li:not(:last-child) {
    margin-bottom: 8px;
  }

  .section-detail-case .case-before li:before,
  .section-detail-case .case-after li:before {
    content: "・";
  }

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

FLOW

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

  #flow .wrapper {
    padding-bottom: 0;
  }

  #flow ul {
    width: 100%;
    display: flex;
    gap: 5%;
  }

  #flow li {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    width: 30%;
    line-height: 1.7;
    box-sizing: border-box;
    text-align: center;
    position: relative;
  }

  #flow li a {
    color: #0D9AAC;
  }

  #flow li:not(:last-child):after {
    content: "";
    width: 32px;
    height: 32px;
    background: url(../img/arrow-next.svg) no-repeat right 50%;
    background-size: contain;
    display: block;
    position: absolute;
    right: -46px;
    top: 50%;
  }

  #flow li h2 {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 24px;
  }

  #flow li:nth-child(1) {
    background: url(../img/application.svg)no-repeat bottom center #fff;
    padding-bottom: 160px;
  }

  #flow li:nth-child(2) {
    background: url(../img/register.svg)no-repeat bottom center #fff;
    padding-bottom: 160px;
  }

  #flow li:nth-child(3) {
    background: url(../img/questionnaire.svg)no-repeat bottom center #fff;
    padding-bottom: 160px;
  }

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

PRICE

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

  #initial {
    background: #fff;
    padding: 0 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    width: 332px;
    height: 80px;
    text-align: center;
    margin: 0 auto 32px auto;
    position: relative;
  }

  #initial:before {
    content: "";
    display: block;
    width: 132px;
    height: 115px;
    background: url(../img/offer.svg) no-repeat;
    position: absolute;
    left: -100px;
    bottom: -33px;
  }

  #initial .item-initial {
    font-size: 2.1rem;
    position: relative;
    bottom: 4px;
  }

  #initial .price-initial {
    color: #F7D125;
    font-size: 6.4rem;
    line-height: 1;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    position: relative;
    top: 5px;
  }

  #price-detail {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
  }

  #price-detail:after {
    width: 220px;
    height: 190px;
    content: "";
    display: block;
    background: url(../img/aboard.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -50px;
    right: -60px;
  }

  @media screen and (min-width:1140px) and (max-width:1319px) {
    #price-detail:after {
    width: 170px;
    height: 147px;
    bottom: -50px;
    right: -20px;     
  }
  }

  .section-price-detail {
    width: 464px;
    background:#fff;
    border-radius:8px;
    border:1px solid #ccc;
  }

  .box-price-detail {
    color: #fff;
    text-align: center;
    padding: 24px;
    background: #0D9AAC;
    border-radius: 7px 7px 0 0;
  }

  .box-price-detail p {
    margin-bottom: 16px;
  }

  .box-price-detail p span {
    padding: 4px 8px;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-right: 8px;
  }

  .box-price-detail h2 {
    font-size: 2.2rem;
  }

  .price-container {
    padding: 24px;
    border-radius: 0 0 8px 8px;
    background: #fff;
  }

  .price-container p {
    text-align: center;
    margin-bottom: 24px;
    font-size: 5.6rem;
    line-height: 1;
    color: #0D9AAC;
    font-weight: 700;
    font-family: "Inter", sans-serif;
  }

  .price-container p .item-price {
    font-size: 1.8rem;
    color: #555555 !important;
    position: relative;
    bottom: 5px;
  }

  .price-container .price-adjust span {
    font-size: 4rem;
    position: relative;
    bottom: 4px;
  }

  .note {
    color: #555555 !important;
    font-size: 1.3rem !important;
    text-align: center;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    font-weight: 300 !important;
    letter-spacing: 1px;
  }

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

FAQ

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

  .toggle {
    padding: 32px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #efefef;
    margin-bottom: 32px;
    border: 1px solid #fff;
  }

  .active-toggle {
    background: #EDF9FB;
    border: 1px solid #ededed;
  }

  .toggle dt {
    font-size: 2.1rem;
    font-weight: 500;
    background: url(../img/arrow-bottom.svg) no-repeat right 50%;
    padding-right: 64px;
  }

  .active-toggle dt {
    background: url(../img/arrow-up.svg) no-repeat right 50%;
  }

  .toggle dt:hover {
    cursor: pointer;
  }

  .toggle dd {
    font-size: 1.5rem;
    margin-top: 24px;
    line-height: 1.7;
    display: none;
    padding-right: 64px;
  }

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

CTA

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

  .cta {
    background: #1BB9CE;
    padding: 48px 0;
    text-align: center;
  }

  .cta .button a {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 24px 0;
    width: 344px;
    margin: 16px auto 0 auto;
  }

  .cta .highlight {
    display: inline;
    position: relative;
  }

  .cta .highlight:before {
    content: "";
    display: block;
    background: #333;
    height: 22px;
    width: 1px;
    position: absolute;
    left: -16px;
    top: 0px;
    transform: rotate(-30deg);
  }

  .cta .highlight:after {
    content: "";
    display: block;
    background: #333;
    height: 22px;
    width: 1px;
    position: absolute;
    right: -16px;
    top: 0px;
    transform: rotate(30deg);
  }

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

FOOTER

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

  footer {
    padding: 48px 4%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    color: #555;
    align-items: center;
  }

  footer #left-footer {
    display: flex;
    gap: 32px;
    font-size: 1.5rem;
  }

  footer #left-footer p {
    margin-bottom: 0;
    line-height: 1;
  }

  footer ul {
    display: flex;
    gap: 24px;
  }

  footer ul li a {
    color: #0D9AAC !important;
  }

  footer #right-footer p img {
    display: inline;
    width: 152px;
    vertical-align: middle;
    margin-left: 24px;
  }

}

/* For Small Desktop */

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

HEADER

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

@media (max-width: 1230px) {
   header #logo-hrs {
    width: 120px !important;
  }

  header{
  padding:16px 4%;
  }

  header nav ul {
    display: flex;
    gap: 16px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.4px;
  }

  header nav ul li:not(:first-child):after {
    content: "";
    display: block;
    background: #ccc;
    height: 14px;
    width: 1px;
    position: absolute;
    left: -8px;
    top: 4px;
  }

  .button a {
    background: #F7D125;
    font-size: 1.2rem;
    width: 160px;
    border-radius: 100px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    text-align: center;
    margin-right: 0;
    letter-spacing:0.5px;
  }

  #login a {
    font-size: 1.2rem;
    padding-left: 24px;
    background: url(../img/ico-login.svg)no-repeat;
    background-size: contain;
    letter-spacing:0.5px;
  }

  footer #left-footer {
    display: flex;
    gap: 24px;
    font-size: 1.3rem;
  }

  footer #right-footer p  {
    font-size:1.3rem;
  }
  
}

@media screen and (min-width:960px) and (max-width:1139px) {  
  
  /***************************

HERO

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

  #hero {
    background: #1BB9CE;
    position: relative;
    height: 504px;
    overflow: hidden;
    padding: 0 4%;
  }

  #hero .wrapper {
    width: 1200px;
    height: 504px;
    margin: 0 auto;
    display: flex;
    padding: 32px 0 0 0;
    gap: 40px;
  }

  #left-hero {
    width: 660px;
    text-align: center;
  }

  #left-hero h1 #caption-head {
    font-size: 3.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    white-space: nowrap;
    display:block;
  }

#left-hero h1 #caption-head span {
    font-size: 5.0rem;
    font-weight: 600;
    background: url(../img/back-nega.svg) no-repeat;
    background-size: 100%;
    padding: 0 10px;
    position: relative;
    top: 3px;
    margin: 0 2px
  }

#left-hero h1 #tit-head {
    font-size: 4.0rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 1.5px;
  }

#left-hero h1 #tit-head span {
    font-size: 7rem;
  }

  #left-hero #intro {
    font-size: 1.5rem;
    color: #fff;
    white-space: nowrap;
    line-height: 1.6;
  }

  #left-hero #intro span {
    font-size: 1.8rem;
    font-weight: 600;
  }

  #left-hero .button {
    display: flex;
    width: 424px;
    gap: 16px;
    margin: 24px auto 0 auto;
    align-items: center;
  }

  #left-hero .button a {
    width: 300px;
    padding: 16px 0;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 auto;
  }

  #left-hero dl {
    background: url(../img/badge.svg) no-repeat;
    background-size: contain;
    width: 108px;
    height: 108px;
    box-sizing: border-box;
    color: #0D9AAC;
    font-weight: 600;
    padding-top: 13px;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
  }

  #left-hero dt:after {
    content: "";
    height: 2px;
    background: #0D9AAC;
    width: 68px;
    display: block;
    margin: 4px auto;
  }

  #right-hero {
    width: 800px;
    flex-shrink: 0;
    position: relative;
    top: 20px;
  }

  #right-hero:before {
    content: "";
    display: block;
    width: 240px;
    height: 171px;
    background: url(../img/conversation.svg)no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 13px;
    left: -40px;
  }

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

PROBLEM

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

  #problem li p {
    color: #333;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0;
  }

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

FEATURE

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

  #feature h2 {
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  #feature .highlight {
    font-size: 2.8rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
  }

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

PRICE

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

  #price-detail:after {
    width: 140px;
    height: 121px;
    content: "";
    display: block;
    background: url(../img/aboard.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -70px;
    right: -30px;
  }

}

/* For Mobile */

@media (max-width: 959px) {

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

COMMON

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

  .non-sp {
    display: none !important;
  }

  body {
    background: #f7f7f7;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    font-size: 1.5rem;
    font-feature-settings: "palt";
    letter-spacing: 1px;
  }

  .wrapper {
    max-width: 92%;
    margin: 0 auto;
    padding: 32px 0;
  }

  .display-l {
    text-align: center;
    font-size: 2.3rem;
    fontr-weight: 700;
    margin-bottom: 32px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .display-l span {
    font-size: 1.6rem;
    display: block;
    font-weight: 500;
    color: #0D9AAC;
    margin-bottom: 8px;
  }

  .button a {
    background: #F7D125;
    font-size: 1.6rem;
    width: auto;
    border-radius: 100px;
    font-weight: 500;
    display: block;
    text-align: center;
    white-space: nowrap;
  }

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

HEADER

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

  header {
    padding: 16px 4%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
  }

  header #logo-hrs {
    width: 112px;
  }

  header #right-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  header .button a {
    position: relative;
    right: 40px;
    font-size: 1.1rem !important;
    padding: 8px 12px;
    letter-spacing: 0.5px;
    position: relative;
    right: 38px;
  }

  #login a {
    font-size: 1.3rem;
    padding-left: 24px;
    background: url(../img/ico-login.svg)no-repeat;
    background-size: contain;
  }

  .menu-wrapper {
    position: relative;
  }

  .menu-icon {
    width: 24px;
    height: 24px;
    position: fixed;
    top: 21px;
    right: 4%;
    cursor: pointer;
    z-index: 999;
    display: inline-block;
  }

  .menu-icon span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #333;
    border-radius: 100px;
    transition: 0.4s;
  }

  #menu-toggle:checked+.menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  #menu-toggle:checked+.menu-icon span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked+.menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 1;
  }

  #menu-toggle:checked~.overlay {
    opacity: 997;
    pointer-events: auto;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 240px;
    height: 100%;
    background: #fff;
    transition: right 0.4s ease;
    z-index: 998;
  }

  #menu-toggle:checked~.menu {
    right: 0;
  }

  .menu ul {
    list-style: none;
    margin-top: 72px;
    display:block;
  }

  .menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.4rem;
    transition: color 0.3s;
    padding: 16px;
    display: block;
    border-bottom: 1px solid #ddd;
  }

  .login a {
    font-size: 1.3rem;
    padding-left: 32px;
    background: url(../img/ico-login.svg)no-repeat left 50%;
    ;
    background-size: 24px !important;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 16px;
  }

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

HERO

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

  #hero {
    background: #1BB9CE;
    position: relative;
    overflow: hidden;
    padding: 0 24px;
  }

  #left-hero {
    text-align: center;
  }

  #left-hero h1 #caption-head {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    white-space: nowrap;
    display:block;
  }

  #left-hero h1 #caption-head span {
    font-size: 2.6rem;
    font-weight: 600;
    background: url(../img/back-nega.svg) no-repeat left 50%;
    background-size: contain;
    padding: 6px;
    position: relative;
    top: 1px;
    margin: 0 2px
  }

  #left-hero h1 #tit-head {
    font-size: 3.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    white-space: nowrap;
    line-height: 1.2;
    display:block;
  }

  #left-hero h1 #tit-head span {
    font-size: 4.6rem;
  }

  #left-hero #intro {
    font-size: 1.3rem;
    color: #fff;
    white-space: nowrap;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  #left-hero #intro span {
    font-size: 1.6rem;
    font-weight: 600;
  }

  #hero .button {
    width: 100%;
    margin: 24px auto 0 auto;
  }

  #hero .button a {
    width: 90%;
    padding: 16px 0;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0 auto;
  }

  #hero dl {
    background: url(../img/badge.svg)no-repeat;
    background-size: contain;
    width: 88px;
    height: 88px;
    box-sizing: border-box;
    color: #0D9AAC;
    font-weight: 600;
    padding-top: 11px;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    position: absolute;
    top: -10px;
    right: -10px;
  }

  #hero dt:after {
    content: "";
    height: 2px;
    background: #0D9AAC;
    width: 52px;
    display: block;
    margin: 2px auto;
  }

  #right-hero {
    width: 100%;
    flex-shrink: 0;
    position: relative;
  }

  #right-hero:before {
    content: "";
    display: block;
    width: 140px;
    height: 100px;
    background: url(../img/conversation.svg)no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: -38px;
  }

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

EVENT

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

  #event {
    padding: 24px 4%;
  }

  #event p {
    width: 100%;
    margin: 0 auto;
  }

  #event p img{
    width:100%;
    height:auto;
  }

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

CLIENTS

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

  #clients {
    background: #fff;
    padding: 32px 0 24px 0;
    overflow: hidden;
  }

  #head-clients {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 24px;
  }

  #head-clients dl {
    display: inline-block;
    position: relative;
  }

  #clients dl:before {
    width: 14px;
    height: 33px;
    content: "";
    display: block;
    background: url(../img/wreath-left.svg)no-repeat;
    background-size: contain;
    position: absolute;
    left: -18px;
    bottom: 0;
  }

  #clients dl:after {
    width: 14px;
    height: 33px;
    content: "";
    display: block;
    background: url(../img/wreath-right.svg)no-repeat;
    background-size: contain;
    position: absolute;
    right: -18px;
    bottom: 0;
  }

  #head-clients dl * {
    display: inline-block;
  }

  #head-clients dt {
    font-size: 1.2rem;
    font-weight: 500;
  }

  #head-clients dd {
    font-size: 1.2rem;
    font-weight: 500;
  }

  #head-clients dd span {
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    position: relative;
    top: 1px;
    font-weight: 700;
    letter-spacing: 0.1px;
  }

  #head-clients dd span span {
    font-size: 1.3rem;
    position: relative;
    top: -2px;
  }

  #clients ul {
    display: flex;
    gap: 16px;
  }

  #clients li {
    width: 110px !important;
  }

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

PROBLEM

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

  #problem .wrapper {
    padding-bottom: 10px;
  }

  #problem {
    background: #1BB9CE;
    overflow: hidden;
  }

  #problem p,
  #problem h1 {
    color: #fff;
    text-align: center;
  }

  #problem p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
  }

  #problem h1 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  #problem li {
    width: 90%;

    border-radius: 8px;
    background: #fff;
    padding: 16px;
    line-height: 1.5;
    box-sizing: border-box;
    position: relative;
    margin: 0 0 40px 5%;
  }

  #problem li:nth-child(1):after {
    content: "";
    display: block;
    background: url(../img/problem-men1.svg) no-repeat;
    background-size: contain;
    width: 50px;
    height: 79px;
    position: absolute;
    bottom: -52px;
    left: -5px;
  }

  #problem li:nth-child(2):after {
    content: "";
    display: block;
    background: url(../img/problem-woman.svg) no-repeat;
    background-size: contain;
    width: 50px;
    height: 77px;
    position: absolute;
    bottom: -52px;
    right: -5px;
  }

  #problem li:nth-child(3):after {
    content: "";
    display: block;
    background: url(../img/problem-men2.svg) no-repeat;
    background-size: contain;
    width: 75px;
    height: 76px;
    position: absolute;
    bottom: -56px;
    left: -5px;
  }

  #problem li p {
    color: #333;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
  }

  #problem li p span {
    font-weight: 600;
  }

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

SOLUTION

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

  #solution {
    background: #EDF9FB;
  }

  #solution h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.4;
    margin-bottom: 24px;
    position: relative;
  }

  #solution h2 span {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
  }

  #solution .highlight span {
    position: relative;
    display: inline;
  }

  #solution .highlight span:before {
    content: "";
    display: block;
    background: #333;
    height: 22px;
    width: 2px;
    position: absolute;
    left: -14px;
    bottom: 2px;
    transform: rotate(-30deg);
  }

  #solution .highlight span:after {
    content: "";
    display: block;
    background: #333;
    height: 22px;
    width: 2px;
    position: absolute;
    right: -10px;
    bottom: 2px;
    transform: rotate(30deg);
  }

  #solution h2 img {
    width: 120px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
  }

  #solution ul {
    width: 90%;
    margin: 0 auto;
  }

  #solution li:not(:last-child) {
    margin-bottom: 24px;
  }

  #solution li {
    background: #fff;
    padding: 24px 24px 45% 24px !important;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    font-size: 1.6rem;
  }

  #solution li span {
    font-weight: 600;
  }

  #solution li:nth-child(1) {
    background: url(../img/prevent.svg)no-repeat bottom center #fff;
    background-size: 70% auto;
  }

  #solution li:nth-child(2) {
    background: url(../img/follow.svg)no-repeat bottom center #fff;
    background-size: 70% auto;
  }

  #solution li:nth-child(3) {
    background: url(../img/specificaction.svg)no-repeat bottom center #fff;
    background-size: 70% auto;
  }

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

FEATURE

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

  .display-l img {
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
    width: 40%;
  }

  #feature h2 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.6 !important;
    margin-bottom: 32px;
  }

  #feature .highlight {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 32px;
  }

  #feature .highlight+p {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  #process {
    margin-bottom: 24px;
  }

  #process li {
    margin: 0 auto 12px auto;
    width: 280px;
    position: relative;
    display: flex;
    align-items: start;
  }

  #process li p {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    box-sizing: border-box;
    font-size: 1.1rem;
    line-height: 1.5;
    z-index: 999;
    width: 160px;
    position: relative;
  }

  #process li:nth-child(1) p {
    right: 12px;
    top: 40px;
  }

  #process li:nth-child(2) p {
    right: 12px;
    top: 100px;
  }

  #process li:nth-child(4) p {
    right: 12px;
    top: 25px;
  }

  #process li h3 {
    font-weight: 500;
    font-size: 1.4rem;
    padding-top: 28px;
    width: 128px;
    height: 128px;
    border-radius: 100px;
    text-align: center;
    flex-shrink: 0;
  }

  #process li:nth-child(1) h3 {
    background: url(../img/ico-study.svg) no-repeat center 70% #fff;
    border: 3px solid #0D9AAC;
    color: #0D9AAC;
  }

  #process li:nth-child(2) h3 {
    background: url(../img/ico-visualyzation.svg) no-repeat center 70% #fff;
    border: 3px solid #0D47AC;
    color: #0D47AC;
  }

  #process li:nth-child(3) h3 {
    background: url(../img/ico-identify.svg) no-repeat center 70% #fff;
    border: 3px solid #550DAC;
    color: #550DAC;
  }

  #process li:nth-child(4) h3 {
    background: url(../img/ico-action.svg) no-repeat center 70% #fff;
    border: 3px solid #9C0DAC;
    color: #9C0DAC;
  }

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

PROCESS ANIMATION

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

#process {
    position: relative;
}

#process li {
    position: relative;
    opacity: 0;
}

  #process li p {
    opacity: 0;
  }

  #process li::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 64px;
    width: 3px;
    height: 18px;
    background: #ccc;
    transform: scaleY(0);
    transform-origin: top;
  }

  #process li:last-child::after {
    display: none;
  }

  @keyframes itemFade {
    from {
      opacity: 0;
      transform: translateY(6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes bubbleFade {
    from {
      opacity: 0;
      transform: translateY(4px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes lineGrow {
    from {
      transform: scaleX(0);
    }

    to {
      transform: scaleY(1);
    }
  }

#process.is-active li:nth-child(1) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 0s;
}

#process.is-active li:nth-child(1) p {
  animation: bubbleFade 0.2s ease forwards;
  animation-delay: 0.2s;
}

#process.is-active li:nth-child(1)::after {
  animation: lineGrow 0.2s ease forwards;
  animation-delay: 0.8s;
  z-index: -1;
}

#process.is-active li:nth-child(2) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 1.2s;
}

#process.is-active li:nth-child(2) p {
  animation: bubbleFade 0.2s ease forwards;
  animation-delay: 1.4s;
}

#process.is-active li:nth-child(2)::after {
  animation: lineGrow 0.1s ease forwards;
  animation-delay: 2s;
  z-index: -1;
}

#process.is-active li:nth-child(3) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 2.4s;
}

#process.is-active li:nth-child(3)::after {
  animation: lineGrow 0.2s ease forwards;
  animation-delay: 3s;
  z-index: -1;
}

#process.is-active li:nth-child(4) {
  animation: itemFade 0.4s ease forwards;
  animation-delay: 3.4s;
}

#process.is-active li:nth-child(4) p {
  animation: bubbleFade 0.2s ease forwards;
  animation-delay: 3.6s;
}

  /* ---------- END ANIMATION ---------- */

  #detail-feature {
    margin-bottom: 40px;
  }

  .section-detail-feature {
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    box-sizing: border-box;
  }

  .section-detail-feature {
    margin-bottom: 24px !important;
  }

  .section-detail-feature h3 {
    width: 50%;
    padding: 10px 8px 9px 32px;
    margin: 0 auto 16px auto;
    text-align: center;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .feature-study h3 {
    border: 2px solid #0D9AAC;
    color: #0D9AAC;
  }

  .section-detail-feature span {
    position: relative;
  }

  .feature-visualization h3 {
    border: 2px solid #0D47AC;
    color: #0D47AC;
  }

  .feature-identify h3 {
    border: 2px solid #550DAC;
    color: #550DAC;
  }

  .feature-action h3 {
    border: 2px solid #9C0DAC;
    color: #9C0DAC;
  }

  .section-detail-feature span:before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: -30px;
    top: -2px;
  }

  .feature-study span:before {
    background: url(../img/ico-study.svg);
    background-size: contain;
  }

  .feature-visualization span:before {
    background: url(../img/ico-visualyzation.svg);
    background-size: contain;
  }

  .feature-identify span:before {
    background: url(../img/ico-identify.svg);
    background-size: contain;
  }

  .feature-action span:before {
    background: url(../img/ico-action.svg);
    background-size: contain;
  }

  .section-detail-feature p {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 500;
  }

  .section-detail-feature li {
    padding-left: 20px;
    background: url(../img/ico-circlecheck.svg) no-repeat left 3px;
    background-size: 16px 16px;
    margin: 16px 0 0 0;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .feature-study {
    padding-bottom: 35%;
    background: url(../img/study.svg) no-repeat center bottom #fff;
    background-size: 85% auto;
  }

  .feature-visualization {
    padding-bottom: 35%;
    background: url(../img/visualization.svg) no-repeat center bottom #fff;
    background-size: 85% auto;
  }

  .feature-identify {
    padding-bottom: 35%;
    background: url(../img/identify.svg) no-repeat center bottom #fff;
    background-size: 85% auto;
  }

  .feature-action {
    padding-bottom: 35%;
    background: url(../img/action.svg) no-repeat center bottom #fff;
    background-size: 85% auto;
  }

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

DETAIL FEATURE ANIMATION

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

#detail-feature .section-detail-feature,
#detail-feature .box-blink-arrow {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink-animation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

#tit-process.is-active + #detail-feature .section-detail-feature,
#tit-process.is-active + #detail-feature .box-blink-arrow {
  animation: fadeIn 1s forwards;
}

#tit-process.is-active + #detail-feature .feature-study {
  animation-delay: 0.2s;
}

#tit-process.is-active + #detail-feature .box-blink01 {
  animation-delay: 0.6s;
}

#tit-process.is-active + #detail-feature .feature-visualization {
  animation-delay: 1.0s;
}

#tit-process.is-active + #detail-feature .box-blink02 {
  animation-delay: 1.4s;
}

#tit-process.is-active + #detail-feature .feature-identify {
  animation-delay: 1.8s;
}

#tit-process.is-active + #detail-feature .box-blink03 {
  animation-delay: 2.2s;
}

#tit-process.is-active + #detail-feature .feature-action {
  animation-delay: 2.6s;
}

.box-blink-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform:rotate(90deg);
  position:relative;
  bottom:12px;
}

.box-blink-arrow div {
  font-size: 1.4rem;
  transform: scale(0.7, 1);
  color: #666;
  display: inline-block;
  margin: -2px;
  opacity: 1;
}

#tit-process.is-active + #detail-feature .box-blink-arrow div {
  animation-name: blink-animation;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
}

#tit-process.is-active + #detail-feature .blink-arrow2 {
  animation-delay: 0.4s;
}

  /* ---------- END ANIMATION ---------- */


  #detail-feature+h2 {
    margin-bottom: 24px;
  }

  .other-feature {
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    background: #fff;
    justify-content: space-between
  }

  .other-feature h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
  }

  .other-feature li {
    padding-left: 20px;
    background: url(../img/ico-circlecheck.svg) no-repeat left 2px;
    background-size: 16px 16px;
    margin-top: 16px;
    font-weight: 400;
    font-size: 1.3rem;
  }

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

SUPERVISOR

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

  #detail-supervisor {
    display: flex;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    gap: 32px;
    flex-direction: column-reverse;
  }

  #profile-supervisor h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 8px 0 16px 0;
  }

  #section-profile {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 16px;
  }

  #profile-supervisor img {
    width: 45%;
    border-radius: 8px;
  }

  #profile-supervisor p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  #comment-supervisor h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 1em;
  }

  #comment-supervisor p {
    margin-bottom: 1em;
    font-size: 1.4rem;
    line-height: 1.6;
  }

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

CASE

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

  #detail-case {
    width: 86%;
    margin: 0 auto;
  }

  .splide__arrow--prev {
    width: 32px !important;
    height: 32px !important;
    background: url(../img/arrow-prev.svg) no-repeat !important;
    background-size: contain !important;
    border-radius: 0 !important;
    text-indent: -999em;
    border: 0;
    position: absolute;
    left: -16px !important;
    top: 45%;
    z-index: 9999;
    opacity: 1 !important;
  }

  .splide__arrow--next {
    width: 32px !important;
    height: 32px !important;
    background: url(../img/arrow-forward.svg) no-repeat !important;
    background-size: contain !important;
    border-radius: 0 !important;
    text-indent: -999em;
    border: 0;
    position: absolute;
    right: -16px !important;
    top: 45%;
    z-index: 9999;
    opacity: 1 !important;
  }

  .section-detail-case {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
  }

  .section-detail-case h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 24px;
    position: relative;
  }

  .section-detail-case h2:before {
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(../img/ico-quote1.svg)no-repeat left top;
    position: absolute;
    left: 0;
    top: 0;
  }

  .section-detail-case h2:after {
    content: "";
    display: block;
    width: 16px;
    height: 13px;
    background: url(../img/ico-quote2.svg)no-repeat left top;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .section-detail-case h2+p {
    margin-bottom: 24px;
    font-size: 1.2rem;
  }

  .section-detail-case h2+p span {
    padding-left: 28px;
    background: url(../img/ico-groups.svg)no-repeat left top;
    margin-left: 16px;
    background-size: contain;
  }

  .section-detail-case dl {
    border: 1px solid #ccc;
    padding: 16px;
  }

  .section-detail-case dt {
    font-size: 1.3rem;
    margin-bottom: 8px;
    padding-left: 24px;
  }

  .section-detail-case dd {
    font-size: 1.2rem;
  }

  .section-detail-case dd span {
    font-weight: 600;
  }

  .section-detail-case .case-solution {
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .section-detail-case .case-solution dt {
    background: url(../img/ico-solution.svg) no-repeat left 1px;
    background-size: contain;
  }

  .section-detail-case .case-before {
    background: #F9F5F5;
    border-radius: 8px 8px 0 0;
  }

  .section-detail-case .case-before dt {
    background: url(../img/ico-before.svg) no-repeat left 1px;
    background-size: contain;
  }

  .section-detail-case .case-after {
    background: #F6FAF5;
    border-top: 0;
    border-radius: 0 0 8px 8px
  }

  .section-detail-case .case-after dt {
    background: url(../img/ico-after.svg) no-repeat left 1px;
    background-size: contain;
  }

  .section-detail-case .case-solution ul {
    display: flex;
    gap: 16px;
  }

  .section-detail-case .case-solution li {
    padding-left: 21px;
    background: url(../img/ico-check.svg)no-repeat left 1px;
    background-size:18px 18px;
  }

  .section-detail-case .case-before li,
  .section-detail-case .case-after li {
    text-indent: -9px;
    margin-left: 15px;
    line-height: 1.6;
  }

  .section-detail-case .case-before li:not(:last-child),
  .section-detail-case .case-after li:not(:last-child) {
    margin-bottom: 8px;
  }

  .section-detail-case .case-before li:before,
  .section-detail-case .case-after li:before {
    content: "・";
  }

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

FLOW

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

  #flow ul {
    margin: 0 auto;
  }

  #flow li {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    box-sizing: border-box;
    text-align: center;
    position: relative;
  }

  @media (max-width: 375px) {
  #flow li {
    padding: 16px;
  }
  }

  #flow li a {
    color: #0D9AAC;
  }

  #flow li:not(:last-child) {
    margin-bottom: 48px;
  }

  #flow li:not(:last-child):after {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/arrow-next.svg) no-repeat right 50%;
    background-size: contain;
    display: block;
    position: absolute;
    right: 47%;
    bottom: -35px;
    transform: rotate(90deg);
  }

  #flow li h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 16px;
  }

  #flow li p {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  #flow li:nth-child(1) {
    background: url(../img/application.svg)no-repeat bottom center #fff;
    padding-bottom: 40%;
    background-size: 75% auto;
  }

  #flow li:nth-child(2) {
    background: url(../img/register.svg)no-repeat bottom center #fff;
    padding-bottom: 40%;
    background-size: 75% auto;
  }

  #flow li:nth-child(3) {
    background: url(../img/questionnaire.svg)no-repeat bottom center #fff;
    padding-bottom: 40%;
    background-size: 75% auto;
  }

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

PRICE

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

  #price .wrapper {
    padding-top: 0;
  }

  #initial {
    background: #fff;
    padding: 16px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    width: 60%;
    text-align: center;
    margin: 0 auto 16px auto;
    position: relative;
  }

  #initial:before {
    content: "";
    display: block;
    width: 66px;
    height: 57px;
    background: url(../img/offer.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: -20px;
    bottom: -20px;
  }

  #initial .item-initial {
    font-size: 1.4rem;
    position: relative;
    bottom: 4px;
  }

  #initial .price-initial {
    color: #F7D125;
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    position: relative;
  }

  .section-price-detail {
    width: 90%;
    margin: 0 auto 32px auto;
  }

  .box-price-detail {
    color: #fff;
    text-align: center;
    padding: 16px;
    background: #0D9AAC;
    border-radius: 8px 8px 0 0;
  }

  .box-price-detail p {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }

  .box-price-detail p span {
    padding: 2px 4px;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-right: 8px;
  }

  .box-price-detail h2 {
    font-size: 1.6rem;
  }

  .price-container {
    padding: 24px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
    background: #fff;
  }

  .price-container p {
    text-align: center;
    margin-bottom: 16px;
    font-size: 3.4rem;
    line-height: 1;
    color: #0D9AAC;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

  .price-container p .item-price {
    font-size: 1.3rem;
    color: #555555 !important;
    position: relative;
    bottom: 2px;
  }

  .price-container .price-adjust span {
    font-size: 2.4rem;
    position: relative;
    bottom: 2px;
  }

  #price-detail {
    position: relative;
  }

  #price-detail:after {
    width: 110px;
    height: 95px;
    content: "";
    display: block;
    background: url(../img/aboard.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: -10px;
    bottom: -50px;
  }

  .note {
    color: #555555 !important;
    font-size: 1rem !important;
    text-align: left !important;
    line-height: 180% !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
  }

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

FAQ

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

  .toggle {
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #efefef;
    margin-bottom: 16px;
    border: 1px solid #fff;
  }

  .active-toggle {
    background: #EDF9FB;
    border: 1px solid #eee;
  }

  .toggle dt {
    font-size: 1.4rem;
    min-height: 24px;
    font-weight: 500;
    background: url(../img/arrow-bottom.svg) no-repeat right 50%;
    background-size: 24px 24px;
    padding-right: 40px;
  }

  .active-toggle dt {
    background: url(../img/arrow-up.svg) no-repeat right 50%;
    background-size: 24px 24px;
    min-height: 24px;
  }

  .toggle dd {
    font-size: 1.4rem;
    margin-top: 16px;
    line-height: 180%;
    display: none;
  }

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

CTA

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

  .cta {
    background: #1BB9CE;
    padding: 32px 0;
    text-align: center;
  }

  .cta .button a {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 16px 0;
    width: 92%;
    margin: 16px auto 0 auto;
  }

  .cta .highlight {
    display: inline;
    position: relative;
    font-size: 1.2rem;
  }

  .cta .highlight:before {
    content: "";
    display: block;
    background: #333;
    height: 16px;
    width: 1px;
    position: absolute;
    left: -10px;
    top: 0px;
    transform: rotate(-30deg);
  }

  .cta .highlight:after {
    content: "";
    display: block;
    background: #333;
    height: 16px;
    width: 1px;
    position: absolute;
    right: -10px;
    top: 0px;
    transform: rotate(30deg);
  }

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

FOOTER

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

  footer {
    padding: 24px 4%;
    background: #fff;
    color: #555;
    text-align: center;
    font-size: 1.0rem;
  }

  footer #left-footer {
    display: flex;
    gap: 16px;
  }

  footer #left-footer img {
    width: 40px !important;
    display: block !important;
    margin: 0 auto 8px auto;
  }

  footer #left-footer ul {
    text-align: left;
    display: f
  }

  footer ul li a {
    color: #0D9AAC !important;
    display: block;
    margin-bottom: 4px;
  }

  footer #right-footer p {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }

  footer #right-footer p img {
    width: 120px;
    display: block;
    margin: 0 auto;
  }

}

/* For Tablet */

@media screen and (min-width:768px) and (max-width:959px) {

  #left-hero h1 br {
    display: none;
  }

  #left-hero #intro br:nth-of-type(2) {
    display: none;
  }

  #right-hero:before {
    content: "";
    display: block;
    width: 200px;
    height: 143px;
    background: url(../img/conversation.svg)no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: -21px;
  }

  #hero dl {
    background: url(../img/badge.svg)no-repeat;
    background-size: contain;
    width: 88px;
    height: 88px;
    box-sizing: border-box;
    color: #0D9AAC;
    font-weight: 600;
    padding-top: 11px;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    position: absolute;
    top: -10px;
    right: 20px;
  }

  #problem li {
    width: 80%;
    margin: 0 0 40px 10%;
  }

  #problem li p br {
    display: none;
  }

  #solution li br {
    display: none;
  }

  #feature .highlight br:nth-of-type(1),
  #feature .highlight br:nth-of-type(3) {
    display: none;
  }

  #feature .highlight {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
  }

  #feature .highlight span {
    position: relative;
  }

  #feature .highlight span:before {
    content: "";
    display: block;
    background: #333;
    height: 48px;
    width: 3px;
    position: absolute;
    left: -36px;
    bottom: 1px;
    transform: rotate(-30deg);
  }

  #feature .highlight span:after {
    content: "";
    display: block;
    background: #333;
    height: 48px;
    width: 3px;
    position: absolute;
    right: -24px;
    bottom: 1px;
    transform: rotate(30deg);
  }

  #feature h2 br {
    display: none;
  }

  .section-detail-feature p br {
    display: none;
  }

  .other-feature li br {
    display: none;
  }

  .other-feature img {
    width: 50%;
    margin: 24px auto 0 auto;
  }

  #flow li p br {
    display: none;
  }

  #initial {
    background: #fff;
    padding: 16px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px #efefef;
    width: 40%;
    text-align: center;
    margin: 0 auto 16px auto;
    position: relative;
  }

  #initial:before {
    content: "";
    display: block;
    width: 66px;
    height: 57px;
    background: url(../img/offer.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: -20px;
    bottom: -20px;
  }

}