@charset "UTF-8";
:root {
  --main-color: #035159;
  --sub-color: #068C5A;
  --accent-color: #00c981;
  --border-color: #F4F5F5;
  --content-max-width: 1100px;
}
main .heading {
   font-family: "Urbanist", sans-serif;
   font-weight: 600;
    --min-size: 36;
    --max-size: 72;
    font-size: var(--clamp-size);
    line-height: 1;
}

/* セクションサブタイトル */
.sectionSubtitle {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-top: 0.5rem;
}
.sectionSubtitle::before {
  content: '';
  display: block;
  width: 1em;
  height: 2px;
  background-color: var(--main-color);
}

.is-center {
  justify-content: center;
}

/* 一覧を見るリンク */
.viewAllLink {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 1rem;
  color: var(--main-color);
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.viewAllLink:hover .viewAllIcon {
  transform: translateX(0.5rem);
}

.viewAllText {
  font-size: 1.6rem;
}

.viewAllIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #068c5a;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.viewAllIcon .arrow {
  display: block;
  position: relative;
  width: 1.5rem;
  height: 1rem;
}

.viewAllIcon .arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: #fff;
  transform: translateY(-50%);
}

.viewAllIcon .arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.viewAllLink:hover {
  opacity: 1;
}

.viewAllLink.is-sp {
  display: flex;
  margin-inline: auto;
  margin-top: 3rem;
}
.viewAllLink.is-pc {
  display: none;
}

.fvHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerLogo {
    position: relative;
    display: block;
    width: clamp(14rem, 15vw, 16rem); 
    aspect-ratio: 150 / 40; 
    overflow: hidden; 
    flex-shrink: 0;
}

.headerLogo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.logoWhite {
    z-index: 2;
}

.logoGreen {
    z-index: 1;
    display: block;
}
@media (width >= 769px) {
  .fvHeader {
  padding: 2rem;
}
}

.headerControls {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 5rem;
  overflow: hidden;
  width: 240px;
  justify-content: flex-end;
}

.controlsGreen,
.controlsWhite {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.controlsGreen {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  justify-content: flex-end;
  pointer-events: auto;
}

.controlsGreen .headerButton {
  background: var(--main-color);
  color: #fff;
}
.controlsGreen .menuTrigger {
  border: 1px solid var(--main-color);
}
.controlsGreen .menuTriggerBar {
  background: var(--main-color);
}

.controlsWhite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transform: translateY(0);
  pointer-events: auto;
  justify-content: flex-end;
}

.home .controlsWhite .headerButton {
  background: var(--main-color);
  color: #fff;
}
.home .controlsWhite .menuTrigger {
  border: 1px solid #fff;
}
.home .controlsWhite .menuTriggerBar {
  background: #fff;
}

.fvSection {
  height: 100vh;
  position: sticky;
  top: 0;

    z-index: 1;
  overflow: hidden;
}

.fvVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100vh;
  object-fit: cover; 
  z-index: -1;

  /* 追加 */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.fvContent {
  position: absolute;
  bottom: 8rem;
  left: 4rem;
  z-index: 5;
  color: #fff;
  opacity: 0; 
  transition: opacity 1s ease;

  @media (width >= 769px) {
      bottom: 5rem;
  }
}
.fvContent.is-loaded {
    opacity: 1;
}
.fvTextImages {
  position: relative;
  width: 61.6875vw; 
  max-width: 987px; 
  z-index: 2;
}
.empoweringGrowthImg {
  width: 100%;
}
.fvSubtitle {
  --min-size: 18;
  --max-size: 24;
  font-size: var(--clamp-size);
  margin-top: 1rem;
}
.empoweringGrowthImg.is-pc {
    display: none;
}
.empoweringGrowthImg.is-sp {
    display: block;
}

@media (width >= 769px) {
  .empoweringGrowthImg.is-sp {
    display: none;
  }
  .empoweringGrowthImg.is-pc {
    display: block;
  }
}
/* 虹彩画像 */
.rainbowOverlayImg {
    position: absolute;
    top: 20rem;
    left: -15rem;
    width: 50vw;
    height: 50vh;
    opacity: 0.7;
    mix-blend-mode: screen;
    z-index: 3;
    opacity: 0;
    
 animation: fadeInRainbow 1s ease forwards;
    animation-play-state: paused;
}

.rainbowOverlayImg.is-loaded {
    animation-delay: 0.5s; 
    animation-play-state: running; 
}

@keyframes fadeInRainbow {
  to {
    opacity: 0.7;
  }
}
@media (width >= 769px) {
  .rainbowOverlayImg {
    width: 70vw;
    height: 70vh;
  }
}

/* Layer 2: イントロ (透かし背景) */

.introSection {
  position: relative;
  z-index: 20;
  background-color: rgba(7, 217, 140, 0.5);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  box-sizing: border-box;
}

.otherContent {
  position: relative;
  z-index: 20;
  background: #fff;
}
/* intro */
.introSection {
  position: relative;
  z-index: 20; /* FV(Layer 1)より手前に配置 */
  background-color: rgba(7, 217, 140, 0.5);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  
  padding: 6rem 0;
  box-sizing: border-box;
  overflow: hidden;
}

.introContainer {
  position: relative;
  text-align: center;
}

.introTextContent {
  text-align: center;
  color: #fff;
}

.introPreTitle {
  --min-size: 20;
  --max-size: 24;
  font-size: var(--clamp-size);
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}
.introTextContent .heading {
  --min-size: 36;
  --max-size: 48;
  font-size: var(--clamp-size);
  color: #fff;
  line-height: 1.3;
  font-weight: bold;
}
.introSubTitle {
  --min-size: 28;
  --max-size: 32;
  font-size: var(--clamp-size);
  font-weight: 500;
  margin-top: 3.5rem;
}
.introDescription {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  margin-top: 2rem;
  font-weight: 500;
}
@media (width >= 769px) {
  .introSubTitle {
  margin-top: 7rem;
}
.introDescription {
  margin-top: 4rem;
}
}

.introButtonText {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  color: #fff;
}
.introButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  color: var(--main-color);
  font-weight: bold;
  padding: 0.8em 4em 0.8em 2em;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 3rem;
  text-decoration: none;
}
.introButtonIcon {
  width: 4.8rem;
  height: 4.8rem;
}
.introButton:hover {
  opacity: 0.8;
}
.introButtonIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.introButtonIcon::before {
  content: '';
  width: 1rem;
  height: 0.2rem;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%); 
}
.introButtonIcon::after {
  content: '';
  width: .9rem;
  height: .9rem;
  border-top: 0.2rem solid var(--main-color);
  border-right: 0.2rem solid var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg); 
}
.introButton:hover {
  opacity: 0.8;
}

.introButton:hover .introButtonIcon {
  transform: translateY(-50%) translateX(0.5rem);
}

.introImagesPC {
  display: none;
}
.introImagesSP {
  overflow: hidden;
  padding: 3rem 0;
  user-select: none;
  pointer-events: none;
  width: 100vw; 
  margin-left: calc(50% - 50vw);
}
.introImagesScroller {
  display: flex;
  width: fit-content;
  transform: translateX(0);
  animation: scroll var(--dur, 20s) linear infinite;
  animation-play-state: paused; /* JSで再生開始 */
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(var(--shift, -1000px) * -1)); }
}

.introImagesList {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.introImagesSP img {
  height: 20rem; 
  flex-shrink: 0;
  object-fit: cover; 
}

@media (width >= 769px) {  

  .introSection {
    overflow: visible;
  }

  .introContainer {
    position: relative;
    z-index: 10;
  }
  
  .introTextContent {
    max-width: 60ch; /* (60文字分 */
    margin-inline: auto;
    position: relative;
    z-index: 10;
  }
  .introDescription {
    text-align: center;
  }

  .introImagesSP {
    display: none;
  }

  .introImagesPC {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }
  .introImagesPC img {
    position: absolute;
    height: auto;
    border-radius: 8px;
  }
  
  .introImgL1 {
    max-width: 15rem;
    top: 10rem;
    left: 15%;
  }
  .introImgL2 {
    max-width: 27rem;
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 3;
  }
  .introImgL3 {
    max-width: 18rem;
    top: 68%;
    left: 17%;
    z-index: 2;
  }
  .introImgR1 {
    max-width: 19rem;
    top: 16rem;
    right: 14%;
  }
  .introImgR2 {
    max-width: 28rem;
    top: 48%;
    right: 2%;
  }
}
/* お悩み別 */
.worriesSection {
  position: relative;
  z-index: 20; 
  
  padding-block: 4rem;
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #EFEFEF 100%) 0% 0% no-repeat padding-box;
}
.worriesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.worriesText .heading {
  margin-bottom: 0.5rem;
}

.worriesSubtitle {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.worriesSubtitle::before {
  content: '';
  display: block;
  width: 1em;
  height: 2px;
  background: var(--main-color);
}

.worriesList {
  display: grid;
  gap: 2rem;
}
.worriesList .viewAllLink {
  width: 100%;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px #0000001A;
  border-radius: 8px;
  padding: 1.5rem 2rem;
}
.worriesList .viewAllText  {
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
}

@media (width >= 769px) {  
  .worriesSection {
    padding-block: 6rem;
  }
  .worriesGrid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
  }
  .worriesListContainer {
    padding: 3rem; 
  }
}

.mediaCtaSection {
  position: relative;
  z-index: 20; 
  padding-block: 4rem;

  background-image: url('../images/top/media-bg.png');
  background-size: cover;
  background-position: center;
  
  text-align: center;
}

.mediaCtaSection .w-container {
  position: relative;
  z-index: 2;
}
.mediaCtaSection .sectionHeader {
  text-align: center;
}

.mediaCtaLead {
  --min-size: 26;
  --max-size: 32;
  font-size: var(--clamp-size);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2rem;
}

.mediaCtaDescription {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}
.mediaCtaSection .viewAllLink {
  margin: 3rem auto 0;
}

@media (width >= 769px) {  
  .mediaCtaSection {
    padding-block: 6rem;
  }
}


.campaignSection {
  position: relative;
  z-index: 20;
  padding-block: 4rem;
  background: #fff;
}

.campaignHeader {
  margin-bottom: 3rem;
}

.campaignSection .sectionHeader {
  text-align: center;
  margin-bottom: 2rem;
}




@media (width >= 769px) {  
  .campaignSection {
    padding-block: 6rem;
  }

  .campaignHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .campaignSection .sectionHeader {
    text-align: left;
    margin-bottom: 0;
  }  
  .viewAllLink.is-sp {
    display: none;
  }

  .viewAllLink.is-pc {
    display: flex;
    margin-inline: 0;
    width: auto;
  }
  
}

.serviceSection {
  position: relative;
  z-index: 20; /* FV(z-index: 10)より手前 */
  background: #fff;
  padding-block: 4rem;
}

.serviceHeader {
  margin-bottom: 3rem;
}
.serviceSection .sectionHeader {
  text-align: center;
  margin-bottom: 2rem;
}

.viewAllLink.is-sp {
  display: flex;
  margin-inline: auto;
  margin-top: 3rem;
}
.viewAllLink.is-pc {
  display: none;
}
/* カードリスト */
.serviceList {
  display: grid;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.serviceCard {
  background: transparent linear-gradient(112deg, #00C981 0%, #068C5A 100%) 0% 0% no-repeat padding-box;
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
a.serviceCard:hover {
  opacity: .8; 
}
.serviceCardImage {
  order: 1;
  max-width: 46rem;
  justify-self: center;
  width: 100%;
}
.serviceCardText {
  order: 2;
  text-align: left;
  display: flex; 
  flex-direction: column;
  height: 100%;
}

.serviceCardImage img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.serviceCardPreTitle {
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  font-weight: 500;
  opacity: 0.9;
  font-family: "Urbanist", sans-serif;
}
.serviceCardTitle {
  --min-size: 20;
  --max-size: 24;
  font-size: var(--clamp-size);
  font-weight: 700;
}
.serviceCardDivider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 1rem 0;
}

.serviceCardText > p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.serviceCardLink {
  margin-top: auto;
  align-self: flex-end;
}
@media (width >= 769px) {
  .serviceCardDivider {
  margin: 2rem 0;
}
}

@media (width >= 769px) {  
  .serviceSection {
    padding-block: 6rem;
  }
  .serviceList {
    gap: 4rem;
  }

  .serviceHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  .serviceSection .sectionHeader {
    text-align: left;
    margin-bottom: 0;
  }
 
  .viewAllLink.is-pc { display: flex; }
  .viewAllLink.is-sp { display: none; }

  .serviceCard {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 4rem;
  }

  .serviceCardText {
    order: 1;
  }
  .serviceCardImage {
    order: 2;
    align-self: center;
    justify-self: center; 
  }
}

.type-top {
  --bg-repeat-text: "Empowering Growth Empowering Growth Empowering Growth Empowering Growth"
}
/* お知らせ */
.newsSection {
  position: relative;
  z-index: 20;
  background: #fff;
  padding-block: 4rem;
}

.newsHeader {
  margin-bottom: 3rem;
}
.newsSection .sectionHeader {
  text-align: center;
  margin-bottom: 2rem;
}

.newsDate {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  font-weight: 500;
  color: #BCBCBC;
  white-space: nowrap;
}

.newsTitle {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  color: #1F3637;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsArrowIcon {
  display: block;
  position: relative;
  width: 1.3rem;
  height: 1rem;
  flex-shrink: 0;
}
.newsArrowIcon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sub-color); 
  transform: translateY(-50%);
}

.newsArrowIcon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--sub-color); 
  border-right: 2px solid var(--sub-color);
  transform: translateY(-50%) rotate(45deg);
}

@media (width >= 769px) {  
  .newsSection {
    padding-block: 6rem;
  }

  .newsHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .newsSection .sectionHeader {
    text-align: left;
    margin-bottom: 0;
  }
 
  
  .viewAllLink.is-sp { display: none; }
  .viewAllLink.is-pc { display: flex; }
}

.memberSection {
  position: relative;
  z-index: 20;
  padding-block: 4rem;
  background: #fff; 
  overflow: hidden; 
}

.memberContentGrid {
  background: transparent linear-gradient(112deg, #00C981 0%, #068C5A 100%) 0% 0% no-repeat padding-box;
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.memberText {
  order: 2; 
  display: flex;
  flex-direction: column;
  min-height: auto; 
  padding: 2rem; 
  text-align: left;
}

.memberImages {
  order: 1;
  position: relative; 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; 
  height: auto;
}

.memberImages img {
  width: 100%;
  height: auto; 
  display: block;
  object-fit: cover;
  border-radius: 8px;
  position: static;
}
.memberImage3 {
  grid-column: 1 / span 2; 
}

.memberSection .heading {
  color: #fff;
  margin-bottom: 0.5rem;
}
.memberSubtitle {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  margin-top: 0.5rem;
}
.memberSubtitle::before {
  content: '';
  display: block;
  width: 1em;
  height: 2px;
  background-color: #fff;
}
.memberLink {
  margin-top: auto; 
  text-align: center;
}


@media (width >= 769px) {
  .memberSection {

    & .introButton {
      padding-left: 0;
    }
  }
  .memberContentGrid {
    grid-template-columns: 1fr 1.5fr; 
    gap: 4rem;
    align-items: center;
  }
  
  .memberText {
    order: 1;
    min-height: auto; 
    padding: 2rem 0 0 4rem;
   
  }
  .sectionHeader {
    text-align: left;
  }
  .memberSubtitle {
    justify-content: flex-start;
  }
  .memberImages {
    order: 2;
    height: 42rem;
    display: block; 
    gap: 0;
  }

  .memberImages img {
    position: absolute;
    width: auto;
    height: auto;
  }
  
  .memberImage1 {
    max-width: 15rem;
    top: 0;
    right: 8%;
    z-index: 3;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  .memberImage2 {
    max-width: 16rem;
    top: 35%;
    right: 37%;
    transform: translateY(-50%);
    z-index: 5;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  .memberImage3 {
    max-width: 20rem;
    top: auto; 
    transform: none; 
    bottom: -2rem;
    right: 8rem;
    z-index: 1;
  }
  .memberLink {
  text-align: left;
}
}

.recruitCtaSection {
  position: relative;
  z-index: 20;
  padding-block: 4rem;
  background-image: url('../images/top/media-bg.png');
  background-size: cover;
  background-position: center;
  text-align: center;

  & .heading {
text-align: left;
  }
}

.recruitCtaSection .w-container {
  position: relative;
  z-index: 2;
}

.recruitCtaGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.recruitCtaSubtitle {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-top: 0.5rem;
}
.recruitCtaSubtitle::before {
  content: '';
  display: block;
  width: 1em;
  height: 2px;
  background-color: var(--main-color);
}

.recruitCtaLead {
  font-weight: bold;
  --min-size: 20;
  --max-size: 24;
  font-size: var(--clamp-size);
  margin-top: 4%;
  text-align: left;
}

.recruitCtaDescription {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 1.5rem;
  text-align: left;
}

.recruitCtaImage {
  order: 1;
  margin-inline: auto;
  max-width: 50rem; 
}
.recruitCtaImage img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.recruitCtaText {
  order: 2;
  text-align: center;
}

.recruitCtaSection .viewAllLink {
  margin-top: 3rem;
  margin-inline: auto;
}

@media (width >= 769px) {
  .recruitCtaSection {
    padding-block: 12rem;
  }

  .recruitCtaGrid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
.recruitCtaImage {
    order: 1;
    max-width: 50rem;
    justify-self: end;
  }
  .recruitCtaImage img {
    max-width: 50rem;
    width: 100%;
  }

  .recruitCtaText {
    order: 2;
    text-align: left;
    padding-left: 2rem; 
  }
  
  .recruitCtaSubtitle {
     justify-content: flex-start;
  }
.recruitCtaLead {
  margin-top: 8rem;
}
  .recruitCtaSection .viewAllLink {
    margin-inline: 0;
  }
}

.logoBand {
  background: #fff;
  padding: 1rem 0;
  overflow: hidden;
  width: 100%; 
  position: relative; 
  z-index: 30;
}

.logoBandTrack {
  display: flex;
  width: fit-content;
  animation-name: scroll;
  animation-duration: var(--dur, 30s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused; 
  transform: translateX(0);
}

.logoBandList {
 display: flex;
 align-items: center;
}
.logoBandList img {
  height: 40px;
  width: auto;
  max-width: none;
  @media (width >= 769px) {
    height: 60px;
  }
}

.logoBand:hover .logoBandTrack {
  animation-play-state: paused;
}

.logoBand.is-reverse .logoBandTrack {
  animation-name: scroll-reverse;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--shift)));
  }
}

@keyframes scroll-reverse {
  from {
    transform: translateX(calc(-1 * var(--shift)));
  }
  to {
    transform: translateX(0);
  }
}

/* 追加 上に重なるセクションに指定 */
.introSection,
.otherContent,
.worriesSection,
.campaignSection,
.mediaCtaSection,
.logoBand,
.serviceSection,
.newsSection,
.memberSection,
.recruitCtaSection {
  position: relative;
  z-index: 20;
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
}
