:root {
  --color-cream: #FFFFF1;
  --color-cream-dark: #fff3cc;
  --color-black: #000;
  --color-gray: rgba(0, 0, 0, 1);
  --color-white: #fff;
  --color-key:#FC5800;
  --font-main: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "YuGothic", "Meiryo", sans-serif;
  --font-display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container: min(1100px, 92vw);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --fv-bg2-tile-width: 1920px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-black);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  overflow-wrap: break-word;
}

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

main{
  overflow-x: hidden;}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--color-key);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--color-key);
  outline-offset: 3px;
}

a.tab,
.footer__otherlink,
.recommend-btn,
.trial-card__actions .btn--link {
  text-underline-offset: 0.15em;
}

.section__lead {
  color: var(--color-black);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 1.4em;
  font-family: inherit;
  font-size: 2rem;
  line-height: 1.2;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 1;
}

.btn--black {
   background: #000;
  color: var(--color-white);
}

.btn--link{
 position: relative; 
}

.btn--link::after{
    position: absolute;
    content: url(../img/link.svg);
    top: 14px;
    right: 15px;
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn--sr {
  position: relative;
  font-size: 1.1em;
  padding: 0.8em 1.3em 0.8em 1em;
  width: 192px;
  transition: background 0.2s, opacity 0.2s;
}

.btn--sr:hover {
  opacity: 1;
  background: var(--color-key);
}

.btn--sm {
  position: relative;
  font-size: 1.1em;
  padding: 0.8em 2em 0.8em 1em;
  width: 192px;
  transition: background 0.2s, opacity 0.2s;
}

.btn--sm::after {
  position: absolute;
  content: url(../img/link.svg);
  right: 1rem;
  width: .8rem;
}

.btn--sm:hover {
  opacity: 1;
  background: var(--color-key);
}

.btn--wide {
  position: relative;
  font-size: 1.1em;
  padding: 1.2em 4em;
  min-width: 280px;
  border-radius: .6rem;
  transition: background 0.2s, opacity 0.2s;
}

.btn--wide:hover {
  opacity: 1;
  background: var(--color-key);}

.btn--wide::after{
  position: absolute;
  content: url(../img/link.svg);
  right:.8rem;
  top: 1.3rem;
}

/* ========================================
   Sections (common)
   ======================================== */
.section {
  padding: 2.45rem 0;
}

.section > *:not(.wave) {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  color: var(--color-key);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;  
  letter-spacing: 2.8px;
}

.section__subtitle {
  font-size: clamp(1.7rem, 4vw, 2rem);
  color: var(--color-key);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 9.6px;
}

.section__title-lead{
width: 100%;
text-align: center;
margin-top: 1rem;
padding-left: 6rem;
}

.section__title--center {
  text-align: center;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.section__title--orange {
  color: var(--color-key);
}

.section__lead {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.6em;
  font-style: normal;
  font-weight: 700;
  line-height: 166%;
  }

.section__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.badge {
  position: absolute;
  top:-1.3rem;
  left: .8rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 200px;
  padding: 0 0.5rem;
  background: var(--color-key);
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  font-family: var(--font-display); 
  flex-direction: column;
  line-height: 3rem;
}

.badge-txt{
  display: block;
  font-size: 0.45em;
  letter-spacing: 3px;
  line-height: 0%;
  margin-top: 14px;
}

#stories .section__title,#trial .section__title{
  margin-top: 5rem;
  font-feature-settings: 'palt' on;
  letter-spacing: 2.8px;
}

#trial .section__title{
  padding-left: 6rem;
}

#recommend .section__title{
    margin-top: 4.6rem;
}

.section__cta-wrap {
  text-align: center;
  margin-top: 7rem;
}

/* ========================================
   Intro
   ======================================== */
.section--intro {
  padding-top: 10rem;
  text-align: center;
}

/* ========================================
   Features
   ======================================== */
.section--features {
}

.features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 7rem;
  max-width: 1000px;
  justify-content: space-around;
}

.feature {
  position: relative;
  text-align: center;
  border-radius: 40px;
  border: 2px solid var(--color-key);
  background: #FFF;
  padding: 100px 0 32px 0;
  width: 32%;
}

.feature__icon {
  position: absolute;
  top:-80px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-key);
  color: var(--color-white);
  border-radius: 50%;
  gap: 0.15rem;
}

.feature__label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.feature__label-txt{
  display: block;
  font-size: 0.45em;
  letter-spacing: 3px;
  line-height: 0%;
  margin-top: 14px;
}

.feature__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 32px);
  font-weight: 700;
  color: var(--color-key);
  margin-bottom: 0.4rem;
  text-align: center;
  font-feature-settings: 'palt' on;
  line-height: 220%;
}

.feature__text {
  color: var(--color-gray);
  text-align: center;
  font-feature-settings: 'pwid' on, 'palt' on;
  font-family: var(--font-main);
  font-size: clamp(18px, 3vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 177%;
}

.section--stories{
  padding-top: 2rem;
}

/* ========================================
   Short Stories
   ======================================== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  max-width: 860px;
  margin-top: 3rem;
  justify-content: space-evenly;
}

.tab {
  position: relative;
  text-align: center;
  width: 48%;
  padding: 0.55em 1.5em;
  font-family: inherit;
  font-size: clamp(1rem, 4vw, 1.1rem);
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-black);
  border: none;
  border-radius: .7rem;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  line-height: 177%;
  height: 50px;
  font-feature-settings: 'pwid' on, 'palt' on;
  margin: .3rem 0;
}

.tab::after {
  position: absolute;
  content: "▼";
  right: 1rem;
  font-size: .7em;
}

.tab:hover {
  opacity: 1;
  background: var(--color-key);
}

.story-list {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-card {
  display: flex;
  margin-bottom: 3.8rem;
  flex-wrap: wrap;
}

.story-card__cover {
  flex-shrink: 0;
  width: 35%;
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  align-items: flex-start;
  opacity:1;
  transition: opacity 0.2s;
}

.story-card__cover:hover {
  opacity:0.8;
  cursor: pointer;
}

button.story-card__cover{
  border: none;
  background: none;
}



.story-card__cover img{
  cursor: pointer;}


.story-card__body {
  flex: 1;
  min-width: 0;
  margin-left: 1rem;
}

.story-card__lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 210%;
  letter-spacing: 2.2px;
}

.story-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-key);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    line-height: 3.1rem;
  font-feature-settings: 'halt' on;
}

.story-card__author {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.story-card__desc {
  font-feature-settings: 'halt' on;
  color: var(--color-gray);
  margin-bottom: 2rem;
  font-family: var(--font-main);
  font-size: 1.1rem;
  line-height: 32px;
}

.story-card__desc span{
  font-weight: 700;
}

.voiceactor {
  max-width: 620px;
  display: flex;
  align-content: center;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem 2.8rem 1.5rem;
  background: var(--color-white);
  border: 2px solid var(--color-key);
  border-radius: 3rem;
  text-align: center;
}

.voiceactor__img{
    width: 25%;
    padding: 0.5rem;
    margin-top: -5rem;
}

.voiceactor__text{
    width: 75%;
}

.voiceactor__name {
color: var(--keycolor, #FC5800);
text-align: left;
font-family: var(--font-main);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 177%;
padding: 1.6rem 0 1.1rem 0;
font-feature-settings: 'palt' on;
}

.voiceactor__desc{
  text-align: left;
  font-size: 1.1rem;
}

.voiceactor__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc8a8, #ff8866);
}

/* ========================================
   Trial / Mood grid
   ======================================== */
.mood-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.mood-row {
  display: flex;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.mood-label {
font-family: var(--font-display);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-key);
  letter-spacing: 0.22em;
  padding: 0 0 0 3.5rem;
  line-height: 4rem;
}

.mood-wrap{
    display: flex;
    position: relative;
    margin-top: 0;
}

.mood-label-desc{
    position: absolute;
    font-size: 1.25rem;
    font-family: var(--font-display);
    writing-mode: vertical-rl;
    font-weight: 900;
    color: var(--color-key);
    letter-spacing: 0.62em;
    top: 14.5rem;
    right: -2.4rem;}

.mood-row__cards {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 79%;
}

.trial-card {
  width: 100%;
}

.trial-card__cover {
  position: relative;
  width: 100%;
  display: block;
  height: auto;
  padding: 0;
  border-radius: 2rem;
  border: 2px solid var(--color-key);
  background-color: var(--color-key);
  overflow: hidden;
  cursor: pointer;
}

.trial-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.9rem;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 var(--color-key);
  transition: box-shadow 0.2s, border-radius 0.2s;
  z-index: 1;
}

.trial-card__cover:hover::after {
  box-shadow: inset 0 0 0 14px var(--color-key);
  border-radius: 1.8rem;
}

.trial-card__cover img {
  display: block;
  width: 100%;
  border-radius: 1.9rem;
  transition: border-radius 0.2s;
}

.trial-card__cover:hover img {
  border-radius: 1rem;
}


.trial-card__cover--2 { background: linear-gradient(160deg, #4a4a5c, #2a2a3a); }
.trial-card__cover--3 { background: linear-gradient(160deg, #ffb8c8, #ff6b8a); }
.trial-card__cover--4 { background: linear-gradient(160deg, #ffc8e8, #ff88cc); }
.trial-card__cover--5 { background: linear-gradient(160deg, #a8c8ff, #6688dd); }
.trial-card__cover--6 { background: linear-gradient(160deg, #c8d8ff, #8899cc); }
.trial-card__cover--7 { background: linear-gradient(160deg, #c8f0d8, #88d8a8); }
.trial-card__cover--8 { background: linear-gradient(160deg, #ffe8a8, #ffc848); }

.trial-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.trial-card__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-feature-settings: 'halt' on;
  font-family: var(--font-main);
  line-height: 2.2rem;
}

.trial-card__author {
  font-size: 1.1rem;
  margin-bottom: auto;
  font-weight: 700;
  margin-top: .3rem;
  font-feature-settings: 'pwid' on, 'palt' on;
}

.trial-card__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trial-card__desc{
  font-size: 1.1rem;
  font-feature-settings: 'pwid' on, 'palt' on;
  margin-top: 1.1rem;
}

/* ========================================
   Carousel / Recommend
   ======================================== */
.carousel-block {
  margin-bottom: -3.5rem;
  width: 100%!important;
}

.carousel-block__genre {
font-family: var(--font-display);
font-size: 48px;
  color: var(--color-key);
  margin-bottom: 2.4rem;
  margin-top: 5rem;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel__track {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-key-pale);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--color-key);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel__nav:hover {
  background: var(--color-key);
}

.book-item {
  width: 50%;
  scroll-snap-align: start;
  text-align: center;
}

.book-item__frame {
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.book-item__cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: linear-gradient(145deg, #f5f5f5, #ddd);
  border-radius: var(--radius-sm);
}

.book-item__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.book-item__author {
  font-size: 11px;
  color: var(--color-gray);
  margin-bottom: 0.15rem;
}

.book-item__price {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  padding: 4rem 0 0;
  overflow: hidden;
}

.wave {
  background: var(--color-key);
    border-top-left-radius: 50% 36%;
    border-top-right-radius: 50% 36%;
  height: 420px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

.footer--wrapper{
  background: var(--color-key);
  color: var(--color-white);
  margin-top: -18.5rem;
  padding-bottom: 2rem;
}

.footer__title {
  letter-spacing: 2.8px;
  font-family: var(--font-display);
  font-feature-settings: 'palt' on; 
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 900;
  text-align: center;
}

.footer__logo {
  width: 20%;
}

.footer__text {
width: 79%;
font-family: var(--font-main);
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 166%;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.footer__text-attention{
  margin-top: 1.5rem;
  display: block;
  font-size: .7em;
}

.footer__desc{
  margin: 5rem auto 3.5rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 880px;
}

.footer__credit{
  font-size: 1.1rem;
  text-align: center;
  font-weight: 700;
}

.footer__partners {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin: 3rem auto 2rem auto;
max-width: 828px;
}

.partner-logo {
  width: 23%;
  border-radius: .8rem;
  background-color: var(--color-white);
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
  display: flex;
}

.partner-logo img{
  display: block;
  text-align: center;
  margin: auto;  
}

.footer_share-ttl{
  font-size: 1rem;
}

.footer__share {
  margin-top: 3.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.footer__otherlink{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  text-align: center;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.footer__otherlink:hover{
 color: var(--color-black);
}

.footer__otherlink::after{
  content: url(../img/link.svg);
  margin-left: .5rem;
}

.footer__copy {
  margin-top: 3rem;
  font-size: 1.1rem;
  text-align: center;
}

.fv-wrap {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50% 25%;
  border-bottom-right-radius: 50% 25%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

.fv-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 615px;
  background: url(../img/fv_bg2.png) repeat-x left center;
  background-size: auto 100%;
  animation: scroll-anim 20s linear infinite;
  will-change: background-position;
  z-index: 0;
}

.fv-wrap.is-animation-paused::after {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .fv-wrap::after {
    animation: none;
  }

  .fv_ttl {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.fv-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 615px;
  background: url(../img/fv_bg3.png);
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center;
  margin: auto;
  z-index: 0;
}


.fv {
  position: relative;
  background-image: url(../img/fv_bg1.png);
  background-size: cover;
  background-position:top center;
  background-repeat: no-repeat;
  height: 615px;
  margin: auto;
  max-width: 100%;
  z-index: 1;
}

@keyframes scroll-anim {
  from {
    background-position: 0 center;
  }
  to {
    background-position: calc(1 * var(--fv-bg2-tile-width)) center;
  }
}
@keyframes fv-title-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fv_ttl {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  padding: 15px;
  opacity: 0;
  animation: fv-title-fade-in 1.2s ease-out 0.7s forwards;
}

.header_logo{
  z-index: 10;
  background-color: var(--color-key);
  border-radius: 50%;
  display: inline-flex;
  padding: .5rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
  margin-right: 0;
  position: absolute;
  right: 1rem;
  top: 470px;
}

.header_logo img{
  display: block;
  max-width: 100%;
  height: auto;
}

.header_logo:hover{
  background-color: var(--color-black);
}

.slide-wrapper,
#slide-wrapper {
  overflow: hidden;
  margin-top: -.5rem;
}

.content_area{
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

.slick-list{
  overflow: visible;
}

.slick-item p {
  font-size: 18px;
  line-height: 150px;
  text-align: center;
  margin: 10px;
  padding: 2%;
  position: relative;
}

.slick-prev, .slick-next{
  z-index:100;
}
.slick-prev:before, .slick-next:before{
  color:#75E1D6;
}
 
  .slick-item p {
    font-size: 15px;
    line-height: 100px;
    margin: 5px;
    padding: 1.5%;
  }

.recommend-card{
  border-radius: 90px;
  padding: 0 2rem;
  margin: 0 1rem;
  background: #C8FFD5;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-card_01{
background: #C5D9D8;}
.recommend-card_02{
background: #5782C5;}
.recommend-card_03{
background: #DFDF7F;}
.recommend-card_04{
background: #89D9BE;}
.recommend-card_05{
background: #B8E0D8;}
.recommend-card_06{
background: #8AEAED;}
.recommend-card_07{
background: #E1DAC2;}
.recommend-card_08{
background: #F8D1B3;}
.recommend-card_09{
background: #C1EEFF;}
.recommend-card_10{
background: #FFB2AC;}
.recommend-card_11{
background: #CEAEF9;}
.recommend-card_12{
background: #FAAD96;}
.recommend-card_ttl{    
  font-size: 1.6rem;
  text-align: center;
  margin: 1.8rem 1rem 0 1rem;
  line-height: 2.3rem;
}

p.recommend-card_desc{ 
margin: 1.7rem 0 -.8rem 0;
font-size: 1.1rem;
text-align: center;
line-height: 1;
padding: 0;
font-weight: 700;
}

.recommend-btn{
  display: block;
  padding-right: .9rem;
  padding-bottom: .2rem;
  margin: 2.8rem auto;
  text-align: center;
  background-color: #000;
  color: #fff;
  width: 192px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2rem;
  position: relative; 
  font-size: 1rem;
  transition: background 0.2s, opacity 0.2s;
}

.recommend-btn:hover {
  opacity: 1;
  background: var(--color-key);
}

.recommend-btn::after{
    position: absolute;
    content: url(../img/link.svg);
    top: 10.5px;
    right: 17px;
}

/* スライダー */

.slick-slide img{
  margin: auto;
}

.slick-prev:before, .slick-next:before{
	color:#333;
}

  .slick-next, .slick-prev{
    z-index:10;
  }
  .slick-prev{
    left:4px;
  }
  .slick-next{
    right:4px;
  }

  .arrow-left,
  .arrow-right {
  position: absolute;
  top: 29%;
  transform: translate(0, -50%);
  z-index: 1;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  }

  .arrow-left {
  left: 11%;
  }

  .arrow-right {
  right: 11%;
  }

  .arrow-left::before,
  .arrow-left::after,
  .arrow-right::before,
  .arrow-right::after{
    content: "";
    position: absolute;
    inset: 0;
    background: no-repeat center / contain;
    transition: opacity 0.2s ease-in-out;
  }

  /* 通常 */
  .arrow-right::after{
    opacity: 1;
    background-image: url(../img/arrow.svg);
  }

  .arrow-left::after{
    opacity: 1;
    transform:rotate(180deg);
    background-image: url(../img/arrow.svg);
  }

  /* hover */
  .arrow-right::before{
    opacity: 0;
    background-image: url(../img/arrow_hover.svg);
  }

  .arrow-left::before{
    opacity: 0;
    transform:rotate(180deg);
    background-image: url(../img/arrow_hover.svg);
  }

  .arrow-left:hover::before,
  .arrow-right:hover::before{
    opacity: 1;
  }

  .arrow-left:hover::after,
  .arrow-right:hover::after{
    opacity: 0;
  }

  .prev_icon:hover,.next_icon:hover{
opacity:0 ;
  }
  
  .arrow-left:hover img,.arrow-right:hover img{
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;}

  .recommend-card img{
    width: 100%;
    max-height: 365px;
    object-fit: contain;
  }

  .btn--links{
  position: relative;
  font-size: 1.1em;
  padding: 0.8em 1.3em 0.8em 1em;
  width: 192px;
  transition: background 0.2s, opacity 0.2s;
}

.btn--links:hover {
  opacity: 1;
  background: var(--color-white); 
  color: var(--color-black);
  }

.btn--links::after {
  position: absolute;
  content: url(../img/link.svg);
  right: 1rem;
  width: .8rem;
  transition: filter 0.2s ease;
  filter: brightness(0) invert(1);
}

.btn--links:hover::after {
  filter: brightness(0) invert(0);
}

.footer__share > a{
  transition: filter 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.footer__share > a:hover{
  filter: invert(100%);
}

.footer__logo img{
  transition: filter 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.footer__logo img:hover{
  filter: invert(100%);
}

  .partner-logo:hover{
  transition: background 0.2s, opacity 0.2s;
    background-color: #7A4D34;
  }

  .tenmin{
    background-image: url(../img/timebg_10.png);
    background-size: contain;
  }

  .thirtymin{
    background-image: url(../img/timebg_30.png);
    background-size: contain;
  }

  .natsuoto_navigation{
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    margin: auto;
    width: 100%;
    justify-content: center;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
    background-color: #fffff1;
}

  .natsuoto_navigation.fixed {
  opacity: 1;
  z-index: 1000;
  width: 100%;
}
  .natsuoto_navigation-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
  }

  .natsuoto_navigation-wrap > li:nth-child(n+2){
    position: relative;
  }

    .natsuoto_navigation-wrap > li:first-child{
      max-width: 169px;
      margin-right: .8rem;
    }

    .natsuoto_navigation-wrap > li:nth-child(n+2){
      background-color: var(--color-black);
      color: var(--color-white);
      border-radius: 2rem;
      font-weight: 700;
      margin-left: 1rem;
      transition:background-color 0.2s ease;
  }

  
  .natsuoto_navigation-wrap > li:last-child {
    padding-right: 20px;
  }

  .natsuoto_navigation-wrap > li:last-child::after {
    position: absolute;
    content: url(../img/link.svg);
    top: 8px;
    right: 15px;
}

  .natsuoto_navigation-item a{
    display: block;
    padding: .5rem 1.3rem;
    font-size:clamp(.5rem, 2vw, .9rem);
  }

 .natsuoto_navigation-wrap > li:nth-child(n+2):hover{
      background-color: var(--color-key);
  }

/* ========================================
   Hamburger menu (SP)
   ======================================== */
.hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1500;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: var(--color-key);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hamburger::before {
    content: "";
    top: 0;
    left: -41px;
    border-bottom: 43px solid transparent;
    border-right: 43px solid var(--color-key); 
    position: absolute;
    z-index: 100;
}
.hamburger::after {
    content: "";
    top: 41px;
    left: 0;
    border-bottom: 43px solid transparent;
    border-right: 43px solid var(--color-key); 
    position: absolute;
    z-index: 100;
}

.hamburger__line {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.is-active {  background: none;}
.hamburger.is-active::before {opacity:0 ;}
.hamburger.is-active::after {opacity:0 ;}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--color-key);
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  flex-wrap: wrap;
  width: 100%;

}

.mobile-menu__item img{
  display: inline;
  width: 100px;
  height: 100px;
}

.mobile-menu__list {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.mobile-menu__item {
    margin-bottom: 1rem;
}

.mobile-menu__item a {
  display: block;
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}

.mobile-menu__item a::before{
content: "▲";
font-size: 10px;
position: absolute;
width: 8px;
margin: 0 -10px;
height: 6px;
top:8px;
transform: rotate(90deg);
}

.menu__logomark a::before{
content: "";
}

.mobile-menu__item--logo a {
  display: inline-block;
}

.mobile-menu__item--logo img {
  max-width: 169px;
  margin: 0 auto;
}

.mobile-menu__footer{
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}

body.is-menu-open {
  overflow: hidden;
}

/* ========================================
   Responsive
   ======================================== */

.sp{
  display: none;
}

.features-sp{
  display: none;
}

.pc{
  display: block;
}


@media (max-width: 900px) {
  .natsuoto_navigation {
    display: none !important;
  }

  .hamburger {
    display: flex;
    border-radius: 0 0 0 3px;
  }

  .natsuoto_navigation-wrap > li:nth-child(n+2){
    margin-left: .5rem;
  }

.tab {
  width: 100%}

  .mood-row__cards {
    grid-template-columns: 1fr;
  }

  .trial-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .trial-card__cover {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
.badge{
  position: relative;
  top:initial;
  left: initial;
}

.section__header{
  justify-content: center;
}

#stories .section__title, #trial .section__title{
  width: 100%;
  margin-top: 1rem; 
}

.feature{
    padding: 100px 5px 32px 5px;}

  .mood-label{
padding: 0;
    }

    .content_area{
      padding: 0;
    }
}

@media (max-width: 768px) {
.fv-wrap,
.wave {
  margin-left: -130px;
  margin-right: -130px;
  padding-left: 130px;
  padding-right: 130px;
}

.slick-list {
  overflow: hidden;
}

.recommend-card {
  padding: 4rem 3.25rem;
  margin: 0;
}

.btn--wide {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.btn--sm,
.btn--sr,
.btn--links {
  width: 100%;
  max-width: 100%;
}

.fv
{
  height: 70vh;
}

.fv .header_logo{
    right: 2%;
    max-width: 150px;
}

.sp{
  display: block;
}

.section__lead {
    text-align: left;
    font-size: 1.4em;
}

.features{
  display: none;
}

.features-sp{
  display: block;
}
.feature__icon {
    position: relative;
    top:20px;
    width: 150px;
    height: 150px;
    margin: auto;
    text-align: center;
}

.section--features{
  padding: 10px;
}

.features-sp-wrap{
  display: flex;
  justify-content: center;
}

.feature{
    padding: 30px 10px;
    width: 100%;
  }

  .story-card {
    display: block;}

  .story-card__cover{
    width: 100%;
  }

  .story-card__body{
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
  }

  .btn--sr {
    display: block;
    text-align: center;
    margin: auto;
}

.voiceactor{
  display: block;
}

.voiceactor__img{
  width: 100%;
  margin:auto;
  padding-left: 0;
  text-align: center;
}

.voiceactor__img img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  text-align: center;
  display: inline;
}

.voiceactor__text{
  width: 100%;
}

#trial .section__title{
  padding-left: 0;
}

.mood-row{
  display: block;
}

.mood-wrap{
  width: 100%;
  justify-content: center;
}

.mood-label{
  padding: 0 2rem 2rem 0;
}

.mood-label-desc{
  right: 42%;
  bottom: 1rem;
  top: initial;
}

.mood-row__cards{
  display: block;
  margin-top: 2rem;
  width: 100%;
}

.trial-card__cover{
  max-width: 100%;
  height: auto;
}

.trial-card__actions{
  display: block;
  text-align: center;
  margin: 1rem auto;
}

.btn--sr{
  margin: 2rem auto 1rem auto;
  max-width: 192px;
}

.trial-card__info{
  margin-bottom: 2rem;
}

#recommend .section__title{
  width: 100%;
  margin-top: 1.6rem;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 150%;
}

.content_area{
  padding: 0;
}

.arrow-right{
    top: 33%;
    right: 2%;
}

.arrow-left{
    top: 33%;
    left: 2%;
}

.footer__title{
line-height: 150%;
}

.footer__desc{
  display: block;
}

.footer__logo,.footer__text{
  width: 100%;
  padding: 1rem;
}

.footer__logo{
  text-align: center;
  margin: auto;
}

.footer__logo a{
  display: block;
  margin: auto;
  text-align: center;
}

.footer__logo img {
    display: inline;
}

.btn--links{
  display: block;
  text-align: center; 
  width: 50%;
  margin-bottom: .5rem;
}

.footer__partners{
    justify-content: center;  
  margin: 3rem auto 2rem auto;
}

.partner-logo{
  width: 45%;
  margin: 8px;
  max-width: 160px;
  min-height: 70px;
}

}

@media (max-width: 640px) {
  .section {
    padding: 6rem 0 3rem 0;
  }

  .section--features {
/* padding: 2rem 1.25rem; */
  }

  .header_logo{
    width: 100px;
    top: 515px;
    right: 0;
    padding: 0;
  }

  .feature__icon {
  width: 100px;
  height: 100px;
  }

  .mood-label {
    padding: 0 2rem 2rem 0;
  }

  .mood-grid {
    margin-top: 4.5rem;
}

.section__title-lead{
padding-left: 0;
}
  .mood-label-desc {
    right: 36%;
    bottom: -11%;
    top: initial;
}

  .mood-row {
    grid-template-columns: 1fr;
  }

  .mood-row__cards {
    margin-top: 3rem;
  }

  .badge {
  min-width: 180px;
  height: 180px;
  }

  .carousel-block__genre {
    margin-top: 3rem;
    font-size: 30px;
}

.arrow-right,.arrow-left {
    top: 30%;
    width: 45px;
    height: 45px;}

  .carousel__nav {
    display: none;
  }

  .hero__float-cta {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .fv-wrap {
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;}

.story-card__cover img {
  width: 100%;
}

.mood-label {
    font-size: 2.5rem;}

.slide-wrapper{
    overflow: visible;

}

.pc{
display: none;
}
}

/* SP時間別楽しみ方 */
.featuretabs {
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly; 
    flex-wrap: wrap;
}

.tab_item {
  width: 32%;
  display: block;
  position: relative;
  opacity: .5;
}

.tab_item::after {
  text-align: center;
  margin: 20px auto 0 auto;
  content: "▼";
  display: block;
  color: var(--color-key);
  opacity: 0;
  font-size: 1.3em;
}

.tab_item:hover {
  opacity: 0.75;
}

input[name="tab_item"] {
  display: none;
}

.tab_content {
  display: none;
  width: 100%;
  margin-top: 10px;
}

#tenmin:checked ~ #tenmin_content,
#thirtymin:checked ~ #thirtymin_content,
#threehour:checked ~ #threehour_content {
  display: block;
}

.featuretabs input:checked + .tab_item {
  opacity: 1;
}

.featuretabs input:checked + .tab_item::after {
  opacity: 1;
}

.animation-set{
    border: none;
    background-color: transparent;
    background-image: url(../img/animation-stop.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    width: 50px;
    z-index: 22;
    cursor: pointer;
    padding: 0;
    position: absolute;
    left: 1rem;
    top: 480px;
}

.animation-set.is-paused {
    background-image: url(../img/animation-start.svg);
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.story-card__desc span.txt-only{
  font-weight: normal;
}

/* iPhone mini */
@media (max-width: 400px) {
.fv {
height: 600px;
}
.fv .header_logo {
bottom: 10%;
}

.animation-set{
border: none;
background-color: transparent;
background-image: url(../img/animation-stop.svg);
background-repeat: no-repeat;
background-size: contain;
height: 45px;
width: 45px;
z-index: 22;
cursor: pointer;
padding: 0;
position: absolute;
left: 10px;
top: 526px;
}
}

@media (min-width: 1400px) {
.fv {
height: 90vh;
}
.animation-set {
top: 70vh;
}
}

.footer a:focus{
    outline: 3px solid #000;
    outline-offset: 2px;
}

.footer a:focus img{
    outline: 3px solid #000;
    outline-offset: 2px;
}

.mobile-menu__item a:focus{
    outline: 3px solid #000;
    outline-offset: 2px; 
}

.natsuoto_navigation-wrap > li.navi_active{
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: inset 0 0 0 2px var(--color-black);
}

.natsuoto_navigation-wrap > li:first-child.navi_active{
    background-color:#fffff1;
    color: none;
    box-shadow: none;
}

.mobile-menu__list > li:nth-child(n+4) >a::after {
    position: absolute;
    content: url(../img/link.svg);
    margin-left: .4rem;
    width: .8rem;
}

.mobile-menu__list > li:nth-child(5) >a::after {
    position: absolute;
    content: '';
    margin-left: .4rem;
    width: .8rem;
}

.text_spacing{
    letter-spacing: -5%;
}

.hamburger:focus{
    outline: 3px solid #000!important ;
    outline-offset: 2px;
    z-index: 10000;}

.hamburger:focus::before {
    display: none;
}

.hamburger:focus::after {
    display: none;
}

.modal-video { 
    background-color: rgba(0, 0, 0, 0.8)!important;
}

.footer__banner{
    margin: 3rem auto 0;
    max-width: 828px; }