@charset "UTF-8";
/*
import global components
*/
/*
#  scss mixin
1. background-image-retina
*/
/* about */
/*
    必須引数として「拡張子を除く画像パス」と「拡張子」を指定することで、メディアクエリのRetina対応コードを出力。
    */
/* usage */
/*
    // --- scss code
    .section--index.section--01.loaded {
        @include background-image-retina('../img/index/desktop/section--01', 'jpg');
        background-size: 1308px 600px;
    }

    // --- output css
    .section--index.section--01.loaded {
        background-image:url("../img/index/desktop/section--01.jpg");
        background-size:1308px 600px;
    }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi){
        .section--index.section--01.loaded {
            background-image:url("../img/index/desktop/section--01@2x.jpg");
        }
    }
    ---
    */
/*
import page components
*/
.billboard {
  position: relative;
  padding: 0;
}
@media (max-width: 639px) {
  .billboard {
    margin-bottom: 50px;
  }
}
@media (min-width: 640px) {
  .billboard {
    margin-bottom: 80px;
  }
}
.billboard .billboard-image img {
  width: 100%;
  height: auto;
}

body.interview .billboard .billboard-background .shape-divider .shape-fill {
  fill: #272727;
}

.overview {
  text-align: left;
}
@media (min-width: 640px) {
  .overview {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 0 0 80px;
    text-align: center;
  }
}
.overview .tagline {
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
}
@media (min-width: 640px) {
  .overview .tagline {
    font-size: 40px;
  }
}
@media (min-width: 640px) {
  .overview .introduction {
    font-size: 20px;
    text-align: left;
  }
}
.overview .publish_date_from {
  position: relative;
  margin-top: 10px;
  text-align: right;
}
@media (min-width: 640px) {
  .overview .publish_date_from {
    margin-top: 20px;
  }
}
.overview .publish_date_from::before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 0.3rem;
  margin-right: 1rem;
  border-top: 1px solid #fff;
}

@media (max-width: 639px) {
  .section__written_by {
    padding-top: 60px;
    text-align: center;
  }
}
@media (min-width: 640px) {
  .section__written_by {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    display: flex;
    margin: 0 auto 80px;
    padding: 0;
    align-items: center;
  }
}
@media (max-width: 639px) {
  .section__written_by .image {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    margin: 0 auto 10px;
  }
}
@media (min-width: 640px) {
  .section__written_by .image {
    width: 140px;
    height: 140px;
    margin-right: 30px;
    border-radius: 70px;
  }
}
@media (max-width: 639px) {
  .section__written_by .profile {
    font-size: 0.8rem;
  }
}
.section__written_by .profile .name {
  color: #000;
}

@media (max-width: 639px) {
  .section__contentsbody {
    margin-bottom: 60px;
  }
}
@media (min-width: 640px) {
  .section__contentsbody {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto 80px;
    padding: 0 0 50px;
  }
}
.section__contentsbody > h2 {
  color: #000;
}
@media (max-width: 639px) {
  .section__contentsbody > h2 {
    margin-bottom: 20px;
    padding-top: 40px;
    line-height: 1.5;
  }
}
@media (min-width: 640px) {
  .section__contentsbody > h2 {
    padding-top: 20px;
    font-size: 2.2rem;
  }
}
.section__contentsbody a {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 639px) {
  .section__contentsbody > p {
    margin-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .section__contentsbody > p {
    margin-bottom: 40px;
  }
}
.section__contentsbody > p.interviewer {
  position: relative;
  padding-top: 20px;
  color: #0DB5C6;
}
@media (max-width: 639px) {
  .section__contentsbody > p.interviewer {
    padding-left: 40px;
  }
}
@media (min-width: 640px) {
  .section__contentsbody > p.interviewer {
    padding-left: 80px;
  }
}
.section__contentsbody > p.interviewer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: calc(1em + 20px);
  border-bottom: 1px solid #0DB5C6;
}
@media (max-width: 639px) {
  .section__contentsbody > p.interviewer::before {
    width: 30px;
  }
}
@media (min-width: 640px) {
  .section__contentsbody > p.interviewer::before {
    width: 70px;
  }
}
.section__contentsbody > p strong {
  color: #000;
}
.section__contentsbody audio {
  width: 100% !important;
  max-width: 780px;
}
@media (max-width: 639px) {
  .section__contentsbody audio {
    margin-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .section__contentsbody audio {
    margin-bottom: 40px;
  }
}
.section__contentsbody hr {
  width: 200px;
  margin: 60px auto;
  border: 1px solid #666;
}
.section__contentsbody > .image_wrap {
  width: 100%;
  height: auto;
  max-height: 800px;
  margin: 0 auto 40px;
}
@media (max-width: 639px) {
  .section__contentsbody > .image_wrap {
    margin-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .section__contentsbody > .image_wrap {
    margin-bottom: 60px;
  }
}
.section__contentsbody > .image_wrap .image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 800px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .section__contentsbody figure {
    margin-bottom: 20px;
  }
  .section__contentsbody figure > .image_wrap {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .section__contentsbody figure > .image_wrap .image {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
@media (min-width: 640px) {
  .section__contentsbody figure {
    margin-bottom: 60px;
  }
  .section__contentsbody figure > .image_wrap {
    width: 100%;
    height: auto;
    max-height: 800px;
    margin-bottom: 10px;
  }
  .section__contentsbody figure > .image_wrap .image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 800px;
    margin: 0;
  }
}
.section__contentsbody figure > figcaption {
  font-style: italic;
}
@media (max-width: 639px) {
  .section__contentsbody figure > figcaption {
    padding-left: 10px;
    border-left: 1px solid #707070;
    font-size: 0.9rem;
  }
}
@media (min-width: 640px) {
  .section__contentsbody figure > figcaption {
    position: relative;
    padding-left: 50px;
    font-size: 0.9rem;
    color: #000;
  }
  .section__contentsbody figure > figcaption::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 0.8rem;
    border-bottom: 1px solid #000;
  }
}
.section__contentsbody .video .youtube {
  z-index: 1;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
@media (max-width: 639px) {
  .section__contentsbody .video .youtube {
    margin: 0 0 40px 0;
  }
}
@media (min-width: 640px) {
  .section__contentsbody .video .youtube {
    margin: 0 0 60px 0;
  }
}
.section__contentsbody .video .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.section__contentsbody.section__casestudy > div {
  display: grid;
  gap: 20px;
  grid-template-columns: 40% 60%;
  place-items: center center;
  margin-bottom: 60px;
  /*
   * Responsive
  */
}
.section__contentsbody.section__casestudy > div > div {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 50px;
  padding: 50px 40px;
}
.section__contentsbody.section__casestudy > div > .summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #000;
}
.section__contentsbody.section__casestudy > div > .summary > p {
  margin: 0;
  font-size: 3.1rem;
  font-weight: bold;
  line-height: 1.4;
}
.section__contentsbody.section__casestudy > div > .description {
  text-align: center;
  color: #000;
}
.section__contentsbody.section__casestudy > div > .description > .product {
  margin-bottom: 20px;
}
.section__contentsbody.section__casestudy > div > .description > .product img {
  margin: 0 auto 30px;
}
.section__contentsbody.section__casestudy > div > .description > .product > .name {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
}
.section__contentsbody.section__casestudy > div > .description > .product > .current_price {
  font-size: 1.5rem;
  margin-left: -0.3em;
}
.section__contentsbody.section__casestudy > div > .description > .product > .current_price::before {
  content: "¥";
  font-size: 0.6em;
}
.section__contentsbody.section__casestudy > div > .description > p {
  text-align: left;
}
@media (max-width: 979px) {
  .section__contentsbody.section__casestudy > div {
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 799px) {
  .section__contentsbody.section__casestudy > div {
    display: block;
  }
  .section__contentsbody.section__casestudy > div > .summary {
    margin-bottom: 20px;
  }
}
@media (max-width: 439px) {
  .section__contentsbody.section__casestudy > div {
    display: block;
  }
  .section__contentsbody.section__casestudy > div > div {
    border-radius: 30px;
    padding: 50px 5%;
  }
  .section__contentsbody.section__casestudy > div > .summary > p {
    font-size: 2.2rem;
  }
}
@media (max-width: 799px) {
  .section__contentsbody {
    padding-bottom: 10px;
  }
}
.section__contentsbody .__colored {
  background-color: #333;
  color: #fff;
}
.section__contentsbody .__colored > p,
.section__contentsbody .__colored > .product {
  color: #fff;
}

/*
* Single page style
*/
.perfect-low-end-treatment .__colored {
  background-color: #5f2b69;
}

.techniques-of-vocal-trackmaking-for-hit-chart .__colored {
  background-color: #770045;
}

.distortion-essential-to-mixes-for-modern-tracks .__colored {
  background-color: #795421;
}

.section__article {
  background-color: #fff;
  color: #707070;
}
@media (max-width: 639px) {
  .section__article {
    padding-bottom: 0;
  }
}
@media (min-width: 640px) {
  .section__article {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 0 0 50px;
  }
}

.section__promotion {
  background-color: #0db5c6;
  background-image: url("/svg/waves.svg");
}
@media (max-width: 639px) {
  .section__promotion {
    padding-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .section__promotion {
    margin-bottom: 80px;
    padding-bottom: 20px;
  }
}
.section__promotion .title {
  color: #fff;
}
.section__promotion .products {
  padding-top: 0;
}
.section__promotion .products .product.type_content {
  box-shadow: none;
}
@media (max-width: 639px) {
  .section__promotion .products .product.type_content {
    padding-bottom: 0;
  }
}
.section__promotion .products .product.type_content .image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 61.50943396%;
  border-radius: 10px;
  transition: box-shadow 0.3s;
}
.section__promotion .products .product.type_content .image-wrap .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__promotion .products .product.type_content .title {
  margin-top: 15px;
  font-weight: bold;
  color: #fff;
}
.section__promotion .products .product.type_content .text {
  display: none;
}
.section__promotion .products .product.type_content:hover {
  box-shadow: none;
}
.section__promotion .products .product.type_content:hover .image-wrap {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 50px;
}

.section__recomend_items {
  background-color: #fff;
  color: #707070;
}
@media (min-width: 640px) {
  .section__recomend_items {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 0 0 80px;
  }
}

/*
インタビューページ（背景ダーク色）
*/
@media (max-width: 639px) {
  .interview .section__promotion {
    padding-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .interview .section__promotion {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .interview .section__article {
    padding-top: 80px;
  }
}
.interview .section__article,
.interview .section__recomend_items {
  width: 100%;
  max-width: 100%;
  background-color: #fff;
}
@media (min-width: 640px) {
  .interview .section__article .view-area,
  .interview .section__recomend_items .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 0;
  }
}

body.interview {
  background-color: #272727;
  color: #fff;
}
body.interview .overview .tagline {
  color: #fff;
}
body.interview .section__written_by .profile .name {
  color: #fff;
}
body.interview .section__contentsbody > h2 {
  color: #fff;
}
body.interview .section__contentsbody a {
  color: #fff;
}

.improve-installed-audio-houses-of-worship .overview,
.improve-installed-audio-public-facilities .overview,
.improve-installed-audio-retail .overview {
  display: none;
}

.section__ca {
  padding-bottom: 0;
}
@media (max-width: 639px) {
  .section__ca {
    padding-top: 20px;
  }
}
.section__ca > .ca_overview {
  text-align: left;
}
.section__ca > .ca_overview > .waves-ca-logo {
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .section__ca > .ca_overview > .waves-ca-logo {
    max-width: 90%;
  }
}
.section__ca > .ca_overview > .title {
  margin-bottom: 20px;
  font-family: "Montserrat";
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 639px) {
  .section__ca > .ca_overview > .title {
    margin-bottom: 60px;
    font-size: 38px;
  }
}
@media (min-width: 640px) {
  .section__ca > .ca_overview > .title {
    margin-bottom: 80px;
    font-size: 56px;
  }
}
.section__ca > .ca_overview > .tagline {
  padding: 0;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
}
@media (max-width: 639px) {
  .section__ca > .ca_overview > .tagline {
    font-size: 24px;
  }
}
@media (min-width: 640px) {
  .section__ca > .ca_overview > .tagline {
    font-size: 40px;
  }
}
.section__ca > .inquiry {
  background-color: #26293f;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 30px;
  color: #fff;
  text-align: center;
}
@media (max-width: 639px) {
  .section__ca > .inquiry {
    margin: 0 auto 60px;
    padding: 50px 5%;
  }
}
@media (min-width: 640px) {
  .section__ca > .inquiry {
    overflow: visible;
    max-width: 1118px;
    margin: 0 auto 80px;
    padding: 50px;
  }
}
.section__ca > .inquiry > .title {
  font-size: 30px;
  font-weight: normal;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 639px) {
  .section__ca > .inquiry > .title {
    margin-bottom: 10px;
  }
}
@media (min-width: 640px) {
  .section__ca > .inquiry > .title {
    font-size: 42px;
    font-weight: normal;
  }
}
.section__ca > .inquiry > .text {
  margin-bottom: 20px;
}
.section__ca > .inquiry > .button {
  display: block;
  width: 160px;
  height: 40px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  color: #26293f;
}
@media (max-width: 639px) {
  .section__ca > .ca_ststem {
    margin-bottom: 60px;
  }
  .section__ca > .ca_ststem img {
    margin-top: 60px;
  }
}
@media (min-width: 640px) {
  .section__ca > .ca_ststem {
    margin-bottom: 80px;
  }
}
.section__ca > .ca_ststem .number {
  counter-reset: number;
  list-style: none;
  padding-left: 35px;
}
.section__ca > .ca_ststem .number li {
  position: relative;
}
.section__ca > .ca_ststem .number li:not(:last-child) {
  margin-bottom: 10px;
}
.section__ca > .ca_ststem .number li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 4px;
  left: -35px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #333;
  font-size: 0.9rem;
  text-align: center;
  line-height: 25px;
  color: #fff;
}
@media (max-width: 639px) {
  .section__ca > .ca_difference {
    margin-bottom: 60px;
  }
}
@media (min-width: 640px) {
  .section__ca > .ca_difference {
    padding-bottom: 80px;
  }
}
.section__ca > .ca_difference > .title {
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Montserrat";
}
.section__ca > .ca_difference > .point {
  margin-bottom: 0;
}
.section__ca > .ca_advantage > .title {
  margin-bottom: 20px;
  line-height: 1.2;
}
.section__ca > .ca_advantage > .features {
  padding-top: 20px;
}
@media (max-width: 639px) {
  .section__ca > .ca_products {
    margin-bottom: 60px;
  }
}
@media (min-width: 640px) {
  .section__ca > .ca_products {
    margin-bottom: 80px;
  }
}
.section__ca > .ca_products a {
  color: #707070;
  text-decoration: none;
}
@media (max-width: 639px) {
  .section__ca > .ca_products .products {
    gap: 25px 0;
    grid-template-columns: 100%;
  }
}
@media (min-width: 640px) {
  .section__ca > .ca_products .products {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(160px, calc(50% - 12.5px)));
  }
}
.section__ca > .ca_products .products .product {
  transition: background-color 0.3s, opacity 1.4s, transform 1s;
}
@media (min-width: 640px) {
  .section__ca > .ca_products .products .product:hover {
    background-color: #e6e6e6;
  }
}
.section__ca .features {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  padding: 60px 0;
}
@media (min-width: 640px) {
  .section__ca .features {
    padding: 80px 0;
  }
}
@media (min-width: 880px) {
  .section__ca .features {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section__ca .features .feature {
  padding: 20px 8%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
  text-align: center;
}
@media (min-width: 640px) {
  .section__ca .features .feature {
    padding: 40px 5%;
    text-align: center;
  }
}
.section__ca .features .feature img {
  width: 148px;
  max-width: 90%;
  height: 60.81081081%;
  margin: 0 auto 30px;
}
.section__ca .features .feature .title {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  color: #000;
}
.section__ca .features .feature .text {
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 640px) {
  .section__ca .features .feature .text {
    text-align: center;
  }
}
.section__ca .features .feature .point li {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"><path fill="%23000000" d="M7,0A6.957,6.957,0,0,0,0,7a6.957,6.957,0,0,0,7,7,6.957,6.957,0,0,0,7-7A6.957,6.957,0,0,0,7,0ZM9.9,6,6.8,9.1a1.421,1.421,0,0,1-.6.2.764.764,0,0,1-.5-.2L4.1,7.5A.778.778,0,0,1,5.2,6.4l1,1L8.8,4.8a.785.785,0,0,1,1.1,0A.91.91,0,0,1,9.9,6Z"/></svg>');
}
.section__ca .point {
  text-align: left;
}
@media (max-width: 639px) {
  .section__ca .point {
    font-size: 0.9rem;
  }
}
@media (min-width: 640px) {
  .section__ca .point {
    margin-bottom: 60px;
    font-size: 1rem;
  }
}
.section__ca .point li {
  padding-left: 1.6rem;
  background: no-repeat 0 5px;
  background-size: 18px 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"><path fill="%2326293F" d="M7,0A6.957,6.957,0,0,0,0,7a6.957,6.957,0,0,0,7,7,6.957,6.957,0,0,0,7-7A6.957,6.957,0,0,0,7,0ZM9.9,6,6.8,9.1a1.421,1.421,0,0,1-.6.2.764.764,0,0,1-.5-.2L4.1,7.5A.778.778,0,0,1,5.2,6.4l1,1L8.8,4.8a.785.785,0,0,1,1.1,0A.91.91,0,0,1,9.9,6Z"/></svg>');
}
.section__ca .point li:not(:last-child) {
  margin-bottom: 6px;
}

.my-favorite-waves {
  /*
   * Overwrite global styles
  */
  /*
   * Special design
  */
}
.my-favorite-waves main {
  background-color: #1c1c1c;
  color: #fff;
}
@media (max-width: 639px) {
  .my-favorite-waves .view-area {
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
  }
}
.my-favorite-waves .billboard {
  position: relative;
}
.my-favorite-waves .billboard::after {
  content: "";
  display: block;
  position: absolute;
  background: no-repeat center center;
  background-size: contain;
}
@media (max-width: 639px) {
  .my-favorite-waves .billboard::after {
    top: 20%;
    left: 5%;
    width: 256.7px;
    height: 241.4px;
    background-image: url("/image/articles/my-favorite-waves/mobile-my-favorite-waves.svg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .billboard::after {
    top: 4vw;
    left: calc(50% - 18vw);
    width: 36vw;
    height: 89.90953375%;
    background-image: url("/image/articles/my-favorite-waves/desktop-my-favorite-waves.svg");
  }
}
.my-favorite-waves .billboard .billboard-background .shape-divider .shape-fill {
  fill: #1c1c1c;
}
@media (max-width: 639px) {
  .my-favorite-waves .overview {
    padding-bottom: 60px;
  }
}
.my-favorite-waves .overview .tagline {
  color: #fff;
}
.my-favorite-waves .section {
  padding: 0;
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres {
    padding-bottom: 40px;
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres > .view-area {
    width: 100%;
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
.my-favorite-waves .section_owneres .owneres > a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a {
    text-align: right;
    margin-bottom: 80px;
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a {
    margin-bottom: 40px;
  }
}
.my-favorite-waves .section_owneres .owneres > a > .thumbnail {
  width: 100%;
  background: no-repeat center left;
  background-size: cover;
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail {
    height: 640px;
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail {
    height: 500px;
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.gregory_germain {
    background-position: center center;
    background-image: url("/image/articles/my-favorite-waves/mobile-gregory-germain.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.gregory_germain {
    background-image: url("/image/articles/my-favorite-waves/mobile-gregory-germain@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nakajin {
    background-image: url("/image/articles/my-favorite-waves/mobile-nakajin.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nakajin {
    background-image: url("/image/articles/my-favorite-waves/mobile-nakajin@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hajime_nagai {
    background-image: url("/image/articles/my-favorite-waves/mobile-hajime_nagai.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hajime_nagai {
    background-image: url("/image/articles/my-favorite-waves/mobile-hajime_nagai@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.kenichi_koga {
    background-image: url("/image/articles/my-favorite-waves/mobile-kenichi_koga.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.kenichi_koga {
    background-image: url("/image/articles/my-favorite-waves/mobile-kenichi_koga@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yasumoto_shingo {
    background-image: url("/image/articles/my-favorite-waves/mobile-yasumoto_shingo.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yasumoto_shingo {
    background-image: url("/image/articles/my-favorite-waves/mobile-yasumoto_shingo@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nobuyuki_fujiwara {
    background-image: url("/image/articles/my-favorite-waves/mobile-nobuyuki_fujiwara.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nobuyuki_fujiwara {
    background-image: url("/image/articles/my-favorite-waves/mobile-nobuyuki_fujiwara@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yosuke_sato {
    background-position: center center;
    background-image: url("/image/articles/my-favorite-waves/mobile-yosuke_sato.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yosuke_sato {
    background-image: url("/image/articles/my-favorite-waves/mobile-yosuke_sato@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_daichi_suzuki {
    background-position: center center;
    background-image: url("/image/articles/my-favorite-waves/mobile-hideyuki_daichi_suzuki.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_daichi_suzuki {
    background-image: url("/image/articles/my-favorite-waves/mobile-hideyuki_daichi_suzuki@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_ashizawa {
    background-position: left center;
    background-image: url("/image/articles/my-favorite-waves/mobile-hideyuki_ashizawa.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_ashizawa {
    background-image: url("/image/articles/my-favorite-waves/mobile-hideyuki_ashizawa@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.makino_tadayoshi {
    background-position: center center;
    background-image: url("/image/articles/my-favorite-waves/mobile-makino_tadayoshi.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.makino_tadayoshi {
    background-image: url("/image/articles/my-favorite-waves/mobile-makino_tadayoshi@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.shinri_fukui {
    background-position: center center;
    background-image: url("/image/articles/my-favorite-waves/mobile-shinri_fukui.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.shinri_fukui {
    background-image: url("/image/articles/my-favorite-waves/mobile-shinri_fukui@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.gregory_germain {
    background-image: url("/image/articles/my-favorite-waves/desktop-gregory_germain.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.gregory_germain {
    background-image: url("/image/articles/my-favorite-waves/desktop-gregory_germain@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nakajin {
    background-image: url("/image/articles/my-favorite-waves/desktop-nakajin.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nakajin {
    background-image: url("/image/articles/my-favorite-waves/desktop-nakajin@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hajime_nagai {
    background-image: url("/image/articles/my-favorite-waves/desktop-hajime_nagai.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hajime_nagai {
    background-image: url("/image/articles/my-favorite-waves/desktop-hajime_nagai@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.kenichi_koga {
    background-image: url("/image/articles/my-favorite-waves/desktop-kenichi_koga.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.kenichi_koga {
    background-image: url("/image/articles/my-favorite-waves/desktop-kenichi_koga@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yasumoto_shingo {
    background-image: url("/image/articles/my-favorite-waves/desktop-yasumoto_shingo.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yasumoto_shingo {
    background-image: url("/image/articles/my-favorite-waves/desktop-yasumoto_shingo@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nobuyuki_fujiwara {
    background-image: url("/image/articles/my-favorite-waves/desktop-nobuyuki_fujiwara.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.nobuyuki_fujiwara {
    background-image: url("/image/articles/my-favorite-waves/desktop-nobuyuki_fujiwara@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yosuke_sato {
    background-image: url("/image/articles/my-favorite-waves/desktop-yosuke_sato.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.yosuke_sato {
    background-image: url("/image/articles/my-favorite-waves/desktop-yosuke_sato@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_daichi_suzuki {
    background-image: url("/image/articles/my-favorite-waves/desktop-hideyuki_daichi_suzuki.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_daichi_suzuki {
    background-image: url("/image/articles/my-favorite-waves/desktop-hideyuki_daichi_suzuki@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_ashizawa {
    background-image: url("/image/articles/my-favorite-waves/desktop-hideyuki_ashizawa.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.hideyuki_ashizawa {
    background-image: url("/image/articles/my-favorite-waves/desktop-hideyuki_ashizawa@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.makino_tadayoshi {
    background-image: url("/image/articles/my-favorite-waves/desktop-makino_tadayoshi.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.makino_tadayoshi {
    background-image: url("/image/articles/my-favorite-waves/desktop-makino_tadayoshi@2x.jpg");
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.shinri_fukui {
    background-image: url("/image/articles/my-favorite-waves/desktop-shinri_fukui.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .my-favorite-waves .section_owneres .owneres > a > .thumbnail.shinri_fukui {
    background-image: url("/image/articles/my-favorite-waves/desktop-shinri_fukui@2x.jpg");
  }
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .words {
    position: absolute;
    top: 0;
    left: 5%;
    width: 100%;
    height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.6rem;
    text-align: left;
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .words {
    padding: 36px 0 30px 0;
    font-size: 1.4rem;
  }
}
.my-favorite-waves .section_owneres .owneres > a > .words > span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .profile {
    margin: -20px auto 10px 0;
    padding: 0 5%;
    text-align: left;
  }
}
@media (min-width: 640px) {
  .my-favorite-waves .section_owneres .owneres > a > .profile {
    margin-bottom: 40px;
  }
}
.my-favorite-waves .section_owneres .owneres > a > .profile > .name {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #bb9d70;
}
.my-favorite-waves .section_owneres .owneres > a > .link {
  text-decoration: underline;
}
@media (max-width: 639px) {
  .my-favorite-waves .section_owneres .owneres > a > .link {
    padding-right: 5%;
  }
}
.my-favorite-waves .section_snrec {
  padding: 80px 0;
  background-color: #373741;
  text-align: center;
}
.my-favorite-waves .section_snrec .image_wrap > img {
  margin: 0 auto 20px;
}
@media (max-width: 639px) {
  .my-favorite-waves .section_snrec .image_wrap > img {
    max-width: 300px;
  }
}
.my-favorite-waves .section_snrec .we-want-waves {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding-top: 40px;
}
.my-favorite-waves .section_snrec .we-want-waves .image_wrap > img {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .my-favorite-waves .section_snrec .we-want-waves .image_wrap > img {
    max-width: 100%;
  }
}

.waves_plugin_review_nakajin-sekai-no-owari,
.waves_plugin_review_hajime_nagai,
.waves_review_kenichi_koga,
.waves_plugin_review_yasumoto_shingo,
.waves_review_nobuyuki_fujiwara,
.waves_plugin_review_yosuke_sato,
.waves_plugin_review_hideyuki_daichi_suzuki,
.my-favorite-waves-hideyuki-ashizawa,
.my-favorite-waves-makino-tadayoshi,
.my-favorite-waves-shinri-fukui,
.waves_plugin_review_gregory_germain {
  /*
   * Overwrite global styles
  */
}
.waves_plugin_review_nakajin-sekai-no-owari main,
.waves_plugin_review_hajime_nagai main,
.waves_review_kenichi_koga main,
.waves_plugin_review_yasumoto_shingo main,
.waves_review_nobuyuki_fujiwara main,
.waves_plugin_review_yosuke_sato main,
.waves_plugin_review_hideyuki_daichi_suzuki main,
.my-favorite-waves-hideyuki-ashizawa main,
.my-favorite-waves-makino-tadayoshi main,
.my-favorite-waves-shinri-fukui main,
.waves_plugin_review_gregory_germain main {
  background-color: #1c1c1c;
  color: #fff;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section,
  .waves_plugin_review_hajime_nagai .section,
  .waves_review_kenichi_koga .section,
  .waves_plugin_review_yasumoto_shingo .section,
  .waves_review_nobuyuki_fujiwara .section,
  .waves_plugin_review_yosuke_sato .section,
  .waves_plugin_review_hideyuki_daichi_suzuki .section,
  .my-favorite-waves-hideyuki-ashizawa .section,
  .my-favorite-waves-makino-tadayoshi .section,
  .my-favorite-waves-shinri-fukui .section,
  .waves_plugin_review_gregory_germain .section {
    padding: 60px 0;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section,
  .waves_plugin_review_hajime_nagai .section,
  .waves_review_kenichi_koga .section,
  .waves_plugin_review_yasumoto_shingo .section,
  .waves_review_nobuyuki_fujiwara .section,
  .waves_plugin_review_yosuke_sato .section,
  .waves_plugin_review_hideyuki_daichi_suzuki .section,
  .my-favorite-waves-hideyuki-ashizawa .section,
  .my-favorite-waves-makino-tadayoshi .section,
  .my-favorite-waves-shinri-fukui .section,
  .waves_plugin_review_gregory_germain .section {
    padding: 80px 0;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .section .logo__title,
.waves_plugin_review_hajime_nagai .section .logo__title,
.waves_review_kenichi_koga .section .logo__title,
.waves_plugin_review_yasumoto_shingo .section .logo__title,
.waves_review_nobuyuki_fujiwara .section .logo__title,
.waves_plugin_review_yosuke_sato .section .logo__title,
.waves_plugin_review_hideyuki_daichi_suzuki .section .logo__title,
.my-favorite-waves-hideyuki-ashizawa .section .logo__title,
.my-favorite-waves-makino-tadayoshi .section .logo__title,
.my-favorite-waves-shinri-fukui .section .logo__title,
.waves_plugin_review_gregory_germain .section .logo__title {
  margin: 0 auto;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section .logo__title,
  .waves_plugin_review_hajime_nagai .section .logo__title,
  .waves_review_kenichi_koga .section .logo__title,
  .waves_plugin_review_yasumoto_shingo .section .logo__title,
  .waves_review_nobuyuki_fujiwara .section .logo__title,
  .waves_plugin_review_yosuke_sato .section .logo__title,
  .waves_plugin_review_hideyuki_daichi_suzuki .section .logo__title,
  .my-favorite-waves-hideyuki-ashizawa .section .logo__title,
  .my-favorite-waves-makino-tadayoshi .section .logo__title,
  .my-favorite-waves-shinri-fukui .section .logo__title,
  .waves_plugin_review_gregory_germain .section .logo__title {
    max-height: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .view-area,
  .waves_plugin_review_hajime_nagai .view-area,
  .waves_review_kenichi_koga .view-area,
  .waves_plugin_review_yasumoto_shingo .view-area,
  .waves_review_nobuyuki_fujiwara .view-area,
  .waves_plugin_review_yosuke_sato .view-area,
  .waves_plugin_review_hideyuki_daichi_suzuki .view-area,
  .my-favorite-waves-hideyuki-ashizawa .view-area,
  .my-favorite-waves-makino-tadayoshi .view-area,
  .my-favorite-waves-shinri-fukui .view-area,
  .waves_plugin_review_gregory_germain .view-area {
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .view-area,
  .waves_plugin_review_hajime_nagai .view-area,
  .waves_review_kenichi_koga .view-area,
  .waves_plugin_review_yasumoto_shingo .view-area,
  .waves_review_nobuyuki_fujiwara .view-area,
  .waves_plugin_review_yosuke_sato .view-area,
  .waves_plugin_review_hideyuki_daichi_suzuki .view-area,
  .my-favorite-waves-hideyuki-ashizawa .view-area,
  .my-favorite-waves-makino-tadayoshi .view-area,
  .my-favorite-waves-shinri-fukui .view-area,
  .waves_plugin_review_gregory_germain .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .billboard,
.waves_plugin_review_hajime_nagai .billboard,
.waves_review_kenichi_koga .billboard,
.waves_plugin_review_yasumoto_shingo .billboard,
.waves_review_nobuyuki_fujiwara .billboard,
.waves_plugin_review_yosuke_sato .billboard,
.waves_plugin_review_hideyuki_daichi_suzuki .billboard,
.my-favorite-waves-hideyuki-ashizawa .billboard,
.my-favorite-waves-makino-tadayoshi .billboard,
.my-favorite-waves-shinri-fukui .billboard,
.waves_plugin_review_gregory_germain .billboard {
  position: relative;
  overflow: visible;
  padding: 0;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard,
  .waves_plugin_review_hajime_nagai .billboard,
  .waves_review_kenichi_koga .billboard,
  .waves_plugin_review_yasumoto_shingo .billboard,
  .waves_review_nobuyuki_fujiwara .billboard,
  .waves_plugin_review_yosuke_sato .billboard,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard,
  .my-favorite-waves-hideyuki-ashizawa .billboard,
  .my-favorite-waves-makino-tadayoshi .billboard,
  .my-favorite-waves-shinri-fukui .billboard,
  .waves_plugin_review_gregory_germain .billboard {
    padding: 0;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard,
  .waves_plugin_review_hajime_nagai .billboard,
  .waves_review_kenichi_koga .billboard,
  .waves_plugin_review_yasumoto_shingo .billboard,
  .waves_review_nobuyuki_fujiwara .billboard,
  .waves_plugin_review_yosuke_sato .billboard,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard,
  .my-favorite-waves-hideyuki-ashizawa .billboard,
  .my-favorite-waves-makino-tadayoshi .billboard,
  .my-favorite-waves-shinri-fukui .billboard,
  .waves_plugin_review_gregory_germain .billboard {
    padding: 0 0 150px 0;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background,
.waves_plugin_review_hajime_nagai .billboard .billboard-background,
.waves_review_kenichi_koga .billboard .billboard-background,
.waves_plugin_review_yasumoto_shingo .billboard .billboard-background,
.waves_review_nobuyuki_fujiwara .billboard .billboard-background,
.waves_plugin_review_yosuke_sato .billboard .billboard-background,
.waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background,
.my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background,
.my-favorite-waves-makino-tadayoshi .billboard .billboard-background,
.my-favorite-waves-shinri-fukui .billboard .billboard-background,
.waves_plugin_review_gregory_germain .billboard .billboard-background {
  width: 100%;
  overflow: hidden;
  background: #1c1c1c no-repeat;
  background-size: cover;
  background-image: url("/image/articles/my-favorite-waves/desktop-billboard.jpg");
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background,
  .waves_plugin_review_hajime_nagai .billboard .billboard-background,
  .waves_review_kenichi_koga .billboard .billboard-background,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-background,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-background,
  .waves_plugin_review_yosuke_sato .billboard .billboard-background,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-background,
  .my-favorite-waves-shinri-fukui .billboard .billboard-background,
  .waves_plugin_review_gregory_germain .billboard .billboard-background {
    background-image: url("/image/articles/my-favorite-waves/desktop-billboard@2x.jpg");
  }
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background,
  .waves_plugin_review_hajime_nagai .billboard .billboard-background,
  .waves_review_kenichi_koga .billboard .billboard-background,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-background,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-background,
  .waves_plugin_review_yosuke_sato .billboard .billboard-background,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-background,
  .my-favorite-waves-shinri-fukui .billboard .billboard-background,
  .waves_plugin_review_gregory_germain .billboard .billboard-background {
    height: 420px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background,
  .waves_plugin_review_hajime_nagai .billboard .billboard-background,
  .waves_review_kenichi_koga .billboard .billboard-background,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-background,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-background,
  .waves_plugin_review_yosuke_sato .billboard .billboard-background,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-background,
  .my-favorite-waves-shinri-fukui .billboard .billboard-background,
  .waves_plugin_review_gregory_germain .billboard .billboard-background {
    height: 560px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background .shape-divider,
.waves_plugin_review_hajime_nagai .billboard .billboard-background .shape-divider,
.waves_review_kenichi_koga .billboard .billboard-background .shape-divider,
.waves_plugin_review_yasumoto_shingo .billboard .billboard-background .shape-divider,
.waves_review_nobuyuki_fujiwara .billboard .billboard-background .shape-divider,
.waves_plugin_review_yosuke_sato .billboard .billboard-background .shape-divider,
.waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background .shape-divider,
.my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background .shape-divider,
.my-favorite-waves-makino-tadayoshi .billboard .billboard-background .shape-divider,
.my-favorite-waves-shinri-fukui .billboard .billboard-background .shape-divider,
.waves_plugin_review_gregory_germain .billboard .billboard-background .shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background .shape-divider,
  .waves_plugin_review_hajime_nagai .billboard .billboard-background .shape-divider,
  .waves_review_kenichi_koga .billboard .billboard-background .shape-divider,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-background .shape-divider,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-background .shape-divider,
  .waves_plugin_review_yosuke_sato .billboard .billboard-background .shape-divider,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background .shape-divider,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background .shape-divider,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-background .shape-divider,
  .my-favorite-waves-shinri-fukui .billboard .billboard-background .shape-divider,
  .waves_plugin_review_gregory_germain .billboard .billboard-background .shape-divider {
    bottom: 0;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background .shape-divider,
  .waves_plugin_review_hajime_nagai .billboard .billboard-background .shape-divider,
  .waves_review_kenichi_koga .billboard .billboard-background .shape-divider,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-background .shape-divider,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-background .shape-divider,
  .waves_plugin_review_yosuke_sato .billboard .billboard-background .shape-divider,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background .shape-divider,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background .shape-divider,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-background .shape-divider,
  .my-favorite-waves-shinri-fukui .billboard .billboard-background .shape-divider,
  .waves_plugin_review_gregory_germain .billboard .billboard-background .shape-divider {
    bottom: 110px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background .shape-divider svg,
.waves_plugin_review_hajime_nagai .billboard .billboard-background .shape-divider svg,
.waves_review_kenichi_koga .billboard .billboard-background .shape-divider svg,
.waves_plugin_review_yasumoto_shingo .billboard .billboard-background .shape-divider svg,
.waves_review_nobuyuki_fujiwara .billboard .billboard-background .shape-divider svg,
.waves_plugin_review_yosuke_sato .billboard .billboard-background .shape-divider svg,
.waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background .shape-divider svg,
.my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background .shape-divider svg,
.my-favorite-waves-makino-tadayoshi .billboard .billboard-background .shape-divider svg,
.my-favorite-waves-shinri-fukui .billboard .billboard-background .shape-divider svg,
.waves_plugin_review_gregory_germain .billboard .billboard-background .shape-divider svg {
  position: relative;
  display: block;
  width: 100%;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_hajime_nagai .billboard .billboard-background .shape-divider svg,
  .waves_review_kenichi_koga .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-background .shape-divider svg,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_yosuke_sato .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background .shape-divider svg,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background .shape-divider svg,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-background .shape-divider svg,
  .my-favorite-waves-shinri-fukui .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_gregory_germain .billboard .billboard-background .shape-divider svg {
    height: 103px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_hajime_nagai .billboard .billboard-background .shape-divider svg,
  .waves_review_kenichi_koga .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-background .shape-divider svg,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_yosuke_sato .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background .shape-divider svg,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background .shape-divider svg,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-background .shape-divider svg,
  .my-favorite-waves-shinri-fukui .billboard .billboard-background .shape-divider svg,
  .waves_plugin_review_gregory_germain .billboard .billboard-background .shape-divider svg {
    height: 140px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-background .shape-divider .shape-fill,
.waves_plugin_review_hajime_nagai .billboard .billboard-background .shape-divider .shape-fill,
.waves_review_kenichi_koga .billboard .billboard-background .shape-divider .shape-fill,
.waves_plugin_review_yasumoto_shingo .billboard .billboard-background .shape-divider .shape-fill,
.waves_review_nobuyuki_fujiwara .billboard .billboard-background .shape-divider .shape-fill,
.waves_plugin_review_yosuke_sato .billboard .billboard-background .shape-divider .shape-fill,
.waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-background .shape-divider .shape-fill,
.my-favorite-waves-hideyuki-ashizawa .billboard .billboard-background .shape-divider .shape-fill,
.my-favorite-waves-makino-tadayoshi .billboard .billboard-background .shape-divider .shape-fill,
.my-favorite-waves-shinri-fukui .billboard .billboard-background .shape-divider .shape-fill,
.waves_plugin_review_gregory_germain .billboard .billboard-background .shape-divider .shape-fill {
  fill: #1c1c1c;
}
.waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-image,
.waves_plugin_review_hajime_nagai .billboard .billboard-image,
.waves_review_kenichi_koga .billboard .billboard-image,
.waves_plugin_review_yasumoto_shingo .billboard .billboard-image,
.waves_review_nobuyuki_fujiwara .billboard .billboard-image,
.waves_plugin_review_yosuke_sato .billboard .billboard-image,
.waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-image,
.my-favorite-waves-hideyuki-ashizawa .billboard .billboard-image,
.my-favorite-waves-makino-tadayoshi .billboard .billboard-image,
.my-favorite-waves-shinri-fukui .billboard .billboard-image,
.waves_plugin_review_gregory_germain .billboard .billboard-image {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-image,
  .waves_plugin_review_hajime_nagai .billboard .billboard-image,
  .waves_review_kenichi_koga .billboard .billboard-image,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-image,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-image,
  .waves_plugin_review_yosuke_sato .billboard .billboard-image,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-image,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-image,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-image,
  .my-favorite-waves-shinri-fukui .billboard .billboard-image,
  .waves_plugin_review_gregory_germain .billboard .billboard-image {
    top: 180px;
    left: calc(50% - 90px);
    width: 180px;
    height: 180px;
    border-radius: 90px;
    overflow: hidden;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-image,
  .waves_plugin_review_hajime_nagai .billboard .billboard-image,
  .waves_review_kenichi_koga .billboard .billboard-image,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-image,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-image,
  .waves_plugin_review_yosuke_sato .billboard .billboard-image,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-image,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-image,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-image,
  .my-favorite-waves-shinri-fukui .billboard .billboard-image,
  .waves_plugin_review_gregory_germain .billboard .billboard-image {
    top: 120px;
    left: 5%;
    width: 90%;
    height: 500px;
  }
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-image img,
  .waves_plugin_review_hajime_nagai .billboard .billboard-image img,
  .waves_review_kenichi_koga .billboard .billboard-image img,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-image img,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-image img,
  .waves_plugin_review_yosuke_sato .billboard .billboard-image img,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-image img,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-image img,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-image img,
  .my-favorite-waves-shinri-fukui .billboard .billboard-image img,
  .waves_plugin_review_gregory_germain .billboard .billboard-image img {
    width: 180px;
    min-width: auto;
    height: 180px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .billboard .billboard-image img,
  .waves_plugin_review_hajime_nagai .billboard .billboard-image img,
  .waves_review_kenichi_koga .billboard .billboard-image img,
  .waves_plugin_review_yasumoto_shingo .billboard .billboard-image img,
  .waves_review_nobuyuki_fujiwara .billboard .billboard-image img,
  .waves_plugin_review_yosuke_sato .billboard .billboard-image img,
  .waves_plugin_review_hideyuki_daichi_suzuki .billboard .billboard-image img,
  .my-favorite-waves-hideyuki-ashizawa .billboard .billboard-image img,
  .my-favorite-waves-makino-tadayoshi .billboard .billboard-image img,
  .my-favorite-waves-shinri-fukui .billboard .billboard-image img,
  .waves_plugin_review_gregory_germain .billboard .billboard-image img {
    max-width: 100%;
    max-height: 500px;
  }
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .overview,
  .waves_plugin_review_hajime_nagai .overview,
  .waves_review_kenichi_koga .overview,
  .waves_plugin_review_yasumoto_shingo .overview,
  .waves_review_nobuyuki_fujiwara .overview,
  .waves_plugin_review_yosuke_sato .overview,
  .waves_plugin_review_hideyuki_daichi_suzuki .overview,
  .my-favorite-waves-hideyuki-ashizawa .overview,
  .my-favorite-waves-makino-tadayoshi .overview,
  .my-favorite-waves-shinri-fukui .overview,
  .waves_plugin_review_gregory_germain .overview {
    margin-bottom: 60px;
  }
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .overview > .logo__title,
  .waves_plugin_review_hajime_nagai .overview > .logo__title,
  .waves_review_kenichi_koga .overview > .logo__title,
  .waves_plugin_review_yasumoto_shingo .overview > .logo__title,
  .waves_review_nobuyuki_fujiwara .overview > .logo__title,
  .waves_plugin_review_yosuke_sato .overview > .logo__title,
  .waves_plugin_review_hideyuki_daichi_suzuki .overview > .logo__title,
  .my-favorite-waves-hideyuki-ashizawa .overview > .logo__title,
  .my-favorite-waves-makino-tadayoshi .overview > .logo__title,
  .my-favorite-waves-shinri-fukui .overview > .logo__title,
  .waves_plugin_review_gregory_germain .overview > .logo__title {
    margin: 0 auto 30px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .overview > .logo__title,
  .waves_plugin_review_hajime_nagai .overview > .logo__title,
  .waves_review_kenichi_koga .overview > .logo__title,
  .waves_plugin_review_yasumoto_shingo .overview > .logo__title,
  .waves_review_nobuyuki_fujiwara .overview > .logo__title,
  .waves_plugin_review_yosuke_sato .overview > .logo__title,
  .waves_plugin_review_hideyuki_daichi_suzuki .overview > .logo__title,
  .my-favorite-waves-hideyuki-ashizawa .overview > .logo__title,
  .my-favorite-waves-makino-tadayoshi .overview > .logo__title,
  .my-favorite-waves-shinri-fukui .overview > .logo__title,
  .waves_plugin_review_gregory_germain .overview > .logo__title {
    margin: 0 auto;
  }
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .overview > .name,
  .waves_plugin_review_hajime_nagai .overview > .name,
  .waves_review_kenichi_koga .overview > .name,
  .waves_plugin_review_yasumoto_shingo .overview > .name,
  .waves_review_nobuyuki_fujiwara .overview > .name,
  .waves_plugin_review_yosuke_sato .overview > .name,
  .waves_plugin_review_hideyuki_daichi_suzuki .overview > .name,
  .my-favorite-waves-hideyuki-ashizawa .overview > .name,
  .my-favorite-waves-makino-tadayoshi .overview > .name,
  .my-favorite-waves-shinri-fukui .overview > .name,
  .waves_plugin_review_gregory_germain .overview > .name {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .overview > .name,
  .waves_plugin_review_hajime_nagai .overview > .name,
  .waves_review_kenichi_koga .overview > .name,
  .waves_plugin_review_yasumoto_shingo .overview > .name,
  .waves_review_nobuyuki_fujiwara .overview > .name,
  .waves_plugin_review_yosuke_sato .overview > .name,
  .waves_plugin_review_hideyuki_daichi_suzuki .overview > .name,
  .my-favorite-waves-hideyuki-ashizawa .overview > .name,
  .my-favorite-waves-makino-tadayoshi .overview > .name,
  .my-favorite-waves-shinri-fukui .overview > .name,
  .waves_plugin_review_gregory_germain .overview > .name {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .overview > .caption,
  .waves_plugin_review_hajime_nagai .overview > .caption,
  .waves_review_kenichi_koga .overview > .caption,
  .waves_plugin_review_yasumoto_shingo .overview > .caption,
  .waves_review_nobuyuki_fujiwara .overview > .caption,
  .waves_plugin_review_yosuke_sato .overview > .caption,
  .waves_plugin_review_hideyuki_daichi_suzuki .overview > .caption,
  .my-favorite-waves-hideyuki-ashizawa .overview > .caption,
  .my-favorite-waves-makino-tadayoshi .overview > .caption,
  .my-favorite-waves-shinri-fukui .overview > .caption,
  .waves_plugin_review_gregory_germain .overview > .caption {
    margin-bottom: 30px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .overview > .caption,
  .waves_plugin_review_hajime_nagai .overview > .caption,
  .waves_review_kenichi_koga .overview > .caption,
  .waves_plugin_review_yasumoto_shingo .overview > .caption,
  .waves_review_nobuyuki_fujiwara .overview > .caption,
  .waves_plugin_review_yosuke_sato .overview > .caption,
  .waves_plugin_review_hideyuki_daichi_suzuki .overview > .caption,
  .my-favorite-waves-hideyuki-ashizawa .overview > .caption,
  .my-favorite-waves-makino-tadayoshi .overview > .caption,
  .my-favorite-waves-shinri-fukui .overview > .caption,
  .waves_plugin_review_gregory_germain .overview > .caption {
    margin-bottom: 20px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .overview > .profile,
.waves_plugin_review_hajime_nagai .overview > .profile,
.waves_review_kenichi_koga .overview > .profile,
.waves_plugin_review_yasumoto_shingo .overview > .profile,
.waves_review_nobuyuki_fujiwara .overview > .profile,
.waves_plugin_review_yosuke_sato .overview > .profile,
.waves_plugin_review_hideyuki_daichi_suzuki .overview > .profile,
.my-favorite-waves-hideyuki-ashizawa .overview > .profile,
.my-favorite-waves-makino-tadayoshi .overview > .profile,
.my-favorite-waves-shinri-fukui .overview > .profile,
.waves_plugin_review_gregory_germain .overview > .profile {
  color: #ccc;
  text-align: left;
}
.waves_plugin_review_nakajin-sekai-no-owari .overview a,
.waves_plugin_review_hajime_nagai .overview a,
.waves_review_kenichi_koga .overview a,
.waves_plugin_review_yasumoto_shingo .overview a,
.waves_review_nobuyuki_fujiwara .overview a,
.waves_plugin_review_yosuke_sato .overview a,
.waves_plugin_review_hideyuki_daichi_suzuki .overview a,
.my-favorite-waves-hideyuki-ashizawa .overview a,
.my-favorite-waves-makino-tadayoshi .overview a,
.my-favorite-waves-shinri-fukui .overview a,
.waves_plugin_review_gregory_germain .overview a {
  color: #fff;
}
.waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins,
.waves_plugin_review_hajime_nagai .my-favorite-plugins,
.waves_review_kenichi_koga .my-favorite-plugins,
.waves_plugin_review_yasumoto_shingo .my-favorite-plugins,
.waves_review_nobuyuki_fujiwara .my-favorite-plugins,
.waves_plugin_review_yosuke_sato .my-favorite-plugins,
.waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins,
.my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins,
.my-favorite-waves-makino-tadayoshi .my-favorite-plugins,
.my-favorite-waves-shinri-fukui .my-favorite-plugins,
.waves_plugin_review_gregory_germain .my-favorite-plugins {
  background-color: #272727;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins .logo__title,
  .waves_plugin_review_hajime_nagai .my-favorite-plugins .logo__title,
  .waves_review_kenichi_koga .my-favorite-plugins .logo__title,
  .waves_plugin_review_yasumoto_shingo .my-favorite-plugins .logo__title,
  .waves_review_nobuyuki_fujiwara .my-favorite-plugins .logo__title,
  .waves_plugin_review_yosuke_sato .my-favorite-plugins .logo__title,
  .waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins .logo__title,
  .my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins .logo__title,
  .my-favorite-waves-makino-tadayoshi .my-favorite-plugins .logo__title,
  .my-favorite-waves-shinri-fukui .my-favorite-plugins .logo__title,
  .waves_plugin_review_gregory_germain .my-favorite-plugins .logo__title {
    max-height: 40px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins > .view-area,
.waves_plugin_review_hajime_nagai .my-favorite-plugins > .view-area,
.waves_review_kenichi_koga .my-favorite-plugins > .view-area,
.waves_plugin_review_yasumoto_shingo .my-favorite-plugins > .view-area,
.waves_review_nobuyuki_fujiwara .my-favorite-plugins > .view-area,
.waves_plugin_review_yosuke_sato .my-favorite-plugins > .view-area,
.waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins > .view-area,
.my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins > .view-area,
.my-favorite-waves-makino-tadayoshi .my-favorite-plugins > .view-area,
.my-favorite-waves-shinri-fukui .my-favorite-plugins > .view-area,
.waves_plugin_review_gregory_germain .my-favorite-plugins > .view-area {
  text-align: center;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_hajime_nagai .my-favorite-plugins > .view-area > .products,
  .waves_review_kenichi_koga .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_yasumoto_shingo .my-favorite-plugins > .view-area > .products,
  .waves_review_nobuyuki_fujiwara .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_yosuke_sato .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins > .view-area > .products,
  .my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins > .view-area > .products,
  .my-favorite-waves-makino-tadayoshi .my-favorite-plugins > .view-area > .products,
  .my-favorite-waves-shinri-fukui .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_gregory_germain .my-favorite-plugins > .view-area > .products {
    grid-template-columns: repeat(auto-fit, minmax(160px, calc(50% - 4px)));
    padding-top: 20px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_hajime_nagai .my-favorite-plugins > .view-area > .products,
  .waves_review_kenichi_koga .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_yasumoto_shingo .my-favorite-plugins > .view-area > .products,
  .waves_review_nobuyuki_fujiwara .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_yosuke_sato .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins > .view-area > .products,
  .my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins > .view-area > .products,
  .my-favorite-waves-makino-tadayoshi .my-favorite-plugins > .view-area > .products,
  .my-favorite-waves-shinri-fukui .my-favorite-plugins > .view-area > .products,
  .waves_plugin_review_gregory_germain .my-favorite-plugins > .view-area > .products {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding-top: 60px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins > .view-area > .products > .product,
.waves_plugin_review_hajime_nagai .my-favorite-plugins > .view-area > .products > .product,
.waves_review_kenichi_koga .my-favorite-plugins > .view-area > .products > .product,
.waves_plugin_review_yasumoto_shingo .my-favorite-plugins > .view-area > .products > .product,
.waves_review_nobuyuki_fujiwara .my-favorite-plugins > .view-area > .products > .product,
.waves_plugin_review_yosuke_sato .my-favorite-plugins > .view-area > .products > .product,
.waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins > .view-area > .products > .product,
.my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins > .view-area > .products > .product,
.my-favorite-waves-makino-tadayoshi .my-favorite-plugins > .view-area > .products > .product,
.my-favorite-waves-shinri-fukui .my-favorite-plugins > .view-area > .products > .product,
.waves_plugin_review_gregory_germain .my-favorite-plugins > .view-area > .products > .product {
  background-color: #313131;
}
.waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins > .view-area > .products > .product .title,
.waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins > .view-area > .products > .product .text,
.waves_plugin_review_nakajin-sekai-no-owari .my-favorite-plugins > .view-area > .products > .product .current_price,
.waves_plugin_review_hajime_nagai .my-favorite-plugins > .view-area > .products > .product .title,
.waves_plugin_review_hajime_nagai .my-favorite-plugins > .view-area > .products > .product .text,
.waves_plugin_review_hajime_nagai .my-favorite-plugins > .view-area > .products > .product .current_price,
.waves_review_kenichi_koga .my-favorite-plugins > .view-area > .products > .product .title,
.waves_review_kenichi_koga .my-favorite-plugins > .view-area > .products > .product .text,
.waves_review_kenichi_koga .my-favorite-plugins > .view-area > .products > .product .current_price,
.waves_plugin_review_yasumoto_shingo .my-favorite-plugins > .view-area > .products > .product .title,
.waves_plugin_review_yasumoto_shingo .my-favorite-plugins > .view-area > .products > .product .text,
.waves_plugin_review_yasumoto_shingo .my-favorite-plugins > .view-area > .products > .product .current_price,
.waves_review_nobuyuki_fujiwara .my-favorite-plugins > .view-area > .products > .product .title,
.waves_review_nobuyuki_fujiwara .my-favorite-plugins > .view-area > .products > .product .text,
.waves_review_nobuyuki_fujiwara .my-favorite-plugins > .view-area > .products > .product .current_price,
.waves_plugin_review_yosuke_sato .my-favorite-plugins > .view-area > .products > .product .title,
.waves_plugin_review_yosuke_sato .my-favorite-plugins > .view-area > .products > .product .text,
.waves_plugin_review_yosuke_sato .my-favorite-plugins > .view-area > .products > .product .current_price,
.waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins > .view-area > .products > .product .title,
.waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins > .view-area > .products > .product .text,
.waves_plugin_review_hideyuki_daichi_suzuki .my-favorite-plugins > .view-area > .products > .product .current_price,
.my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins > .view-area > .products > .product .title,
.my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins > .view-area > .products > .product .text,
.my-favorite-waves-hideyuki-ashizawa .my-favorite-plugins > .view-area > .products > .product .current_price,
.my-favorite-waves-makino-tadayoshi .my-favorite-plugins > .view-area > .products > .product .title,
.my-favorite-waves-makino-tadayoshi .my-favorite-plugins > .view-area > .products > .product .text,
.my-favorite-waves-makino-tadayoshi .my-favorite-plugins > .view-area > .products > .product .current_price,
.my-favorite-waves-shinri-fukui .my-favorite-plugins > .view-area > .products > .product .title,
.my-favorite-waves-shinri-fukui .my-favorite-plugins > .view-area > .products > .product .text,
.my-favorite-waves-shinri-fukui .my-favorite-plugins > .view-area > .products > .product .current_price,
.waves_plugin_review_gregory_germain .my-favorite-plugins > .view-area > .products > .product .title,
.waves_plugin_review_gregory_germain .my-favorite-plugins > .view-area > .products > .product .text,
.waves_plugin_review_gregory_germain .my-favorite-plugins > .view-area > .products > .product .current_price {
  color: #fff;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area .logo__title,
.waves_plugin_review_hajime_nagai .section_interview > .view-area .logo__title,
.waves_review_kenichi_koga .section_interview > .view-area .logo__title,
.waves_plugin_review_yasumoto_shingo .section_interview > .view-area .logo__title,
.waves_review_nobuyuki_fujiwara .section_interview > .view-area .logo__title,
.waves_plugin_review_yosuke_sato .section_interview > .view-area .logo__title,
.waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area .logo__title,
.my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area .logo__title,
.my-favorite-waves-makino-tadayoshi .section_interview > .view-area .logo__title,
.my-favorite-waves-shinri-fukui .section_interview > .view-area .logo__title,
.waves_plugin_review_gregory_germain .section_interview > .view-area .logo__title {
  margin-bottom: 10px;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_hajime_nagai .section_interview > .view-area > .image_wrap,
  .waves_review_kenichi_koga .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_yasumoto_shingo .section_interview > .view-area > .image_wrap,
  .waves_review_nobuyuki_fujiwara .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_yosuke_sato .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area > .image_wrap,
  .my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area > .image_wrap,
  .my-favorite-waves-makino-tadayoshi .section_interview > .view-area > .image_wrap,
  .my-favorite-waves-shinri-fukui .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_gregory_germain .section_interview > .view-area > .image_wrap {
    margin: 30px 0;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_hajime_nagai .section_interview > .view-area > .image_wrap,
  .waves_review_kenichi_koga .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_yasumoto_shingo .section_interview > .view-area > .image_wrap,
  .waves_review_nobuyuki_fujiwara .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_yosuke_sato .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area > .image_wrap,
  .my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area > .image_wrap,
  .my-favorite-waves-makino-tadayoshi .section_interview > .view-area > .image_wrap,
  .my-favorite-waves-shinri-fukui .section_interview > .view-area > .image_wrap,
  .waves_plugin_review_gregory_germain .section_interview > .view-area > .image_wrap {
    margin: 50px 0;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area > .image_wrap img,
.waves_plugin_review_hajime_nagai .section_interview > .view-area > .image_wrap img,
.waves_review_kenichi_koga .section_interview > .view-area > .image_wrap img,
.waves_plugin_review_yasumoto_shingo .section_interview > .view-area > .image_wrap img,
.waves_review_nobuyuki_fujiwara .section_interview > .view-area > .image_wrap img,
.waves_plugin_review_yosuke_sato .section_interview > .view-area > .image_wrap img,
.waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area > .image_wrap img,
.my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area > .image_wrap img,
.my-favorite-waves-makino-tadayoshi .section_interview > .view-area > .image_wrap img,
.my-favorite-waves-shinri-fukui .section_interview > .view-area > .image_wrap img,
.waves_plugin_review_gregory_germain .section_interview > .view-area > .image_wrap img {
  width: 100%;
  height: auto;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area > p,
.waves_plugin_review_hajime_nagai .section_interview > .view-area > p,
.waves_review_kenichi_koga .section_interview > .view-area > p,
.waves_plugin_review_yasumoto_shingo .section_interview > .view-area > p,
.waves_review_nobuyuki_fujiwara .section_interview > .view-area > p,
.waves_plugin_review_yosuke_sato .section_interview > .view-area > p,
.waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area > p,
.my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area > p,
.my-favorite-waves-makino-tadayoshi .section_interview > .view-area > p,
.my-favorite-waves-shinri-fukui .section_interview > .view-area > p,
.waves_plugin_review_gregory_germain .section_interview > .view-area > p {
  color: #ccc;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area > p,
  .waves_plugin_review_hajime_nagai .section_interview > .view-area > p,
  .waves_review_kenichi_koga .section_interview > .view-area > p,
  .waves_plugin_review_yasumoto_shingo .section_interview > .view-area > p,
  .waves_review_nobuyuki_fujiwara .section_interview > .view-area > p,
  .waves_plugin_review_yosuke_sato .section_interview > .view-area > p,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area > p,
  .my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area > p,
  .my-favorite-waves-makino-tadayoshi .section_interview > .view-area > p,
  .my-favorite-waves-shinri-fukui .section_interview > .view-area > p,
  .waves_plugin_review_gregory_germain .section_interview > .view-area > p {
    margin-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area > p,
  .waves_plugin_review_hajime_nagai .section_interview > .view-area > p,
  .waves_review_kenichi_koga .section_interview > .view-area > p,
  .waves_plugin_review_yasumoto_shingo .section_interview > .view-area > p,
  .waves_review_nobuyuki_fujiwara .section_interview > .view-area > p,
  .waves_plugin_review_yosuke_sato .section_interview > .view-area > p,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area > p,
  .my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area > p,
  .my-favorite-waves-makino-tadayoshi .section_interview > .view-area > p,
  .my-favorite-waves-shinri-fukui .section_interview > .view-area > p,
  .waves_plugin_review_gregory_germain .section_interview > .view-area > p {
    margin-bottom: 30px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area > p > a,
.waves_plugin_review_hajime_nagai .section_interview > .view-area > p > a,
.waves_review_kenichi_koga .section_interview > .view-area > p > a,
.waves_plugin_review_yasumoto_shingo .section_interview > .view-area > p > a,
.waves_review_nobuyuki_fujiwara .section_interview > .view-area > p > a,
.waves_plugin_review_yosuke_sato .section_interview > .view-area > p > a,
.waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area > p > a,
.my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area > p > a,
.my-favorite-waves-makino-tadayoshi .section_interview > .view-area > p > a,
.my-favorite-waves-shinri-fukui .section_interview > .view-area > p > a,
.waves_plugin_review_gregory_germain .section_interview > .view-area > p > a {
  text-decoration: underline;
  color: #fff;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_interview > .view-area hr,
.waves_plugin_review_hajime_nagai .section_interview > .view-area hr,
.waves_review_kenichi_koga .section_interview > .view-area hr,
.waves_plugin_review_yasumoto_shingo .section_interview > .view-area hr,
.waves_review_nobuyuki_fujiwara .section_interview > .view-area hr,
.waves_plugin_review_yosuke_sato .section_interview > .view-area hr,
.waves_plugin_review_hideyuki_daichi_suzuki .section_interview > .view-area hr,
.my-favorite-waves-hideyuki-ashizawa .section_interview > .view-area hr,
.my-favorite-waves-makino-tadayoshi .section_interview > .view-area hr,
.my-favorite-waves-shinri-fukui .section_interview > .view-area hr,
.waves_plugin_review_gregory_germain .section_interview > .view-area hr {
  width: 200px;
  margin: 60px auto;
  border: 1px solid #666;
  transform: rotate(-15deg);
}
.waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles,
.waves_plugin_review_hajime_nagai .my-own-bundles,
.waves_review_kenichi_koga .my-own-bundles,
.waves_plugin_review_yasumoto_shingo .my-own-bundles,
.waves_review_nobuyuki_fujiwara .my-own-bundles,
.waves_plugin_review_yosuke_sato .my-own-bundles,
.waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles,
.my-favorite-waves-hideyuki-ashizawa .my-own-bundles,
.my-favorite-waves-makino-tadayoshi .my-own-bundles,
.my-favorite-waves-shinri-fukui .my-own-bundles,
.waves_plugin_review_gregory_germain .my-own-bundles {
  padding-top: 0;
  text-align: center;
}
.waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles > .view-area,
.waves_plugin_review_hajime_nagai .my-own-bundles > .view-area,
.waves_review_kenichi_koga .my-own-bundles > .view-area,
.waves_plugin_review_yasumoto_shingo .my-own-bundles > .view-area,
.waves_review_nobuyuki_fujiwara .my-own-bundles > .view-area,
.waves_plugin_review_yosuke_sato .my-own-bundles > .view-area,
.waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles > .view-area,
.my-favorite-waves-hideyuki-ashizawa .my-own-bundles > .view-area,
.my-favorite-waves-makino-tadayoshi .my-own-bundles > .view-area,
.my-favorite-waves-shinri-fukui .my-own-bundles > .view-area,
.waves_plugin_review_gregory_germain .my-own-bundles > .view-area {
  text-align: center;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles > .view-area > .products,
  .waves_plugin_review_hajime_nagai .my-own-bundles > .view-area > .products,
  .waves_review_kenichi_koga .my-own-bundles > .view-area > .products,
  .waves_plugin_review_yasumoto_shingo .my-own-bundles > .view-area > .products,
  .waves_review_nobuyuki_fujiwara .my-own-bundles > .view-area > .products,
  .waves_plugin_review_yosuke_sato .my-own-bundles > .view-area > .products,
  .waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles > .view-area > .products,
  .my-favorite-waves-hideyuki-ashizawa .my-own-bundles > .view-area > .products,
  .my-favorite-waves-makino-tadayoshi .my-own-bundles > .view-area > .products,
  .my-favorite-waves-shinri-fukui .my-own-bundles > .view-area > .products,
  .waves_plugin_review_gregory_germain .my-own-bundles > .view-area > .products {
    grid-template-columns: repeat(auto-fit, minmax(160px, calc(50% - 4px)));
    padding-top: 20px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles > .view-area > .products,
  .waves_plugin_review_hajime_nagai .my-own-bundles > .view-area > .products,
  .waves_review_kenichi_koga .my-own-bundles > .view-area > .products,
  .waves_plugin_review_yasumoto_shingo .my-own-bundles > .view-area > .products,
  .waves_review_nobuyuki_fujiwara .my-own-bundles > .view-area > .products,
  .waves_plugin_review_yosuke_sato .my-own-bundles > .view-area > .products,
  .waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles > .view-area > .products,
  .my-favorite-waves-hideyuki-ashizawa .my-own-bundles > .view-area > .products,
  .my-favorite-waves-makino-tadayoshi .my-own-bundles > .view-area > .products,
  .my-favorite-waves-shinri-fukui .my-own-bundles > .view-area > .products,
  .waves_plugin_review_gregory_germain .my-own-bundles > .view-area > .products {
    grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
    justify-content: center;
    padding-top: 60px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles > .view-area > .products > .product,
.waves_plugin_review_hajime_nagai .my-own-bundles > .view-area > .products > .product,
.waves_review_kenichi_koga .my-own-bundles > .view-area > .products > .product,
.waves_plugin_review_yasumoto_shingo .my-own-bundles > .view-area > .products > .product,
.waves_review_nobuyuki_fujiwara .my-own-bundles > .view-area > .products > .product,
.waves_plugin_review_yosuke_sato .my-own-bundles > .view-area > .products > .product,
.waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles > .view-area > .products > .product,
.my-favorite-waves-hideyuki-ashizawa .my-own-bundles > .view-area > .products > .product,
.my-favorite-waves-makino-tadayoshi .my-own-bundles > .view-area > .products > .product,
.my-favorite-waves-shinri-fukui .my-own-bundles > .view-area > .products > .product,
.waves_plugin_review_gregory_germain .my-own-bundles > .view-area > .products > .product {
  background-color: #313131;
}
.waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles > .view-area > .products > .product .title,
.waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles > .view-area > .products > .product .text,
.waves_plugin_review_nakajin-sekai-no-owari .my-own-bundles > .view-area > .products > .product .current_price,
.waves_plugin_review_hajime_nagai .my-own-bundles > .view-area > .products > .product .title,
.waves_plugin_review_hajime_nagai .my-own-bundles > .view-area > .products > .product .text,
.waves_plugin_review_hajime_nagai .my-own-bundles > .view-area > .products > .product .current_price,
.waves_review_kenichi_koga .my-own-bundles > .view-area > .products > .product .title,
.waves_review_kenichi_koga .my-own-bundles > .view-area > .products > .product .text,
.waves_review_kenichi_koga .my-own-bundles > .view-area > .products > .product .current_price,
.waves_plugin_review_yasumoto_shingo .my-own-bundles > .view-area > .products > .product .title,
.waves_plugin_review_yasumoto_shingo .my-own-bundles > .view-area > .products > .product .text,
.waves_plugin_review_yasumoto_shingo .my-own-bundles > .view-area > .products > .product .current_price,
.waves_review_nobuyuki_fujiwara .my-own-bundles > .view-area > .products > .product .title,
.waves_review_nobuyuki_fujiwara .my-own-bundles > .view-area > .products > .product .text,
.waves_review_nobuyuki_fujiwara .my-own-bundles > .view-area > .products > .product .current_price,
.waves_plugin_review_yosuke_sato .my-own-bundles > .view-area > .products > .product .title,
.waves_plugin_review_yosuke_sato .my-own-bundles > .view-area > .products > .product .text,
.waves_plugin_review_yosuke_sato .my-own-bundles > .view-area > .products > .product .current_price,
.waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles > .view-area > .products > .product .title,
.waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles > .view-area > .products > .product .text,
.waves_plugin_review_hideyuki_daichi_suzuki .my-own-bundles > .view-area > .products > .product .current_price,
.my-favorite-waves-hideyuki-ashizawa .my-own-bundles > .view-area > .products > .product .title,
.my-favorite-waves-hideyuki-ashizawa .my-own-bundles > .view-area > .products > .product .text,
.my-favorite-waves-hideyuki-ashizawa .my-own-bundles > .view-area > .products > .product .current_price,
.my-favorite-waves-makino-tadayoshi .my-own-bundles > .view-area > .products > .product .title,
.my-favorite-waves-makino-tadayoshi .my-own-bundles > .view-area > .products > .product .text,
.my-favorite-waves-makino-tadayoshi .my-own-bundles > .view-area > .products > .product .current_price,
.my-favorite-waves-shinri-fukui .my-own-bundles > .view-area > .products > .product .title,
.my-favorite-waves-shinri-fukui .my-own-bundles > .view-area > .products > .product .text,
.my-favorite-waves-shinri-fukui .my-own-bundles > .view-area > .products > .product .current_price,
.waves_plugin_review_gregory_germain .my-own-bundles > .view-area > .products > .product .title,
.waves_plugin_review_gregory_germain .my-own-bundles > .view-area > .products > .product .text,
.waves_plugin_review_gregory_germain .my-own-bundles > .view-area > .products > .product .current_price {
  color: #fff;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_series,
.waves_plugin_review_hajime_nagai .section_series,
.waves_review_kenichi_koga .section_series,
.waves_plugin_review_yasumoto_shingo .section_series,
.waves_review_nobuyuki_fujiwara .section_series,
.waves_plugin_review_yosuke_sato .section_series,
.waves_plugin_review_hideyuki_daichi_suzuki .section_series,
.my-favorite-waves-hideyuki-ashizawa .section_series,
.my-favorite-waves-makino-tadayoshi .section_series,
.my-favorite-waves-shinri-fukui .section_series,
.waves_plugin_review_gregory_germain .section_series {
  background-color: #272727;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area,
.waves_plugin_review_hajime_nagai .section_series > .view-area,
.waves_review_kenichi_koga .section_series > .view-area,
.waves_plugin_review_yasumoto_shingo .section_series > .view-area,
.waves_review_nobuyuki_fujiwara .section_series > .view-area,
.waves_plugin_review_yosuke_sato .section_series > .view-area,
.waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area,
.my-favorite-waves-hideyuki-ashizawa .section_series > .view-area,
.my-favorite-waves-makino-tadayoshi .section_series > .view-area,
.my-favorite-waves-shinri-fukui .section_series > .view-area,
.waves_plugin_review_gregory_germain .section_series > .view-area {
  text-align: center;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series,
.waves_plugin_review_hajime_nagai .section_series > .view-area > .series,
.waves_review_kenichi_koga .section_series > .view-area > .series,
.waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series,
.waves_review_nobuyuki_fujiwara .section_series > .view-area > .series,
.waves_plugin_review_yosuke_sato .section_series > .view-area > .series,
.waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series,
.my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series,
.my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series,
.my-favorite-waves-shinri-fukui .section_series > .view-area > .series,
.waves_plugin_review_gregory_germain .section_series > .view-area > .series {
  display: grid;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series,
  .waves_plugin_review_hajime_nagai .section_series > .view-area > .series,
  .waves_review_kenichi_koga .section_series > .view-area > .series,
  .waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series,
  .waves_review_nobuyuki_fujiwara .section_series > .view-area > .series,
  .waves_plugin_review_yosuke_sato .section_series > .view-area > .series,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series,
  .my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series,
  .my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series,
  .my-favorite-waves-shinri-fukui .section_series > .view-area > .series,
  .waves_plugin_review_gregory_germain .section_series > .view-area > .series {
    grid-template-columns: repeat(auto-fit, minmax(160px, calc(50% - 4px)));
    gap: 20px 8px;
    padding-top: 20px;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series,
  .waves_plugin_review_hajime_nagai .section_series > .view-area > .series,
  .waves_review_kenichi_koga .section_series > .view-area > .series,
  .waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series,
  .waves_review_nobuyuki_fujiwara .section_series > .view-area > .series,
  .waves_plugin_review_yosuke_sato .section_series > .view-area > .series,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series,
  .my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series,
  .my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series,
  .my-favorite-waves-shinri-fukui .section_series > .view-area > .series,
  .waves_plugin_review_gregory_germain .section_series > .view-area > .series {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding-top: 60px;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series > a,
.waves_plugin_review_hajime_nagai .section_series > .view-area > .series > a,
.waves_review_kenichi_koga .section_series > .view-area > .series > a,
.waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series > a,
.waves_review_nobuyuki_fujiwara .section_series > .view-area > .series > a,
.waves_plugin_review_yosuke_sato .section_series > .view-area > .series > a,
.waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series > a,
.my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series > a,
.my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series > a,
.my-favorite-waves-shinri-fukui .section_series > .view-area > .series > a,
.waves_plugin_review_gregory_germain .section_series > .view-area > .series > a {
  display: block;
  margin-bottom: 20px;
  text-align: left;
  text-decoration: none;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series > a .image_wrap,
.waves_plugin_review_hajime_nagai .section_series > .view-area > .series > a .image_wrap,
.waves_review_kenichi_koga .section_series > .view-area > .series > a .image_wrap,
.waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series > a .image_wrap,
.waves_review_nobuyuki_fujiwara .section_series > .view-area > .series > a .image_wrap,
.waves_plugin_review_yosuke_sato .section_series > .view-area > .series > a .image_wrap,
.waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series > a .image_wrap,
.my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series > a .image_wrap,
.my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series > a .image_wrap,
.my-favorite-waves-shinri-fukui .section_series > .view-area > .series > a .image_wrap,
.waves_plugin_review_gregory_germain .section_series > .view-area > .series > a .image_wrap {
  margin-bottom: 20px;
}
.waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series > a .text,
.waves_plugin_review_hajime_nagai .section_series > .view-area > .series > a .text,
.waves_review_kenichi_koga .section_series > .view-area > .series > a .text,
.waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series > a .text,
.waves_review_nobuyuki_fujiwara .section_series > .view-area > .series > a .text,
.waves_plugin_review_yosuke_sato .section_series > .view-area > .series > a .text,
.waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series > a .text,
.my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series > a .text,
.my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series > a .text,
.my-favorite-waves-shinri-fukui .section_series > .view-area > .series > a .text,
.waves_plugin_review_gregory_germain .section_series > .view-area > .series > a .text {
  color: #ccc;
}
@media (max-width: 639px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series > a .text,
  .waves_plugin_review_hajime_nagai .section_series > .view-area > .series > a .text,
  .waves_review_kenichi_koga .section_series > .view-area > .series > a .text,
  .waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series > a .text,
  .waves_review_nobuyuki_fujiwara .section_series > .view-area > .series > a .text,
  .waves_plugin_review_yosuke_sato .section_series > .view-area > .series > a .text,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series > a .text,
  .my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series > a .text,
  .my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series > a .text,
  .my-favorite-waves-shinri-fukui .section_series > .view-area > .series > a .text,
  .waves_plugin_review_gregory_germain .section_series > .view-area > .series > a .text {
    font-size: 12px;
    line-height: 1.5;
  }
}
@media (min-width: 640px) {
  .waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series > a .text,
  .waves_plugin_review_hajime_nagai .section_series > .view-area > .series > a .text,
  .waves_review_kenichi_koga .section_series > .view-area > .series > a .text,
  .waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series > a .text,
  .waves_review_nobuyuki_fujiwara .section_series > .view-area > .series > a .text,
  .waves_plugin_review_yosuke_sato .section_series > .view-area > .series > a .text,
  .waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series > a .text,
  .my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series > a .text,
  .my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series > a .text,
  .my-favorite-waves-shinri-fukui .section_series > .view-area > .series > a .text,
  .waves_plugin_review_gregory_germain .section_series > .view-area > .series > a .text {
    font-size: 0.9rem;
  }
}
.waves_plugin_review_nakajin-sekai-no-owari .section_series > .view-area > .series > a:hover .text,
.waves_plugin_review_hajime_nagai .section_series > .view-area > .series > a:hover .text,
.waves_review_kenichi_koga .section_series > .view-area > .series > a:hover .text,
.waves_plugin_review_yasumoto_shingo .section_series > .view-area > .series > a:hover .text,
.waves_review_nobuyuki_fujiwara .section_series > .view-area > .series > a:hover .text,
.waves_plugin_review_yosuke_sato .section_series > .view-area > .series > a:hover .text,
.waves_plugin_review_hideyuki_daichi_suzuki .section_series > .view-area > .series > a:hover .text,
.my-favorite-waves-hideyuki-ashizawa .section_series > .view-area > .series > a:hover .text,
.my-favorite-waves-makino-tadayoshi .section_series > .view-area > .series > a:hover .text,
.my-favorite-waves-shinri-fukui .section_series > .view-area > .series > a:hover .text,
.waves_plugin_review_gregory_germain .section_series > .view-area > .series > a:hover .text {
  color: #fff;
}
