/* ⇩⇩⇩20240726更新⇩⇩⇩ */

/* 変更 */
.p-product-card__thumb--240726 {
  display: flex;
  gap: 4rem;
  flex-direction: row;
  padding: 0 5rem 5rem;
}

@media screen and (max-width: 767px) {
  .p-product-card__thumb--240726 {
    flex-direction: column;
    padding: 0 2rem 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-product-card--240726 {
    padding-bottom: 3rem;
  }
  .p-product-card--240726-v2 {
    padding-bottom: 4.5rem;
  }
}

/* 追加 */
.p-product-spec {
  display: flex;
  justify-content: center;
  padding: 0 5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.p-product-spec__contents {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-product-spec__border-bottom-sp {
    border-bottom: solid 0.1rem #cccccc;
  }
}

@media screen and (min-width: 1024px) {
  .p-product-spec {
    padding: 0 10rem;
  }
}

@media screen and (min-width: 768px) {
  .p-product-spec__contents--low {
    padding-top: 1rem;
  }

  .p-product-spec__contents {
    width: 33.33%;
  }

  .p-product-spec__border-right {
    border-right: solid 0.1rem #cccccc;
  }
}

.p-product-spec__name {
  color: #38a1db;
  font-size: 2rem;
  text-align: center;
}

.p-product-spec__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9rem;
}
.p-product-spec__img--min {
  height: 7rem;
}

.p-product-spec__function {
  color: #38a1db;
  font-size: 2.4rem;
  margin-top: -2rem;
  margin-bottom: -0.5rem;
  text-align: center;
  font-weight: 700;
}

.p-product-spec__function span {
  font-size: 3.8rem;
}

.p-product-spec__annotation {
  color: #999999;
  text-align: center;
  font-size: 1.3rem;
  margin-top: -2.5rem;
}

.p-product-spec__border-bottom {
  border-bottom: solid 0.1rem #cccccc;
}

/* 25.01.14 */
.c-media iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (max-width: 1023px) {
  .l-drawer-scroll__content {
    margin-bottom: 4rem;
  }
}

/* 追従ナビ */
.c-fixed-menu {
  height: 5rem;

  .c-fixed-menu__list {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    border-top: solid 0.1rem #fff;
    border-left: solid 0.1rem #fff;
    border-right: solid 0.1rem #fff;
    transition: transform 0.35s ease-in-out 0s;
  }

  .c-fixed-menu__item {
    flex: 0 1 auto;
    width: 50%;
  }
  .c-fixed-menu__item + .c-fixed-menu__item {
    border-top: hidden;
    border-left: solid 0.1rem #fff;
  }

  /* 1024px以上 */
  @media (min-width: 1024px) {
    height: auto;

    .c-fixed-menu__list {
      flex-direction: column;
      border-top: solid 0.1rem #fff;
      border-bottom: solid 0.1rem #fff;
      border-left: solid 0.1rem #fff;
      border-right: hidden;

      right: 0;
      left: auto;
      top: 35rem;
      bottom: auto;
      width: 5rem;
    }
    .c-fixed-menu__item {
      width: 5rem;
    }
    .c-fixed-menu__item + .c-fixed-menu__item {
      border-left: hidden;
      border-top: solid 0.1rem #fff;
    }
  }
}

html:not(.js-over-once-scroll) {
  .c-fixed-menu__list {
    transform: translate3d(0, 5rem, 0);
  }

  @media (min-width: 1024px) {
    .c-fixed-menu__list {
      transform: translate3d(5rem, 0, 0);
    }
  }
}

/* 追従ナビ：ボタン */
.c-fixed-menu-btn {
  --color-instagram: #e56735;
  --color-youtube: #cb1330;
  display: flex;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 500;
  font-size: 1.6rem;
  gap: 1rem;
  width: 100%;
  height: 5rem;
  /* ホバーアニメーション */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
  border: 1px solid;

  .c-fixed-menu-btn__icon {
    color: currentColor;
    fill: currentColor;
  }

  .c-fixed-menu-btn__label {
    position: relative;
  }

  &.c-fixed-menu-btn--instagram {
    background-color: var(--color-instagram);
    border-color: var(--color-instagram);
  }

  &.c-fixed-menu-btn--youtube {
    background-color: var(--color-youtube);
    border-color: var(--color-youtube);
  }

  &:hover {
    background-color: #f5f5f5;
    text-decoration: none;
    border-color: currentColor;

    &.c-fixed-menu-btn--instagram {
      color: var(--color-instagram);
    }

    &.c-fixed-menu-btn--youtube {
      color: var(--color-youtube);
    }
  }

  .c-fixed-menu-btn__label {
    top: -0.1rem;
  }

  /* 1024px以上 */
  @media (min-width: 1024px) {
    width: 5rem;
    height: 16rem;
    flex-direction: column;

    .c-fixed-menu-btn__label {
      top: -0.3rem;
      /* 縦書き */
      white-space: pre;
      writing-mode: vertical-rl;
      display: inline-block;
    }
  }
}

/* ⇩⇩⇩20250407更新⇩⇩⇩ */
.p-people-card-wrap--two {
  margin-top: -60px;
}

.p-people-card--two {
  max-width: 47rem;
}

.p-people-card--two .p-people-card__up {
  height: 39rem;
}

.p-people-card--two .p-people-card__bottom {
  position: relative;
  z-index: 10;
}

.p-people-card--two-left {
  margin-top: 16rem;
  margin-left: auto;
  margin-right: 0;
}

.p-people-card--two-right {
  margin-left: 0;
  margin-right: auto;
}

.p-people-card--two-left .p-people-card__up-images {
  bottom: -9rem;
  right: 0;
}

.p-people-card--two-right .p-people-card__up-images {
  bottom: -9rem;
  right: 0;
}

/* 1024px以上 */
@media (min-width: 1024px) {
  .p-people-card--two-right .p-people-card__up-images {
    right: 5rem;
  }
  .p-people-card__up-image-sp {
    display: none;
  }
}

/* 1023px以下 */
@media (max-width: 1023px) {
  .p-people-card__up-image-lg {
    display: none;
  }
}

.p-product-card__inner {
  display: flex;
  align-items: flex-start;
  --gap-y: 4rem;
}

.p-product-card__inner:not(:last-child) {
  padding-bottom: var(--gap-y);
}

.p-product-card__inner + .p-product-card__inner {
  padding-top: var(--gap-y);
  border-top: dotted 0.1rem #cccccc;
}

.p-product-card__video {
  width: 49rem;
  padding-right: 4rem;
  aspect-ratio: 16 / 9;
  position: relative;
}

.p-product-card__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

.p-product-card__pickup {
  background: rgba(203, 19, 48, 0.1);
  font-size: 1.4rem;
}

.p-product-card__pickup-title {
  background: #cb1330;
  padding: 0.1rem 1.7rem;
  color: #fff;
  display: block;
}

.p-product-card__pickup-body {
  padding: 0.1rem 1.7rem;
  display: block;
}

.p-product-card__btn {
  width: 100%;
  margin-inline: auto;
}

.c-btn-primary {
  background: #cb1330;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  font-size: 1.8rem;
  border-radius: 5px;
  width: 100%;
  padding: 1rem;
  line-height: 1.4;
  border: 0.2rem solid #cb1330;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .c-btn-primary:hover {
    background: #fff;
    color: #cb1330;
    text-decoration: none;
  }
}

.c-btn-primary__i {
  height: auto;
  width: calc(22 / 18 * 1em);
  fill: currentColor;
  margin-right: 1rem;
}

.u-gray-999 {
  color: #999999;
}

@media (min-width: 1024px) {
  .p-product-card__pickup {
    display: flex;
  }
}

@media (min-width: 768px) {
  .p-product-card__main--sr40 {
    padding-right: 4rem;
  }

  .p-product-card__btn {
    max-width: 100%;
    width: 46rem;
  }

  .u-over-md-mr-n {
    margin-right: 0;
  }

  .u-over-md-pr-p {
    padding-right: 1em;
  }

  .u-over-md-pb-n {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .p-product-card__inner {
    flex-direction: column;
    --gap-y: 2rem;
  }

  .p-product-card__video {
    width: 100%;
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .c-btn-primary {
    min-height: 5rem;
    font-size: 1.4rem;
  }
}

/* ⇩⇩⇩20260123更新⇩⇩⇩ */

.p-footer-recruit-wrap{
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding-top: 25px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
}

.p-footer-recruit-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-footer-recruit-heading__label{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.c-btn-outline{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 90px;
  position: relative;
  padding-top: 15px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 15px;
  background: #00abeb;
  border-radius: 10px;

  transition: opacity .3s ease-in-out;
}

.c-btn-outline.c-btn-outline--grade{
  background: linear-gradient(to right, #E83820 0%, #F5A200 100%);
}

.c-btn-outline:before{
  --border:2px;

  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: calc(100% - (var(--border)*2));
  height: calc(100% - (var(--border)*2));
  display: block;
  border-radius: 8px;
}

.c-btn-outline:hover{
  text-decoration: none;
  opacity: 0.7;
}

.c-btn-outline__img{
  position: relative;
  z-index: 10;
  width: 100%;
}

.c-btn-outline__i{
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 20px ;
  transform: translateY(-50%);
}

.c-shadow-light{
  box-shadow: 3px 3px 5px 0 rgba(0,0,0,0.15);
}

.u-color-999999{
  color: #999999;
}

.u-text-center{
  text-align: center;
}

.u-fz18{
  font-size: 18px;
}

.u-lh120{
  line-height: 1.2;
}

.u-500{
  font-weight: 500;
}

@media (min-width:1024px) {
  .p-footer-recruit-wrap{
    padding-top: 35px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 40px;
  }

  .p-footer-recruit-heading__label{
    font-size: 24px;
  }

  .c-btn-outline{
    padding-left: 50px;
    padding-right: 50px;
  }
}
