/* Color and font variables */
:root {
  --main: #FE8934;
  --black: #000000;
  --dgray: #DCDCDC;
  --white: #FFFBF6;
  --blk: #2F2725;
  --font-main: 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', sans-serif;
  --font-eng: 'Schibsted Grotesk', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  font-family: var(--font-main);
  color: var(--black);
  width: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
}

html {
  overflow-y: scroll;
}

body {
  max-width: 390px;
  margin: 0 auto;
}

@media (max-width: 767px) {
    body {
      max-width: 100vw;
      margin: 0 auto;
    }

}

@media (max-width: 390px) {
    body {
      max-width: 100%;
      margin: 0 auto;
    }

}
/* --- Header & Hero --- */

@media screen and (min-width: 768px) {
    .noom-header {
    position: fixed;
    top: 0;
    left: calc(50%);
    transform: translateX(-50%);
    width: 100%; /* box-sizing: border-box; の適用により、この幅がパディングやボーダーを含んだ合計幅になります */
    max-width: 390px;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    overflow: hidden;
  }

}

@media (max-width: 767px) {
    .noom-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* box-sizing: border-box; の適用により、この幅がパディングやボーダーを含んだ合計幅になります */
    max-width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    overflow: hidden;
}

}

.noom-header-logo {
    display: flex;
     /* 親要素の幅（390px）を100%占めるようにします */
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px; /* このパディングはwidth: 100%の中に含まれるようになります */
    background-color: transparent;
    display: flex;
}

.noom-header-logo a {
    display: inline-block;
}

.noom-header-logo img {
    height: 32px;
    width: auto;
    transition: filter 0.3s ease;
}

.noom-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* SVGロゴの色変更（白→黒） */
.noom-header.scrolled .noom-header-logo {
    filter: brightness(0);
}

.noom-header-title {
    display: flex;
    padding-top: 320px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    margin-bottom: 56px;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.noom-header-title h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 130%;
    margin: 0 0 8px 0;
    letter-spacing: 0.02em;
}

.noom-header-title h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 130%;
    margin: 0 0 8px 0;
    letter-spacing: 0.01em;
}

.noom-header-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    gap: 32px;
    margin-bottom: 32px;
}


@media screen and (max-width: 390px) {
    /* Adjust padding for the header logo on smaller screens if needed */
    .noom-header-logo {
        padding: 12px 15px; /* Slightly reduced padding */
    }

    /* Reduce the large top padding for the title on small screens */
    .noom-header-title {
  display: flex;
padding-top: 320px;
flex-direction: column;
align-items: center;
align-self: stretch;
  margin-bottom: 56px;
  color: var(--white);
  z-index: 2;
  position: relative;
}
.noom-header-title h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
}
.noom-header-title h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}
.noom-header-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--white);
  gap: 32px;
  margin-bottom: 32px;
}
}

@media screen and (max-width: 375px) {
.noom-header-title h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin: 0 0 8px 0;
    letter-spacing: 0.01em;
}

.noom-header-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    gap: 32px;
    margin-bottom: 32px;
}
}

.store-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    color: var(--main);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: var(--font-main);
}

.arrow-see {
    color: var(--black);
    font-size: 14px;
    font-weight: bold;
    transition: color .3s ease;
}

.store-info-btn:hover {
    background: var(--main);
    color: var(--white);
}

.arrow:hover {
    color: var(--white);
}




.noom-hero-bg {
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 43.61%, #000 100%), url('img/hero_bg_img.webp') no-repeat;
  background-size: cover;
  background-position: center;
  /* shadow */
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.10);
  width: 100;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background-size: cover;
  background-position: top;
  text-align: center;
  box-shadow: none;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 390px) {
  .noom-hero-bg {
    border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 43.61%, #000 100%), url('img/hero_bg_img.webp') no-repeat;
  background-size: cover;
  background-position: center;
  /* shadow */
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.10);
  width: 100%;
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background-size: cover;
  background-position: top;
  text-align: center;
  box-shadow: none;
  top: 0;
  left: 0;
  z-index: 1;
  }
}

/* --- Section Spacing --- */
.noom-about{
  margin-top: 64px;
  margin-bottom: 64px;
  margin-left: 24px;
  margin-right: 24px;
  border-radius: 0 0 24px 24px;
}

/* --- About Section --- */

.noom-about-title {
  display: block;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.noom-about-img {
  z-index: 1;
  display: block;
  position: relative;
  margin-left: -24px; /* コンテナの左marginを相殺 */
  margin-right: -24px;
  margin-bottom: 32px;
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.10);
  width: calc(100% + 48px); /* 親の幅+左右マイナスマージン分 */
  max-width: 100vw;
  height: auto;
}

.noom-about h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 24px;
}
.noom-about .accent {
  color: var(--main);
}
.noom-about p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* --- Stores Section --- */

ul{
  padding-left:0;
}

li{
  list-style:none;
}

.noom-stores-container {
  background-color: var(--main);
  margin: 0 auto;
}

.noom-stores {
  position: relative;
  flex: auto;
  flex-direction: row;
  max-width: 390px;
  padding: 64px 24px;
  box-sizing: border-box;
  z-index: 1;
  align-items: stretch;
  scroll-snap-align: center;
  margin: 0 auto;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .noom-stores {
  max-width: 100%;
    }
}


.noom-stores-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    flex-wrap: nowrap;
    cursor: grab;
    gap: 16px;
    /* width: calc(300% + 8px); */
}

.noom-stores-list::-webkit-scrollbar {
  display: none;
}


.noom-store {
  position: relative;
  flex: auto;
  flex-direction: row;
  max-width: 342px;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
  align-items: stretch;
  scroll-snap-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .noom-store {
  position: relative;
  flex: auto;
  width: calc(100vw - 48px);
  max-width: calc(100vw - 48px);
  box-sizing: border-box;
  z-index: 1;
    }
}

.noom-stores img{
  z-index: 1;
  display: block;
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  max-width: 342px;
}

@media screen and (max-width: 767px) {
  .noom-stores img{
  z-index: 1;
  display: block;
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  max-width: calc(100vw - 48px);
}
}

.noom-store-info {
  opacity: 1;
  transform: translateY(0);
  max-width: 342px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .noom-store-image{
  z-index: 1;
  display: block;
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  object-fit: cover;
  max-width: calc(100vw - 48px);
}
    .noom-store-info {
        opacity: 1;
        transform: translateY(0);
        max-width: calc(100vw - 48px);
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 390px) {
  .noom-stores-img{
  z-index: 1;
  display: block;
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  max-width: calc(100vw - 48px);
}
    .noom-store-info {
        opacity: 1;
        transform: translateY(0);
        max-width: calc(100vw - 48px);
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
}



.noom-stores-title {
  display: block;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
  max-width: 110px; /* タイトルの最大幅を設定 */
}

.noom-stores h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
  color: var(--white);
}


.noom-stores-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
  margin-bottom: 32px;
}

.noom-store-image {
  z-index: 10;
  display: block;
  position: relative;
  border-radius: 4px 4px 0px 0px;
  max-width: 100vw;
  height: auto;
overflow: hidden;
flex-shrink: 0;
object-fit: cover;
}

.noom-store-info{
  background-color: var(--white);
  padding: 24px 16px ;
  border-radius: 0px 0px 4px 4px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.10);
}

.store-name {
  width: 100%;
position: relative;
font-size: 22px;
line-height: 120%;
color: var(--main);
text-align: left;
display: inline-block;
font-family: var(--font-main);
  font-weight: 700;
  padding-bottom: 16px;
}

.store-details {
  width: 100%;
position: relative;
padding-bottom: 16px;
border-bottom: #000 solid 1px;
}

.address {
position: relative;
flex: 1;
width: 100%;
font-size: 16px;
line-height: 150%;
font-family: var(--font-main);
  color: var(--black);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  justify-self: flex-start;
}

.address-icon {
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  pointer-events: auto;
  z-index: 10;
}

.address-icon img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
  pointer-events: auto; /* 画像自体はクリックできないようにする */
}

.address-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/svg/map_hover.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none; /* ← これが重要！ */
}

.address-icon:hover img {
  opacity: 0;
}

.address-icon:hover::after {
  opacity: 1;
}

.store-address {
width: 100%;
position: relative;
width: 100%;
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 16px;
text-align: left;
font-size: 16px;
line-height: 150%;
font-family: var(--font-main);
  color: var(--black);
margin-bottom: 8px;
}

@media screen and (max-width: 390px) {
  .store-address p{
width: 100%;
position: relative;
width: 100%;
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 16px;
text-align: left;
font-size: 14px;
line-height: 150%;
font-family: var(--font-main);
  color: var(--black);
margin-bottom: 8px;
}
}

.store-phone {
width: 100%;
position: relative;
font-size: 20px;
font-weight: 700;
line-height: 140%;
font-family: var(--font-main);
color: var(--black);
text-align: left;
display: inline-block;
}

.store-phone-number {
  color: var(--black);
  text-decoration: none;
  transition: color .3s ease;
}

.store-hours-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 16px;
  padding-bottom: 16px;
}

.store-hours-title {
width: 100%;
position: relative;
font-size: 20px;
font-weight: 700;
line-height: 140%;
font-family: var(--font-main);
  color: var(--black);
text-align: left;
display: inline-block;
margin-bottom: 8px;
}

.store-hours {
  width: 100%;
position: relative;
font-size: 16px;
line-height: 150%;
font-family: var(--font-main);
  color: var(--black);
text-align: left;
display: inline-block;
}

.store-ig-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 16px;
  padding-bottom: 16px;
}

.store-ig {
  width: 100%;
position: relative;
width: 100%;
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 4px;
text-align: left;
font-size: 16px;
line-height: 150%;
font-family: var(--font-main);
  color: var(--black);
margin-bottom: 8px;
pointer-events: auto;
}

.ig-icon {
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

.ig-username {
  width: 100%;
position: relative;
font-size: 16px;
font-weight: 700;
line-height: 140%;
font-family: var(--font-main);
  color: var(--black);
text-align: left;
display: inline-block;
transition: all .3s ease;
}

.ig-username:hover {
    color: var(--main);
}

.store-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--main);
    color: var(--white);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: var(--font-main);
    pointer-events: auto;
    border: transparent solid 0.5px;
}

.arrow {
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    transition: color .3s ease;
}

.store-reserve-btn:hover {
    background: var(--white);
    color: var(--main);
    border: var(--main) solid .5px;
}

.store-reserve-btn:hover .arrow {
    color: var(--main);
}


.noom-stores-slider-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            background: var(--main);
        }
        
        .noom-stores-slider-nav {
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .noom-stores-slider-counter {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
            color: var(--white);
            font: var(--font-eng);
        }
        
        .noom-stores-slider-progress {
            width: 120px;
            height: 4px;
            background: var(--dgray);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .noom-stores-slider-progress-bar {
            height: 100%;
            background: var(--white);
            border-radius: 2px;
            transition: width 0.3s ease;
            width: 0%;
        }

        @media screen and (max-width: 767px) and (min-width: 560px) {
          .noom-stores-slider-progress {
            width: 300px;
            height: 4px;
            background: var(--dgray);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .noom-stores-slider-progress-bar {
            height: 100%;
            background: var(--white);
            border-radius: 2px;
            transition: width 0.3s ease;
            width: 0%;
        }
        }

        @media screen and (max-width: 560px) {
        .noom-stores-slider-progress {
            width: 120px;
            height: 4px;
            background: var(--dgray);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .noom-stores-slider-progress-bar {
            height: 100%;
            background: var(--white);
            border-radius: 2px;
            transition: width 0.3s ease;
            width: 0%;
        }
        }

/* Animation for smooth transitions */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/* --- Menu Section --- */
.noom-menu {
  background: url('img/menu_intro_bg_img.webp') no-repeat;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10), 0px 0px 0px 0px rgba(0, 0, 0, 0.10);
  padding: 64px 24px;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 0 0 24px 24px;
}

.noom-menu-title {
  display: block;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.noom-menu img {
  margin-bottom: 16px;
}
.noom-menu h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 32px;
  color: var(--main);
}
.noom-menu-list {
  margin-top: 16px;
}
.noom-menu-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* --- Footer --- */
.heading {
  	position: relative;
  	line-height: 120%;
    font-family: 'Hiragino Kaku Gothic Pro';
    font-weight: 700;
}
.link {
  	width: 100%;
position: relative;
font-size: 20px;
font-weight: 700;
line-height: 120%;
font-family: 'Hiragino Kaku Gothic Pro';
color: var(--black);
text-align: left;
display: inline-block;
}
.link1 {
  	position: relative;
font-size: 16px;
line-height: 150%;
font-family: 'Hiragino Kaku Gothic Pro';
color: var(--black);
text-align: left;
}
.content1 {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	font-size: 16px;
}
.contact {
  	width: 120px;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 4px;
}
.p {
  	margin: 0;
}
.text {
  	position: relative;
  	font-size: 16px;
  	line-height: 150%;
}
.address {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 4px;
}
.text2 {
  	position: relative;
  	font-size: 16px;
  	line-height: 150%;
  	color: inherit;
  	text-decoration: none;
}
.content {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 16px;
}
.divider {
  	align-self: stretch;
  	position: relative;
  	background-color: #000;
  	border: 1px solid #000;
  	box-sizing: border-box;
  	height: 1px;
}
.um-logo-icon {
  	width: 135px;
  	position: relative;
  	height: 60px;
  	overflow: hidden;
  	flex-shrink: 0;
}
.text3 {
  	position: relative;
  	line-height: 150%;
  	color: inherit;
  	text-decoration: none;
}
.relume-all-rights {
  	position: relative;
  	line-height: 160%;
  	font-family: 'Schibsted Grotesk';
  	text-align: right;
}
.text-parent {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 16px;
}
.um-logo-parent {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 32px;
  	font-size: 14px;
}
.content-parent {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 48px;
}
.info {
  	padding: 0px 24px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	font-size: 18px;
  	color: #000;
}
.footer {
  	width: 100%;
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	padding: 64px 0px 32px;
  	box-sizing: border-box;
  	gap: 32px;
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: top;
  	text-align: left;
  	font-size: 32px;
  	color: var(--main);
  	font-family: 'Hiragino Kaku Gothic Pro';
}



/* // --- Desktop Navigation --- */

  .noom-desktop-links li a:hover {
    color: var(--main);
  }
  .noom-desktop-links li a:active {
    color: var(--main);
  }

@media screen and (min-width: 1200px) {

  .noom-pc-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 180px 180px;
  align-items: flex-start;
  align-self: stretch;
  justify-content: space-between;
}

.noom-pc-bg-image {
  position: fixed;
  z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    filter: blur(5px);
    background-position: center center;
    pointer-events: none;
}


.noom-desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 201;
    top: 50%;
    right: 80px;
    height: 100vh;
    width: 180px;
    transform: translate(-60%, -50%);
    background: none;
    box-shadow: none;
  }
  .noom-desktop-logo {
    position: fixed;
    z-index: 201;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 20%;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .noom-desktop-logo img {
    width: 130px;
    object-fit: contain;
    display: block;
  }
  .noom-desktop-links {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    color: var(--white);
    font-family: 'Schibsted Grotesk';
  }
  .noom-desktop-links li a {
    color: var(--white);
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
    position: relative;
    text-align: right;
  }
}


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

  .noom-pc-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 180px 180px;
  align-items: flex-start;
  align-self: stretch;
  justify-content: space-between;
}

.noom-pc-bg-image {
  position: fixed;
  z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    filter: blur(5px);
    background-position: center center;
    pointer-events: none;
}

  .noom-desktop-logo {
    position: fixed;
    width: calc((100vw - 390px) / 2);
    z-index: 201;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 14%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .noom-desktop-logo img {
    width: 90px;
    object-fit: contain;
    display: block;
  }
  .noom-desktop-links {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    color: var(--white);
    font-family: 'Schibsted Grotesk';
  }
  .noom-desktop-links li a {
    color: var(--white);
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
    position: relative;
    text-align: right;
  }
}

@media screen and (min-width: 1040px) and (max-width: 1199px) {
    .noom-desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    z-index: 201;
    top: 50%;
    right: 80px;
    height: 100vh;
    width: 120px;
    transform: translate(-50%, -50%);
    background: none;
    box-shadow: none;
  }
}

@media screen and (min-width: 950px) and (max-width: 1039px) {
    .noom-desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    z-index: 201;
    top: 50%;
    right: 80px;
    height: 100vh;
    width: 60px;
    transform: translate(-50%, -50%);
    background: none;
    box-shadow: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 949px) {
    .noom-desktop-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    z-index: 201;
    top: 50%;
    right: 50px;
    height: 100vh;
    width: 10px;
    transform: translate(-50%, -50%);
    background: none;
    box-shadow: none;
  }
}


@media screen and (max-width: 767px) {
    /* Hide the main PC background container */
    .noom-pc-bg {
        display: none;
    }

    /* Hide the PC background image */
    .noom-pc-bg-image {
        display: none;
    }

    body {
        padding: 0; /* This will remove the 20px 10px padding */
    }
}

/* --- Slider Styles --- */

.menu {
  	position: relative;
  	line-height: 120%;
}
.menu-wrapper {
  	border-left: 4px solid var(--main);
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: center;
  	padding: 0px 0px 0px 12px;
}
.noom-image-parent {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 8px;
    margin-bottom: 16px;
}
.frame-group {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	padding: 80px 0px 0px;
  	box-sizing: border-box;
  	gap: 16px;
}
.frame-container {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	padding: 0px 0px 80px;
  	box-sizing: border-box;
  	gap: 16px;
}
.frame-parent {
  	position: relative;
  	height: 775px;
  	overflow: hidden;
  	flex-shrink: 0;
    margin-bottom: 16px;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: center;
  	gap: 20px;
  	text-align: left;
  	font-size: 18px;
  	color: #000;
    height: 700px; /* スライダーの高さを設定 */
            overflow: hidden;
  	font-family: 'Hiragino Kaku Gothic Pro';
}

.noom-image img {
    width: 50vw;
    height: auto;
    object-fit: cover; /* 画像をコンテナに合わせて拡大・縮小 */
    display: block; /* inline要素のデフォルトmarginを除去 */
}

@media screen and (min-width:768px) {
    .noom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナに合わせて拡大・縮小 */
    display: block; /* inline要素のデフォルトmarginを除去 */
}
}

        .frame-group, .frame-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .slider-track {
            display: flex;
            flex-direction: column;
            animation: slideUp 90s linear infinite; /* スピードを遅く */
            height: fit-content;
        }

        .frame-container .slider-track {
            animation: slideDown 45s linear infinite; /* 同じ速度で逆方向 */
        }

        @keyframes slideUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes slideDown {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(0);
            }
        }