@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@900&display=swap');



/* -------------------------
  root設定
------------------------- */
:root {
  font-size: 62.5%;

  /* カラー変数 */
  --color-main:    #00C8B4;
  --color-text:    hsl(0, 0%, 10%);

  --color-headline-bg: #fff;
  --color-body-bg:     #D8F0EE;
  --color-footer-bg:   #fff;


  /* border-radius変数 */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:  12px;
  --radius-xl:  24px;

  /* line-height変数 */
  --line-height-sm: 1.3;
  --line-height-md: 1.5;
  --line-height-lg: 1.7;
  --line-height-xl: 2.0;

  /* サイズ変数 */
  --header-height:  80px;
  --container-width:  1300px;
  --container-padding:  30px;
  --sidebar-width:  350px;

  /* スペース変数 */
  --margin-3xl:80px;
  --margin-2xl:60px;
  --margin-xl: 50px;
  --margin-lg: 40px;
  --margin-md: 30px;
  --margin-sm: 25px;
  --margin-xs: 15px;

  /* フォントサイズ変数 */
  --font-size-xs:   1.3rem;
  --font-size-sm:   1.4rem;
  --font-size-md:   1.6rem;
  --font-size-lg:   2.0rem;
  --font-size-xl:   2.4rem;
  --font-size-2xl:  3.0rem;
  --font-size-3xl:  3.8rem;
  --font-size-4xl:  5.2rem;
}

/* タブレット変数 */
@media (max-width: 1023px) {
  :root {
    /* サイズ変数 */
    --header-height:  55px;
    --container-padding:  15px;
    --sidebar-width:  264px;

    /* スペース変数 */
    --margin-3xl:70px;
    --margin-2xl:50px;
    --margin-xl: 40px;
    --margin-lg: 35px;
    --margin-md: 25px;
    --margin-sm: 20px;
    --margin-xs: 10px;
  }
}

/* SP変数 */
@media (max-width: 599px) {
  :root {
    /* サイズ変数 */
    --header-height:  55px;
    --container-padding:  15px;
    --sidebar-width:  0px;

    /* スペース変数 */
    --margin-3xl:50px;
    --margin-2xl:40px;
    --margin-xl: 35px;
    --margin-lg: 25px;
    --margin-md: 20px;
    --margin-sm: 15px;
    --margin-xs: 10px;
    
    /* フォントサイズ変数 */
    --font-size-xs:   1.1rem;
    --font-size-sm:   1.2rem;
    --font-size-md:   1.4rem;
    --font-size-lg:   1.7rem;
    --font-size-xl:   2.0rem;
    --font-size-2xl:  2.4rem;
    --font-size-3xl:  3.2rem;
    --font-size-4xl:  4.0rem;
  }
}


/* -------------------------
  デバイス判定
------------------------- */
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }
  .tablet:not(.sp) {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .tablet ~ .pc:not(.tablet) {
    display: none !important;
  }
  .sp:not(.tablet) {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .tablet:not(.pc) {
    display: none !important;
  }
}
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .landscape {
    display: none !important;
  }
}
/* デバイスが横長の向き */
@media (orientation: landscape) {
  .portrait {
    display: none !important;
  }
}


/* -------------------------
  html body
------------------------- */
html {
  touch-action: manipulation;
}
body {
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: var(--font-size-sm);
  font-weight: normal;
  line-height: var(--line-height-md);
  background: var(--color-body-bg);
  color: var(--color-text);
  text-align: left;
  font-feature-settings: "palt";
  overscroll-behavior: none;
}
body * {
  letter-spacing: 0.1em;
}


/* -------------------------
  common
------------------------- */
img {
  display: block;
  /* Microsoft Edgeで画像検索無効に */
  pointer-events: none;
}
span.br {
  display: inline-block;
}
::selection {
  /* background-color: yellow; */
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.05em;
  line-height: var(--line-height-sm);
}
@media (any-hover: hover) {
  a[href] {
    transition: opacity 0.1s;
  }
  a[href]:hover {
    transition: opacity 0.2s;
    opacity: 0.5;
  }
  .voice-player__buttons button {
    transition: opacity 0.1s;
  }
  .voice-player__buttons button:hover {
    transition: opacity 0.2s;
    opacity: 0.5;
  }
}

/* -------------------------
  section
------------------------- */
.section {
  position: relative;
  width: 100%;
}
.section__inner {
  position: relative;
  margin-left:  auto;
  margin-right: auto;
  max-width: var(--container-width);
  padding-left:  var(--container-padding);
  padding-right: var(--container-padding);
}


.header {
  background-color: #FFF;
  overflow: hidden;
}
.header__inner {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 18px;
}
.header__logo-wrap {
  display: inline-block;
}

.header__logo-wrap img {
  max-width: 486px;
  height: 75px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 599px) {
  .header__inner {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 12px;
  }
  .header__logo-wrap {
    overflow: hidden;
    width: 100%;
  }
  .header__logo-wrap img {
    width: 100%;
    max-width: 100%;
  }
}
.main {
  border-top: 3px solid var(--color-main);
  border-bottom: 3px solid var(--color-main);
}


/* -------------------------
  NEW スライド
------------------------- */

.voice-new {
  padding-top: 40px;
  overflow: hidden;
}
.voice-new__inner {
  padding-left:  32px;
  padding-right: 32px;
  min-height: 320px;
}
.voice-new__swiper-area {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.voice-new__swiper-area.is-initialized {
  opacity: 1;
  visibility: visible;
}
.voice-new__swiper {
  overflow: visible;

}
.voice-new__image {
  max-width: 100%;
}
.voice-new__pagination {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2px;
  justify-content: center;
  margin-top: 24px;
  text-align: center;
  bottom: auto;
}

.voice-new .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: .8s cubic-bezier(.2, 1, .2, 1);
  background-color: #FFF;
  opacity: 1;
}
.voice-new .swiper-pagination-bullet-active {
  width: 24px;
  background-color: var(--color-main);
}
.voice-new__button {
  display: grid;
  place-content: center;
  width: 40px;
  height: 60px;
  border-radius: 4px;
  cursor: pointer;
  transition: .8s cubic-bezier(.2, 1, .2, 1);
  background-color: #FFF;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.voice-new__button--prev {
  right: auto;
  left: -28px;
}
.voice-new__button--next {
  left: auto;
  right: -28px;
}
.voice-new__button::after {
  content: "";
  background: url(../img/arrow.svg) center / contain no-repeat;
  width: 10px;
  height: 20px;
}
.voice-new__button--next::after {
  transform: rotate(180deg);
}
.voice-new__button--disabled {
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 1023px) {
  .voice-new__button {
    display: none;
  }
}
.voice-new__slide-images {
  position: relative;
  background-color: hsl(174, 10%, 60%);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.voice-new__slide-image-main {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 365 / 205;
  object-fit: cover;
  object-position: center;
}

.voice-new__slide-image-main.thumb-duplicate {
  width: 100%;
  padding-left: 33%;
  filter: brightness(66%);
  max-width: 100%;
  aspect-ratio: 365 / 205;
  object-fit: cover;
  object-position: center 30%;
  mask-image: linear-gradient(to right, transparent 33%, #000 60%);
}
.voice-new__slide-image-main.position-top {
  object-position: center 15%;
}
.voice-new__slide-image-main.position-top2 {
  object-position: center 25%;
}
.voice-new__slide-image-main.position-center {
  object-position: center 50%;
}
.voice-new__slide-image-main.position-bottom {
  object-position: center 70%;
}
.voice-new__slide-image-thumb {
  position: absolute;
  max-height: calc(100% - 34px);
  left: 12px;
  bottom: 22px;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
}
.voice-new__content-type {
  position: absolute;
  width: 44px;
  height: 44px;
  right: 12px;
  bottom: 12px;
}
.voice-new__slide-content-wrap {
  display: flex;
  position: relative;
  border-radius: 0 0 8px 8px;
  background-color: #FFF;
  padding: 12px;
  padding-right: 0;
}
.voice-new__slide-content {
  flex: 1;
  padding-right: 12px;
}
.voice-new__slide-content-link-icon {
  display: grid;
  place-content: center;
  width: 30px;
  border-left: 2px solid rgba(0, 200, 180, 0.3);
}
.voice-new__slide-content-link-icon::after {
  content: "";
  background: url(../img/icon-link.svg) center / contain no-repeat;
  width: 12px;
  height: 12px;
}
.voice-new__slide-date {
  position: absolute;
  top: -1em;
  left: 20px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 11px;
  background-color: #FFF;
  border-radius: 6px;
  padding: 0.2em 0.75em;
}
.voice-new__slide-date .voice-new__slide-date--new {
  font-weight: 800;
  color: #FF873C;
  margin-right: 0.5em;
}
.voice-new__text {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0.35em;
  margin-bottom: 0.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.4;
  max-height: 1.4em;
}
.voice-new__slide-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
}
.voice-new__slide-title.line1 {
  -webkit-line-clamp: 1;
  max-height: 1.4em;
}
.voice-new__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.voice-new__tags span {
  display: inline;
  font-size: 11px;
  font-weight: bold;
  color: #FFF;
  background-color: var(--color-main);
  border-radius: 4px;
  padding: 0.3em 0.5em;
  padding-bottom: 0.52em;
  line-height: 1;
}
.contents__wrap {
  display: grid;
  grid-template-columns: 2fr 355px;
  column-gap: 65px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.contents__title {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75em;
}
.contents__title-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.3em;
  margin-top: 0.1em;
}
@media (min-width: 900px) {
  .section-wave-pc {
    background-color: #BCEBE7;
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .section-wave-pc::before,
  .section-wave-pc::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    background-image: url(../img/back-wave-blue-bottom.svg);
    background-repeat: repeat-x;
    background-size: 132px auto;
    background-position: top center;
    top: -40px;
  }
  .section-wave-pc::after {
    top: auto;
    bottom: -40px;
    transform: rotate(180deg);
  }
  .section-wave-pc:last-of-type {
    margin-bottom: 0;
    padding-bottom: 60px;
  }
  .section-wave-pc:last-of-type::after {
    display: none;
  }
}
@media (max-width: 899px) {
  .section-wave-sp {
    background-color: #BCEBE7;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .section-wave-sp::before,
  .section-wave-sp::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    background-image: url(../img/back-wave-blue-bottom.svg);
    background-repeat: repeat-x;
    background-size: 66px auto;
    background-position: top center;
    top: -20px;
  }
  .section-wave-sp::after {
    top: auto;
    bottom: -20px;
    transform: rotate(180deg);
  }
}

/* -------------------------
  INTERVIEW & コラム
------------------------- */
.interview__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}
.interview__item {
  display: grid;
	grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  border-radius: 8px;
  background-color: #fff;
  padding-bottom: 15px;
}
.interview__image {
  grid-column: 1 / 3;
  grid-row: 1;
}
.interview__image img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 250 / 165;
  object-fit: cover;
  object-position: center;
}
.interview__image.position-top img {
  object-position: center 15%;
}
.interview__image.position-top2 img {
  object-position: center 25%;
}
.interview__image.position-center img {
  object-position: center 50%;
}
.interview__image.position-bottom img {
  object-position: center 70%;
}
.interview__text {
  grid-column: 1 / 3;
  grid-row: 2;
  padding: 15px;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: bold;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
   max-height: calc(1.5em * 6.25);
   margin-bottom: 0.5em;
}


.interview__date {
  grid-column: 1;
  grid-row: 3;

  padding-left: 15px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.interview__link-icon {
  grid-column: 2;
  grid-row: 3;

  padding-right: 15px;
  padding-left: 8px;
  display: grid;
  place-content: center;
  justify-self: end;
  border-left: 2px solid rgba(0, 200, 180, 0.3);
}
.interview__link-icon::after {
  content: "";
  background: url(../img/icon-link.svg) center / contain no-repeat;
  width: 12px;
  height: 12px;
}

@media (max-width: 1023px) {
  .interview__inner {
    column-gap: 30px;
  }
  .interview__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .interview__item:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 899px) {
  .contents__wrap {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .interview__inner {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .interview__list {
    grid-row: 2;
  }
}

@media (max-width: 599px) {
  .interview__list {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .interview__item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    grid-template-rows: 1fr auto;
    padding-bottom: 0;
  }
  .interview__image {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .interview__image img {
    aspect-ratio: 1;
    border-radius: 8px 0 0 8px;
    width: 100%;
    height: 100%;
  }
  .interview__text {
    grid-column: 2;
    grid-row: 1;
    padding: 6px;
    padding-left: 10px;

    font-size: 13px;
    -webkit-line-clamp: 4;
    max-height: calc(1.5em * 4.25);
  }
  .interview__date {
    grid-column: 2;
    grid-row: 2;

    padding-left: 10px;
    padding-bottom: 6px;
    font-size: 10px;
  }
  .interview__link-icon {
    grid-column: 3;
    grid-row: 1 / 3;

    align-self: center;
    height: calc(100% - 16px);
    padding-right: 8px;
    padding-left: 8px;
    display: grid;
    place-content: center;
    justify-self: end;
    border-left: 2px solid rgba(0, 200, 180, 0.3);
  }
}

/* -------------------------
  VOICE PHOTOBOOK & 声優トモ写！
------------------------- */
.photo__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo__item {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.photo__item-image {
  width: 100%;
}
.photo__item-image img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 164 / 230;
  object-fit: contain;
}
.photo__item-talents {
  font-size: 14px;
  margin-bottom: 5px;
  text-align: center;
}
.photo__item-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #85949e;
  font-size: 13px;
  margin-bottom: 5px;
  text-align: center;
}
.show-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}


@media (max-width: 899px) {
  .photo__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo__item:nth-child(n+7) {
    display: none;
  }
}

@media (max-width: 599px) {
  .photo__list {
    row-gap: 15px;
    column-gap: 6px
  }

  .photo__item-talents {
    font-size: 13px;
  }
  .photo__item-title {
    font-size: 12px;
  }
}


/* -------------------------
  すべてみる
------------------------- */
.show-more-link {
  width: 200px;
  text-align: center;
  padding: 0.6em 1em;
  padding-bottom: 0.75em;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.show-more-link::after {
  content: "";
  display: inline-block;
  background: url(../img/icon-link-white.svg) center / contain no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 1em;
}


/* -------------------------
  プレイヤー
------------------------- */
.voice-player-area {
  padding-top: 30px;
}

.voice-player {
  background-color: var(--color-main);
  width: 355px;
  border-radius: 16px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}
.voice-player__title {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
  color: #fff;
}
.voice-player__title-icon {
  width: 20px;
  height: 100%;
  margin-right: 0.3em;
  margin-top: 0.1em;
}
.voice-player__swiper {
  position: relative;
}
.voice-player__index {
  position: absolute;
  right: 10px;
  top: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-family: "Inter";
  font-weight: 600;
  padding: 0.25em 0.75em;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  min-width: 4.5em;
  text-align: center;
  bottom: auto;
  left : auto;
  width: auto;
}
.voice-player__slide {
  width: 80%;
  height: 200px;
  background-color: #ccc;
}
.voice-player__controls {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 12px;
  margin: 10px;
  margin-top: 20px;
  position: relative;
}
.voice-player__tap-play {
  position: absolute;
  right: 0;
  top: -5px;
  z-index: 10;
  transition: opacity 0.3s ease-out;
}
.voice-player__tap-play.fade-out {
  opacity: 0;
}
.voice-player__panel1 {
  display: grid;
  grid-template-columns: 1fr auto;
}
.voice-player__panel2 {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 8px;
  margin-bottom: 8px;
}
.voice-player__panel-name {
  font-size: 16px;
  font-weight: bold;
}
.voice-player__panel-title {
  font-size: 12px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: calc(1.5em * 1.25);
}
.voice-player__buttons {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  column-gap: 5px;
}
.voice-player__buttons>* {
  cursor: pointer;
  user-select: none;
}
.voice-player__seekbar-bar {
  background-color: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 3px;
  border-radius: 3px;
  position: relative;
  margin-bottom: 3px;
  cursor: pointer;
}
.voice-player__seekbar-progress {
  height: 100%;
  width: 0%;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.voice-player__footer{
  text-align: center;
}
.voice-player__footer a{
  display: inline-block;;
}
.voice-player__slide-image {
  max-width: 172px;
  filter: drop-shadow(0px 4px 20px rgba(0,0,0,0.25));
}
.voice-player__swiper .swiper-slide-shadow-left,
.voice-player__swiper .swiper-slide-shadow-right {
  background: rgba(0, 200, 180, 0.4);
}
.voice-player__visualizer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
#visualizer {
  width: 172px;
  height: 24px;
  background-color: transparent;
  top: -8px;
  right: 0;
  position: absolute;
}

@media (max-width: 899px) {
  .voice-player-area {
    grid-row: 1;
    margin-left: -15px;
    margin-right: -15px;
    padding: 20px 0;
  }

  .voice-player {
    scroll-margin-top: 30px;
  }
}

/* -------------------------
  フッター
------------------------- */
.footer{
  background-color: #fff;
  min-height: 300px;
  padding-top: 40px;
  padding-bottom: 30px;
}

.footer__inner {
  text-align: center;
}
.footer__logo-wrap {
  display: inline-block;
  margin-bottom: 25px;
}

.footer__service-title {
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
}

.footer__service-list {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer__service-list a {
  display: block;
} 

.footer__copyright-text {
  font-size: 10px;
  margin-bottom: 15px;
  padding: 0 15px;
}

.footer__copyright {
  font-size: 11px;
  padding: 0 15px;
}

@media (max-width: 599px) {
  .footer__inner {
    padding-top: 15px;

  }
  .footer__logo-wrap {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer__logo-wrap img {
    max-width: 500px;
    width: 100%;
    height: 64px;
    object-fit: cover;
    object-position: center;
  }
  .footer__service-list {
    flex-direction: column;
    align-items: center; 
  }
}

/* -------------------------
  ページトップ
------------------------- */
.page-top {
  position: fixed;
  bottom: 40px;
  right: 0px;
  cursor: pointer;
  transition: transform 0.3s ease-out;
  z-index: 1000;
  width: 45px;
  height: 45px;
  background: url(../img/page-top.svg) center / auto auto no-repeat;
  background-position: 18px center;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50% 0 0 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateY(100px);
}
.page-top.is-visible {
  transform: translateY(0);
}


/* -------------------------
  モーダル - VOICE PHOTOBOOKとは？ 
------------------------- */
.voice-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.voice-modal.show {
  opacity: 1;
  visibility: visible;
}

.voice-modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.3s ease;
  width: 90%;
  max-width: 500px;
  height: 85vh;
  max-height: 500px;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
}

.voice-modal.show .voice-modal__body {
  transform: translate(-50%, -50%) scale(1);
}

.voice-modal__content {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.voice-modal__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.voice-modal__logo img {
  max-width: 100%;
}
.voice-modal__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.voice-modal__text {
  font-size: 14px;
  line-height: 1.7;
}