
/*****************************************************
		Root
******************************************************/
:root {
  /* Color */
  --color-main: 0, 160, 233;
  --color-sub: 0, 110, 190;
  --color-dark: 42, 68, 94;
  --color-accent: 94, 180, 30;
  --color-combi: 233, 110, 168;

  --color-corevalue: #1d5b95;

  /*　Hover　*/
  --color-main-hover: 75, 182, 233;
  --color-dark-hover: 65, 112, 159;
  --color-accent-hover: 124, 206, 63;
  --color-combi-hover: 192, 72, 125;

  /* Font Size　*/

  --font-size-p02: clamp(1rem, 5vw, 1.5rem);
  /* 24px相当 */
  --font-size-p03: clamp(1.4rem, 5vw, 1.88rem);
  /* 30px相当 */
  --font-size-p04: clamp(2rem, 5vw, 2.25rem);
  /* 36px相当 */
  --font-size-p05: clamp(2.4rem, 5vw, 3rem);
  /* 48px相当 */
  --font-size-p06: clamp(3.2rem, 10vw, 3.75rem);
  /* 60px相当 */
  --font-size-p07: clamp(3.5rem, 10vw, 4.5rem);
  /* 72px相当 */
  --font-size-p08: clamp(4.7rem, 10vw, 5.31rem);
  /* 80px相当 */

  /* Width */
  --max-width-xxl: 1500px;
  --max-width-xl: 1280px;
  --max-width-lg: 1024px;
  --max-width-rg: 960px;
  --max-width-md: 768px;
  --max-width-sm: 640px;
}
@media (max-width: 1024px) {
  :root {
    --font-size-p02: clamp((1rem * 0.87), 5vw, (1.5rem * 0.87));
    /* 24px相当 */
    --font-size-p03: clamp((1.4rem * 0.85), 5vw, (1.88rem * 0.85));
    /* 30px相当 */
    --font-size-p04: clamp((2rem * 0.85), 5vw, (2.25rem * 0.85));
    /* 36px相当 */
    --font-size-p05: clamp((2.4rem * 0.85), 5vw, (3rem * 0.85));
    /* 48px相当の70％ */
    --font-size-p06: clamp((3.2rem * 0.85), 10vw, (3.75rem * 0.85));
    /* 60px相当 */
    --font-size-p07: clamp((3.5rem * 0.8), 10vw, (4.5rem * 0.8));
    /* 72px相当の70％ */
    --font-size-p08: clamp((4.7rem * 0.8), 10vw, (5.31rem * 0.8));
    /* 85px相当の70％ */
  }
}
@media (max-width: 768px) {
  :root {
    --font-size-p03: clamp((1.4rem * 0.7), 5vw, (1.88rem * 0.7));
    /* 30px相当 */
    --font-size-p04: clamp((2rem * 0.7), 5vw, (2.25rem * 0.7));
    /* 36px相当 */
    --font-size-p05: clamp((2.4rem * 0.7), 5vw, (3rem * 0.7));
    /* 48px相当の70％ */
    --font-size-p06: clamp((3.2rem * 0.7), 10vw, (3.75rem * 0.7));
    /* 60px相当 */
    --font-size-p07: clamp((3.5rem * 0.7), 10vw, (4.5rem * 0.7));
    /* 72px相当の70％ */
    --font-size-p08: clamp((4.7rem * 0.7), 10vw, (5.31rem * 0.7));
    /* 85px相当の70％ */
  }
}
@media (max-width: 640px) {
  :root {
    --font-size-p05: clamp((2.4rem * 0.6), 5vw, (3rem * 0.6));
    /* 48px相当の70％ */
    --font-size-p06: clamp((3.2rem * 0.5), 10vw, (3.75rem * 0.5));
    /* 60px相当 */
    --font-size-p07: clamp((3.5rem * 0.5), 10vw, (4.5rem * 0.5));
    /* 72px相当の70％ */
    --font-size-p08: clamp((4.7rem * 0.5), 10vw, (5.31rem * 0.5));
    /* 85px相当の70％ */
  }
}


/*****************************************************
		ページ内共通
******************************************************/
html {
  scroll-behavior: smooth;
}
html,
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ",
    sans-serif;
}
.section-py {
  padding-block: 6.5rem;
}
.section-pb {
  padding-bottom: 6.5rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;

}

.btn--corevalue {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  max-width: 80vw;
  height: 50px;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 3rem;
  text-decoration: none;
}
.btn--corevalue:hover {
  text-decoration: underline;
}
.btn--corevalue__white {
  color: var(--color-corevalue);
  background: #fff;
  border: solid 2px var(--color-corevalue);
}
.btn--corevalue__blue {
  color: #fff;
  background: var(--color-corevalue);
  border: solid 2px #fff;
}

@media (max-width: 767px) {
  .section-py {
    padding-block: 6.25rem;
  }
  .section-pb {
    padding-bottom: 6.25rem;
  }
}

/*****************************************************
		メニュー
******************************************************/

/* オーバーレイ */
.navOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

body:has(.show) .navOverlay,
body:has(.collapsing) .navOverlay {
  opacity: 1;
  visibility: visible;
}

.corevalue-nav {
  background-color: #fff;
  border-bottom: 1px solid #dedede;

}
.nav-link,
.nav-link:link,
.nav-link:visited {
  color: var(--color-corevalue) !important;
}
.nav-item {
  font-weight: bold;
}

/* ハンバーガーを右上に固定 */
.navbar-light .navbar-toggler {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: #fff;
  border-color: #fff;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (min-width: 768px) {
  .navbar-toggler {
    position: static;
  }
}
@media (max-width: 767px) {
  .corevalue-nav {
    background-color: #2a445e;
    border-bottom: none;
  }
  .position-top-sp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    z-index: 1050;
  }

  .navbar {
    background-color: transparent;
    transition: 0.2s all;
  }
  .nav-item {
  }

  body:has(.show) .navbar,
  body:has(.collapsing) .navbar {
    padding-top: 0;
    background-color: #2a445e;
  }
  .nav-item {
    height: 56px;
  }
  .nav-item__bg {
    border-bottom: 1px solid #fff;
  }
  .nav-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px dotted #333;
  }
}

/*****************************************************
		メインビジュアル
******************************************************/


.corevalue-mv-wrap {
  position: relative;
  background-color: #2aaae1;
  background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 12px,
      rgba(83, 182, 234, 1) 12px,
      rgba(83, 182, 234, 1) 13px
    ),
    repeating-linear-gradient(
      rgba(42, 170, 225, 1) 0,
      rgba(42, 170, 225, 1) 12px,
      rgba(83, 182, 234, 1) 12px,
      rgba(83, 182, 234, 1) 13px
    );
}
.corevalue-head {
}
.header_logo {
  position: absolute;
  top: 0;
  z-index: 1100;
  width: fit-content;
  height: 56px;
  margin: 0;
}
.header_logo img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .header_logo {
    position: fixed;
  }
  .header_logo img {
      width: 100px;
  }
}



.corevalue-mv {
  /* display: grid;
  grid-template-columns: 600px auto;
  grid-template-rows: auto;
  justify-content: start;
  align-content: center; */
  aspect-ratio: 1366 / 520;
  width: 100%;
  max-width: 1366px;
  max-height: 520px;
  margin: 0 auto;
  background-image: url(../img/main-visual@2x.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.corevalue-mv-msg {
  display: grid;
  padding-inline: clamp(3rem, 0.173rem + 5.65vw, 5rem);
}
.corevalue-mv-ttl {
  position: relative;
  padding-top: clamp(7.8rem, 5.765rem + 4.07vw, 9.24rem);
  font-size: clamp(1.95rem, 0.042rem + 3.82vw, 3.3rem);
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-weight: bold;
}

.corevalue-mv-ttl-label {
  padding: 0.4em 1em;
  width: max-content;
  background-color: #fff;
  color: #333;
  font-size: 0.45em;
  font-weight: normal;
  letter-spacing: normal;
}
.corevalue-mv-ttl .corevalue-mv-ttl-label:nth-child(1) {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(calc(-1 * clamp(2.4rem, -0.992rem + 6.78vw, 4.8rem)), calc(-1 * clamp(-2.4rem, -5.227rem + 5.65vw, -0.4rem))) rotate(9deg);
}
.corevalue-mv-ttl .corevalue-mv-ttl-label:nth-child(2) {
  display: block;
  position: absolute;
  top: 3.3em;
  left: 50%;
  transform: translate(calc(-1 * clamp(6rem, -1.067rem + 14.13vw, 11rem)), calc(-1 * clamp(-2.5rem, -4.903rem + 4.81vw, -0.8rem))) rotate(-8deg);
}
.corevalue-mv-text {
}
.corevalue-mv-text span {
  padding: 0.5rem clamp(1.2rem, 0.069rem + 2.26vw, 2rem);
  background-color: #2a445e;
  font-size: clamp(1rem, -0.131rem + 2.26vw, 1.8rem);
  color: #fff;
  border-radius: 9999px;
}

@media (max-width: 991px) {
  .corevalue-mv-wrap {
    /* padding-top: 32px; */
  }
}

@media (max-width: 767px) {
  .corevalue-mv {
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    align-content: start;
  }
  .corevalue-mv-wrap {
    /* padding-top: 80px; */
    background-color: #2aaae1;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 9px,
        rgba(83, 182, 234, 1) 9px,
        rgba(83, 182, 234, 1) 10px
      ),
      repeating-linear-gradient(
        rgba(42, 170, 225, 1) 0,
        rgba(42, 170, 225, 1) 9px,
        rgba(83, 182, 234, 1) 9px,
        rgba(83, 182, 234, 1) 10px
      );
    /* filter: blur(1px) */
  }
  .corevalue-mv {
    aspect-ratio: 750 / 1224;
    max-height: 800px;
    margin-top: 56px;
    background-image: url(../img/main-visual-sp.png);
    background-position: center bottom;
    background-size: contain;
  }

  .corevalue-mv-msg {
    padding-top: clamp(0rem, -3rem + 12.8vw, 3rem);
    padding-inline: 1rem;
  }

  .corevalue-mv-ttl {
    font-size: clamp(2.35rem, 1.2rem + 4.91vw, 3.5rem);
  }
.corevalue-mv-ttl .corevalue-mv-ttl-label:nth-child(1) {
  transform: translate(calc(-1 * clamp(5rem, 4rem + 4.27vw, 6rem)), calc(-1 * clamp(-5rem, -6.5rem + 6.4vw, -3.5rem))) rotate(-7deg);
}
.corevalue-mv-ttl .corevalue-mv-ttl-label:nth-child(2) {
  transform: translate(calc(-1 * clamp(10rem, 6rem + 17.07vw, 14rem)), calc(-1 * clamp(2rem, -2.5rem + 19.2vw, 6.5rem))) rotate(8deg);
}
.corevalue-mv-text span {
  /* padding: 0.5rem clamp(1.2rem, 0.069rem + 2.26vw, 2rem); */
  font-size: clamp(1rem, 0.45rem + 2.35vw, 1.55rem);
}

}

@media (max-width: 580px) {

  .corevalue-mv {
    max-height: 750px;
  }
}

.corevalue-materials {
  background-color: var(--color-corevalue);
}

/*****************************************************
		about
******************************************************/

.about {
  background-color: #E4F5FC;
}
.category-group {
  position: relative;
}
.category-group-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  font-size: clamp(1.75rem, 1.467rem + 0.57vw, 1.95rem);
  font-weight: bold;
}

.category-list {
  padding: 4rem 3.375rem 3.75rem;
  padding: 3rem 2.75rem 2.75rem;
  padding: clamp(3rem, 1.587rem + 2.83vw, 4rem) clamp(2.75rem, 1.867rem + 1.77vw, 3.375rem) clamp(2.75rem, 1.337rem + 2.83vw, 3.75rem);
}
.category-list-li {
  font-size: clamp(1.2rem, 0.776rem + 0.85vw, 1.5rem);

}


.itdept {
  padding-inline: 3.375rem  ;
  border-radius: 15px;
}
.itdept-ttl {
  color: var(--color-corevalue);
}
.itdept-list {
  column-gap: 1rem;
  row-gap: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #fff;

}
.itdept-list-li {
  padding: 0.7em 1.65em 0.65em;
  list-style-type: none;
  background-color: #758F96;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
}

.usecase {
  background-color: #fff;
  border: 2px solid #7AAFD1;
}
.usecase-ttl {
  padding: 14px 40px 16px;
  background-color: var(--color-corevalue);
  border-radius: 9999px;
  color: #fff;
}
.usecase-list {
  column-gap: 1rem;
  row-gap: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 10px,
      rgba(236, 242, 242, 1) 10px,
      rgba(236, 242, 242, 1) 11px
    ),
    repeating-linear-gradient(
      transparent 0,
      transparent 10px,
      rgba(236, 242, 242, 1) 10px,
      rgba(236, 242, 242, 1) 11px
    );
}
.usecase-list-li {
  width: fit-content;
  padding: 0.25rem 1rem;
  list-style-type: none;
  background-color: #fff;
  border: 1px solid var(--color-corevalue);
  border-radius: 5px;
  color: var(--color-corevalue);
  font-size: clamp(1.125rem, 0.772rem + 0.71vw, 1.375rem);

}

@media (max-width: 767px) {

  .category-group-ttl {
    font-size: 1.5rem
  }
  .category-list {
    padding: 50px 30px 40px;
  }
  .category-list-li {
    flex: 1 1 auto;
    text-align: center;
    font-size: 1.125rem;
  }
  .itdept {
    padding-inline: 1.5rem
  }
  .itdept-list-li {
    padding: 10px 10px;
  }

  .usecase-list {
      column-gap: 0.75rem;
      row-gap: 0.75rem;
  }
  .usecase-list-li {
    font-size: clamp(0.9rem, 0.685rem + 0.92vw, 1.125rem);
  }
}

.concept {
  width: 100%;
  max-width: 1404px;
  padding-inline: 1rem;
  margin-inline: auto;
}
.concept-ttl {
  margin-bottom: 3.5rem;
  font-size: clamp(1.75rem, 1.467rem + 0.57vw, 1.95rem);
  font-weight: bold;
  color: var(--color-corevalue);
}
.concept-img-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  justify-content: center;
  align-items: stretch;
}
.concept-img {
  padding-block: min(40px, 3vw);
}
.concept-img-status {
  font-size: clamp(2.125rem, 0.712rem + 2.83vw, 3.125rem);
  font-weight: bold;
}

.concept-before {
  background-color: #E6E6E6;
  color: #666666;
}
.concept-after {
  position: relative;
  background: linear-gradient(180deg,rgba(46, 160, 233, 0.5) 0%, rgba(115, 220, 242, 0.5) 100%);
  color: #fff;
}

.concept-after::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-45%, -40%);
  width: 5vw;
  max-width: 54px;
  aspect-ratio: 54 / 105;
  background-image: url(../img/arrow-ba.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

}

@media (max-width: 1399px) {
  .concept-img {
    padding-inline: min(64px, 4vw);
  }
}
@media (max-width: 767px) {

  .concept-img-wrap {
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
  }
  .concept-img {
  padding-block: min(40px, 4vw);
    padding-inline: 1vw;
  }
  .concept-ttl {
    margin-bottom: 2.4rem;
    font-size: 1.5rem
  }
  .concept-img-status {
    font-size: clamp(2rem, 1.402rem + 2.55vw, 2.625rem);
  }
  .concept-after::after {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 8vw;
  
  }
}
/*****************************************************
		features
******************************************************/

.features {
  background-image: url(../img/feature-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.features-row:not(:las) {
  margin-bottom: 5rem;
}
.features-ttl {
  /* font-size: 2.125rem; */
  font-size: var(--font-size-p05);
  color: #1D64A5;
  font-weight: bold;
}
.features-msg {
  position: relative;
  padding: clamp(2.75rem, 2.043rem + 1.41vw, 3.25rem) clamp(1.75rem, 0.69rem + 2.12vw, 2.5rem) clamp(2rem, 1.293rem + 1.41vw, 2.5rem);
  margin-left: 3.2rem;
  background-color: #fff;
    border: 1px solid rgba(236, 242, 242, 1);
    box-shadow: -10px 10px 0 rgba(203, 224, 245, 1);
    z-index: 1;
}
.features-msg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: #fff;
  z-index: -1;
}

.features-msg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 10px,
      rgba(236, 242, 242, 1) 10px,
      rgba(236, 242, 242, 1) 11px
    ),
    repeating-linear-gradient(
      transparent 0,
      transparent 10px,
      rgba(236, 242, 242, 1) 10px,
      rgba(236, 242, 242, 1) 11px
    );
  z-index: -1;
}

.features-msg__right {
  margin-left: 0;
  margin-right: 3.2rem;
  box-shadow: 10px 10px 0 rgba(203, 224, 245, 1);

}
.features-header {
  display: grid;
  grid-template-columns: 78px auto;
  grid-template-rows: auto;
  gap: 1rem;
}
.head-number {
  display: inline-block;
  padding-top: 0.5rem;
  text-align: center;
  font-size: clamp(3.875rem, 3.168rem + 1.41vw, 4.375rem);
  line-height: 1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0px;
  color: #2EA0E9;
}
.head-text {
  font-weight: bold;
  font-size: clamp(1.5rem, 0.97rem + 1.06vw, 1.875rem);
  line-height: 1.4em;
  color: #1D64A5;
}
.features-text {
  font-size: 1.125rem;
  line-height: 1.8;
}
.features-img {
  width: 95%;
}
@media (max-width: 991px) {

  .features-msg {
    margin-left: 0;
  }

  .features-msg__right {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {

/* .features-ttl {
  font-size: clamp(1.5rem, 0.902rem + 2.55vw, 2.125rem);
} */

.features-header {
  grid-template-columns: 64px auto;
}
.head-number {
  font-size: 3rem;
}
.head-text {
  font-size: 1.25rem;
}

.features-text {
  font-size: 1rem;
}
  .features-msg {

  padding: 1.75rem 0.75rem 1rem;
    /* margin-left: 2rem; */
    margin-inline: 1rem;
  }

  .features-msg__right {
    /* margin-left: 0;
    margin-right: 2rem; */

    margin-inline: 1rem;
  }
  .features-img {
    width: 75%;
  }
}

/*****************************************************
		advantages
******************************************************/

.advantages-card {
  padding: 35px 30px 24px;
  background: transparent linear-gradient(180deg, #41CAEE 0%, #2EA0E9 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 15px;
  color: #fff;
}
.advantages-icon {
  width: 25%;
  max-width: 75px;
  margin-inline: auto;
}
.advantages-ttl {
  font-size: 1.375rem;
}
.advantages-msg {
}

/*****************************************************
		section--features _top
******************************************************/

.section--features {
  background-color: #E4F5FC;
}
.section--features-cont {
    max-width: var(--max-width-xl);
    margin: auto;
    padding: 4rem 0;
}
.section-title {
    padding-top: 1.2rem;
    color: rgb(var(--color-main));
    font-size: var(--font-size-p05);
    font-weight: 600;
    text-align: center;
    /* background-image: url(../imgs/h2.svg); */
    background-position: center top;
    background-size: 5rem;
    background-repeat: no-repeat;
}
.block-movie {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    gap: 2%;
    margin-top: 4rem;
}

.section--movie-right {
    position: relative;
    display: block;
    max-width: 720px;
    width: 100%;
    height: 100%;
    height: fit-content;
    margin: auto;
}
.section--movie-right::after {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: flex;
    font-family: bootstrap-icons;
    font-size: calc(100vw * 0.65 / 3 * 2 * 0.15);
    font-size: clamp(3em, 10vw, 100px);
    color: rgba(255, 255, 255, 0.8);
    content: '\F4F3';
    text-decoration: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.block-movie-caption {
    margin-top: 1rem;
    text-align: center;
}
.section--movie-thumb {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .popup-vimeo {
        margin-top: 0;
    }
}
@media only screen and (max-width: 768px) {
    .section--movie-left, .section--2col-left, .section--movie-right {
        width: 100%;
    }
}
@media only screen and (max-width: 540px) {
  .block-movie {
      flex-direction: column;
      width: 90%;
      justify-content: center;
      margin: 2rem auto 0;
  }
}


/*****************************************************
		フッター
******************************************************/
.weblink-logo {
  width: 50%;
  max-width: 350px;
}
.corevalue-footer {
  padding: 60px 0;
  background-color: #2a445e;
}
.corevalue-footer-ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 50%;
}
.corevalue-footer-li {
  list-style-type: none;
}
.corevalue-footer-link {
  align-items: center;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.corevalue-footer-link:hover {
  text-decoration: underline;
}
.arrow {
  display: block;
  margin-right: 12px;
}
.copyright {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .corevalue-footer {
    padding: 24px 0;
  }
  .corevalue-footer-ul {
    display: block;
    font-size: 2.2vw;
  }
  .copyright {
    margin-top: 24px;
  }
}

/*****************************************************
		ヘルパー
******************************************************/
.hp-hover-line {
  position: relative;
  /* background-color: rgba(29, 91, 149, 0.05); */
}
.hp-hover-line:after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(var(--color-main));
  transform-origin: center;
  transform: scaleX(0);
  transition: 0.1s all ease-out;
}

.hp-hover-line:hover:after,
.hp-hover-line.active:after {
  transform: scaleX(1);
}

.hp-arrow-cta {
  position: relative;
  display: inline-block;
  width: 10.5px;
  height: 6.2px;
}

.hp-arrow-cta::before,
.hp-arrow-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--color-corevalue);
  transform-origin: 50% calc(100% - 1px);
}
.hp-arrow-cta_right {
  width: 6.2px;
  height: 10.5px;
}

.hp-arrow-cta_right::before,
.hp-arrow-cta_right::after {
  top: calc(50% - 1px);
  right: 0;
  left: auto;
  bottom: auto;
  width: 8px;
  height: 2px;
  transform-origin: calc(100% - 1px) 50%;
}
.hp-arrow-cta::before {
  transform: rotate(45deg);
}

.hp-arrow-cta::after {
  transform: rotate(-45deg);
}

.hp-triangle {
  display: inline-block;
  width: 12px;
  height: 16px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.hp-bgc-corevalue {
  background: var(--color-corevalue);
}
.hp-bgc-white {
  background: white;
}
.hp-text-deco__line {
  background: linear-gradient(transparent 70%, #EED76F 70%);
}

@media (max-width: 991px) {
  .hp-display-none-lg {
    display: none;
  }
}

@media (max-width: 767px) {
  .hp-hover-line:after {
    content: none;
  }
  .hp-display-contents-sp {
    display: contents;
  }
  .hp-display-none-sp {
    display: none;
  }
}


/*****************************************************
		popup override
******************************************************/
.fix_banner.fix_banner__longtext .banner_block .fb .fb_left img {
    margin-top: 0px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.corevalue-popup.fix_banner {
  z-index: 1100;
}
.corevalue-popup .hp-btnClose {
  z-index: 1110;
}
@media screen and (max-width: 767px) {
    .fix_banner.fix_banner__longtext .banner_block .fb .fb_left img {
        width: 75px;
    }
  .corevalue-popup.fix_banner {
    z-index: 1019;
  }
  .corevalue-popup .hp-btnClose {
    z-index: 1019;
  }
}