@charset "utf-8";

header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(2, 73, 185, 1) 100%), url(../img/column/bg_header.png) no-repeat center top / cover;
}

header .linelink {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 330px;
  z-index: 101;
  transition: 0.3s ease-in-out;
  height: 75px;
  background-color: #22ba4f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding-right: 25px;
  font-size: 1.8rem;
  line-height: 1.35;
  font-weight: bold;
  color: #fff;
  box-shadow: 2px 3px 10px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

header .linelink:hover {
  opacity: 0.7;
}

header .linelink .top {
  display: block;
  text-align: center;
  font-size: 1.6rem;
}

header .linelink .yellow {
  margin: 0 5px;
  text-align: center;
  font-size: 2.4rem;
  color: #FCF70D;
}

header .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  min-height: 400px;
  margin: 0 auto;
  padding: 0 40px;
}

header .inner h1 {
  letter-spacing: 0.2rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

header .inner h1 .en {
  display: block;
  margin: 0 0 10px;
  color: #A1E2FF;
  font-size: 2rem;
}

header .inner h1 .ja {
  display: block;
  color: #fff;
  font-size: 4.8rem;
}

header .inner .breadcrumb {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 1280px;
}

header .inner ul {
  display: flex;
  padding: 15px 40px;
}

header .inner ul>li {
  font-size: 1.4rem;
  color: #fff;
}

header .inner ul>li::after {
  margin: 0 15px;
  content: ">";
}

header .inner ul>li:last-child::after {
  display: none;
}

header .inner ul>li a {
  color: #fff;
  text-decoration: underline;
}

header .inner ul>li a:hover {
  text-decoration: none;
}

.line_btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

footer {
  padding: 0 0 100px;
}

.fixed_cta {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #22ba4f;
  font-size: 2.4rem;
  transition: opacity 0.3s;
  font-weight: bold;
  z-index: 101;
}

.fixed_cta.fixed {
  visibility: visible;
  opacity: 1;
}

.fixed_cta a {
  display: flex;
  justify-content: center;
  line-height: 1.5;
  margin: 0 auto;
  padding: 10px 80px 10px 0;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.fixed_cta a:hover {
  opacity: 0.7;
}

.fixed_cta a img {
  width: 80px;
}

.fixed_cta a .top {
  display: block;
  font-size: 2rem;
  text-align: center;
}

.fixed_cta a .yellow {
  margin: 0 5px;
  line-height: 1.2;
  font-size: 3.8rem;
  color: #FCF70D;
}


/*-----------------------------------------------------------
  max-width: 768px
-----------------------------------------------------------*/
@media screen and (max-width: 768px) {

  header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(2, 73, 185, 1) 100%), url(../img/column/bg_header_sp.png) no-repeat center top / cover;
  }

  header .linelink {
    display: none;
  }

  header .inner {
    min-height: 102.5vw;
    padding: 0 6.4vw;
  }

  header .inner h1 .en {
    margin: 0 0 5vw;
    font-size: 4.1vw;
  }

  header .inner h1 .ja {
    font-size: 11.8vw;
  }

  header .inner .breadcrumb {
    overflow: auto;
  }

  header .inner ul {
    display: inline-flex;
    padding: 3.8vw 6.4vw;
  }

  header .inner ul>li {
    white-space: nowrap;
    font-size: 3.3vw;
  }

  header .inner ul>li::after {
    margin: 0 3.8vw;
  }

  .line_btn {
    position: sticky;
    top: 0;
    right: 0;
  }

  .line_btn img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 6px rgba(44, 143, 0, 0.4);
  }

  .container {
    padding: 17.9vw 6.4vw;
  }

  .fixed_cta {
    font-size: max(10px, 5vw);
  }

  .fixed_cta a {
    padding: 1.6vw 4.5333333333vw 1.6vw 0;
  }

  .fixed_cta a img {
    width: 12.5333333333vw;
  }

  .fixed_cta a .yellow {
    font-size: min(6.8vw, 28px);
  }
}

/* max-width: 768px ここまで */


/* ===========================================
  page-review
=========================================== */
.voice_list {
  max-width: 1200px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.voice_item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 32px;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice_header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}

.voice_age_gender {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0249B9;
}

.voice_stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star {
  color: #FFD700;
  font-size: 1.6rem;
  letter-spacing: -2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.voice_body p {
  font-size: 1.6rem;
  color: #333;
  margin: 0;
  line-height: 1.8;
}

.voice_pickup {
  display: block;
  color: #e60033;
  font-weight: bold;
  font-size: 0.8em;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.nav-links {
  margin: 80px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 40px;
}

.nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid transparent;
  color: #0249b9;
}

.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  position: relative;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  border-color: #0249b9;
}

.nav-links .page-numbers.prev::before,
.nav-links .page-numbers.next::before {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.nav-links .page-numbers.prev::before {
  left: calc(50% - 2px);
  border-left: 1px solid #0249b9;
  border-bottom: 1px solid #0249b9;
}

.nav-links .page-numbers.next::before {
  right: calc(50% - 2px);
  border-top: 1px solid #0249b9;
  border-right: 1px solid #0249b9;
}

.nav-links .page-numbers.prev:hover,
.nav-links .page-numbers.next:hover {
  background: #0249b9;
}

.nav-links .page-numbers.prev:hover::before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.nav-links .page-numbers.next:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}


/*-----------------------------------------------------------
  max-width: 768px
-----------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .voice_list {
    margin: 0 auto;
    width: 87.1794871795vw;
  }

  .voice_item {
    padding: 6vw 4vw 5vw 4vw;
    margin-bottom: 6vw;
  }

  .voice_header {
    gap: 3vw;
  }

  .voice_age_gender {
    font-size: 3.8vw;
  }

  .star {
    font-size: 4vw;
  }

  .voice_body p {
    font-size: 3.8vw;
  }


  .nav-links {
    margin: 20.5vw 0 0;
    gap: 7.6vw 9vw;
  }

  .nav-links .page-numbers {
    min-width: 9.7vw;
    min-height: 9.7vw;
  }

  .nav-links .page-numbers.prev::before,
  .nav-links .page-numbers.next::before {
    width: 2vw;
    height: 2vw;
  }

}

/* max-width: 768px ここまで */