@charset "UTF-8";
/*==================================================
製品一覧トップページ
※お手元テレビ用スピーカー
※ヒアリング補助イヤホン
==================================================*/
header {
  background: none;
}

header #navi {
  background: none;
}

.breadcrumb {
  margin-top: 1em;
}

main {
  max-width: none;
  padding-bottom: 0;
}

/*==========================================
メインビジュアル
==========================================*/
.banner-wrap {
  width: 100%;
  position: relative;
}
.banner-wrap .banner-image {
  width: 100wh;
  height: 100vh;
  top: -100px;
  margin-bottom: -100px;
  position: relative;
}
.banner-wrap .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-wrap .banner-image .title-container {
  width: 90%;
  max-width: 550px;
  padding: 3rem 1rem;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  border-radius: 1rem 1rem 0 0;
  z-index: 10;
}
.banner-wrap .product-title {
  font-size: 3.2rem;
  font-weight: normal;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
.banner-wrap .product-title span {
  font-size: 1.8rem;
  color: #3bb383;
  display: block;
  margin-top: 0.5em;
  text-align: center;
}

.section-title {
  font-size: 4.2rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.02em;
}

.bg-gray {
  background: #f7f7f7;
}

@media screen and (max-width: 960px) {
  .banner-wrap .banner-image {
    width: 100%;
    height: 70vh;
  }
}
@media screen and (max-width: 820px) {
  .banner-wrap .banner-image {
    top: -64px;
    margin-bottom: -64px;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 5rem;
  }
  .banner-wrap .banner-image .title-container {
    padding: 2rem 1rem;
  }
  .banner-wrap .product-title {
    font-size: 2rem;
  }
  .banner-wrap .product-title span {
    font-size: 1.4rem;
  }
}
/*==========================================
トップ
==========================================*/
.about-section {
  width: 90%;
  margin: 50px auto;
}
.about-section .message {
  margin: 2em 0;
}
.about-section .message p {
  text-align: center;
  line-height: 2.3;
  font-weight: 500;
  font-size: 2rem;
}
.about-section .flex-box {
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
  text-align: center;
}
.about-section .flex-box .content-box img {
  max-width: 100%;
  aspect-ratio: 1.5/1;
  max-height: 276px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .flex-box .content-box p {
  margin: 1em 0;
}

@media screen and (max-width: 768px) {
  .about-section .section-title {
    font-size: 3rem;
  }
  .about-section .flex-box {
    flex-flow: column;
  }
}
/*==========================================
お悩みスライダー
==========================================*/
.problemed-products-section {
  margin: 11rem auto;
  width: 90%;
  max-width: 1300px;
}
.problemed-products-section .section-title {
  margin-bottom: 2em;
}

#problem-item {
  position: relative;
}
#problem-item .problem-next,
#problem-item .problem-prev {
  width: 50px;
  height: 50px;
  background-color: #38B281; /* 緑色のボタン */
  border-radius: 50%;
  color: #ffffff;
  border: none;
  display: flex;
  top: 50%;
  z-index: 10;
}
#problem-item .problem-next:after,
#problem-item .problem-prev:after {
  font-size: 20px;
}
#problem-item .problem-prev {
  left: 2rem;
}
#problem-item .problem-next {
  right: 2rem;
}
#problem-item .problem-slider-container {
  width: 100%;
}
#problem-item .problem-slider {
  width: 85%;
  padding-left: 30px;
}
#problem-item .problem-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
#problem-item .problem-slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
#problem-item .problem-slider .card {
  width: calc(100% - 10px);
  max-width: 310px;
  display: flex;
  position: relative;
  background: #39b282;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
#problem-item .problem-slider .card .text-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
}
#problem-item .problem-slider .card .text-box p {
  display: block;
}
#problem-item .problem-slider .card .text-box .text-2 {
  font-size: 3.2rem;
}
#problem-item .problem-slider .card .image-box {
  position: absolute;
  bottom: 0;
  right: 0;
}
#problem-item .problem-slider .card .image-box img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (max-width: 1300px) {
  #problem-item .problem-slider .card .text-box .text-2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .problemed-products-section {
    margin: 8rem auto;
  }
  .problemed-products-section .section-title {
    font-size: 3.2rem;
  }
  #problem-item {
    padding: 0 20px;
  }
  #problem-item .problem-slider {
    padding-left: 0;
  }
  #problem-item .problem-next,
#problem-item .problem-prev {
    width: 40px;
    height: 40px;
  }
  #problem-item .problem-next:after,
#problem-item .problem-prev:after {
    font-size: 15px;
  }
  #problem-item .problem-next {
    right: -10px;
  }
  #problem-item .problem-prev {
    left: -10px;
  }
}
/*==========================================
ヒアリングアシストイヤホンとは
==========================================*/
.assist-section {
  padding: 5em 0;
  border-bottom: 1px solid #E7E7E7;
}
.assist-section .max-w1240 {
  width: 90%;
}
.assist-section .message {
  text-align: center;
  margin: 2em 0;
  font-size: 1.7rem;
  line-height: 1.8;
  font-weight: 500;
}
.assist-section .product-list {
  display: flex;
  justify-content: center;
  padding-top: 100px;
}
.assist-section .product-list li {
  width: calc(33.3333333333% - 40px);
  max-width: 360px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  margin: 0 10px;
  padding: 2em;
  font-size: 1.5rem;
  line-height: 1.8;
}
.assist-section .product-list li.sound-collector {
  width: 75%;
  max-width: 900px;
}
.assist-section .product-list li.sound-collector .product-group {
  display: flex;
}
.assist-section .product-list li.sound-collector .product-group .text {
  max-width: 320px;
  padding-right: 30px;
}
.assist-section .product-list li.sound-collector .focus {
  position: relative;
  max-width: 530px;
  border: 1px solid #B8E4D2;
  border-radius: 8px;
  background: #E7F6F0;
  margin: 0 10px;
  padding: 2em;
  line-height: 1.8;
}
.assist-section .product-list li.sound-collector .focus::before {
  content: "";
  display: block;
  width: 150px;
  height: 120px;
  background-image: url("../images/product-assist-image3.png");
  background-size: contain;
  position: absolute;
  top: -25px;
  right: 10%;
}
.assist-section .product-list li.sound-collector .focus .title {
  color: #39b282;
  font-weight: bold;
  text-align: left;
  margin: 0 0 0.8em;
  line-height: 1.3;
}
.assist-section .product-list li.hearing-aid {
  width: 25%;
  max-width: 530px;
}
.assist-section .product-list li .title {
  font-size: 2.6rem;
  text-align: center;
  margin: 0.5em 0 1em;
  letter-spacing: -0.02px;
}

@media screen and (max-width: 1200px) {
  .assist-section .product-list {
    flex-flow: column;
    align-items: center;
  }
  .assist-section .product-list li.sound-collector {
    width: 100%;
    max-width: 500px;
    padding: 1.3em;
  }
  .assist-section .product-list li.sound-collector .product-group {
    flex-direction: column;
    align-items: center;
  }
  .assist-section .product-list li.sound-collector .product-group .text {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 3em;
  }
  .assist-section .product-list li.sound-collector .product-group .focus {
    padding: 1.3em;
    margin: 0;
  }
  .assist-section .product-list li.sound-collector .product-group .focus .title {
    font-size: 2.3rem;
  }
  .assist-section .product-list li.sound-collector .product-group .focus::before {
    width: 115px;
    height: 115px;
    top: -3%;
    right: 0%;
  }
  .assist-section .product-list li.hearing-aid {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .assist-section .section-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 375px) {
  .assist-section .product-list li.sound-collector .product-group .focus::before {
    width: 110px;
    height: 110px;
    top: -3%;
    right: 0%;
  }
  .assist-section .product-list li.sound-collector .product-group .focus .title {
    font-size: 2rem;
  }
}
/*==========================================
製品一覧
==========================================*/
.product-section {
  padding: 0 0 5em;
}
.product-section .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 2em;
}

.product-intro {
  margin: 0 auto;
  padding: 5em auto;
  max-width: 1238px;
  width: 90%;
}
.product-intro .product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.product-intro .product-item {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFF;
  padding: 40px;
  border-radius: 10px;
  position: relative;
}
.product-intro .product-notice {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  padding: 4px 10px;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  z-index: 10;
}
.product-intro .product-image {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 300px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.product-intro .product-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-intro .product-info {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-intro .product-info .product-catch {
  font-size: 2rem;
  color: #38B281;
  margin-bottom: 1.2rem;
  word-break: break-all;
}
.product-intro .product-info .product-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  word-break: break-all;
}
.product-intro .product-info .product-model {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  word-break: break-all;
}
.product-intro .product-info .product-model .p-name {
  letter-spacing: -0.08em;
  word-break: break-all;
}
.product-intro .product-info .type-container {
  display: flex;
  align-items: flex-start;
  text-align: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}
.product-intro .product-info .type-container .type-item {
  width: 100%;
  max-width: 130px;
  background: #888888;
  color: #FFF;
  font-size: 1.4rem;
  padding: 0.5rem 0.8rem;
  text-align: center;
  border-radius: 5px;
}
.product-intro .product-info .price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding: 10px 0;
  width: 100%;
  align-self: center;
}
.product-intro .product-info .product-price {
  font-size: 2rem;
  margin-bottom: 0;
}
.product-intro .product-info .product-price .tax {
  font-size: 1.4rem;
}
.product-intro .product-info .cart-icon {
  width: 40px;
  height: 31px;
}
.product-intro .product-info .cart-icon img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .product-intro .product-item {
    width: 100%;
    padding: 25px;
  }
}
/*==========================================
レンタル・取り扱い店
==========================================*/
.product-features {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  position: relative;
  background: #E7F6F1;
  border-top: 2px solid #FFF;
  z-index: 1;
}
.product-features::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background: #FFF;
}
.product-features .feature-item {
  width: 50%;
  position: relative;
  padding: 8em 0;
  transition: 0.2s;
}
.product-features .feature-item .title-style1 {
  font-size: 2.3rem;
}
.product-features .feature-item img {
  display: block;
  margin: 0 auto 1em;
}
.product-features .feature-item.rental img {
  width: 100px;
}
.product-features .feature-item.shop img {
  width: 90px;
}
.product-features .feature-item::before {
  position: absolute;
  content: "";
  display: block;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #FFF;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
.product-features .feature-item .feature-label {
  position: absolute;
  width: 80%;
  max-width: 400px;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 25%;
  max-height: 85px;
  background: #38B281;
  border-radius: 0 0 0.5rem 0.5rem;
}
.product-features .feature-item .feature-label span {
  font-size: 1.7em;
  font-weight: bold;
  color: #fff;
}
.product-features a.feature-item:hover img {
  transform: scale(1.1);
  transition: 0.2s;
}

@media screen and (max-width: 768px) {
  .product-features {
    flex-direction: column;
    padding: 1em 0;
  }
  .product-features::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #FFF;
  }
  .product-features .feature-item {
    width: 100%;
    padding: 3em 0;
    margin: 1em 0;
  }
  .product-features .feature-item.rental {
    border-bottom: 1px solid #f0f0f0;
  }
}
@media screen and (max-width: 480px) {
  .product-features .feature-item .feature-label span {
    font-size: 2rem;
  }
}
/*==========================================
お客さまの声
==========================================*/
.voice-section {
  padding: 5em 0 8em;
}
.voice-section .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 2em;
}

#voice-item {
  position: relative;
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
}
#voice-item .voice-next,
#voice-item .voice-prev {
  width: 50px;
  height: 50px;
  background-color: #38B281; /* 緑色のボタン */
  border-radius: 50%;
  color: #ffffff;
  border: none;
  display: flex;
  top: 50%;
  z-index: 10;
}
#voice-item .voice-next:after,
#voice-item .voice-prev:after {
  font-size: 20px;
}
#voice-item .voice-prev {
  left: -25px;
}
#voice-item .voice-next {
  right: -25px;
}
#voice-item .voice-slider-container {
  width: 100%;
}
#voice-item .voice-slider {
  width: calc(100% - 3px);
  max-width: 100%;
}
#voice-item .voice-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
#voice-item .voice-slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
#voice-item .voice-slider .card {
  width: 100%;
  max-width: 420px;
  padding: 10%;
  display: flex;
  position: relative;
  border: 1px solid #C7EADC;
  border-radius: 10px;
  aspect-ratio: 1/1;
  line-height: 2;
  box-sizing: border-box;
}
#voice-item .voice-slider .card .text-box {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-flow: column;
}
#voice-item .voice-slider .card .text-box p {
  display: block;
}
#voice-item .voice-slider .card .text-box .text-1 {
  height: 90%;
}
#voice-item .voice-slider .card .text-box .text-2 {
  color: #38B281;
  text-align: right;
  margin: 0;
}

@media screen and (max-width: 1200px) and (min-width: 769px) {
  .product-intro .product-item {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #voice-item {
    padding: 0 20px;
  }
  #voice-item .voice-slider .swiper-slide:first-child {
    margin-left: 0px;
  }
  #voice-item .voice-next,
#voice-item .voice-prev {
    width: 40px;
    height: 40px;
  }
  #voice-item .voice-next:after,
#voice-item .voice-prev:after {
    font-size: 15px;
  }
  #voice-item .voice-next {
    right: 0;
  }
  #voice-item .voice-prev {
    left: 0;
  }
  #voice-item .voice-slider .card {
    padding: 2em;
    box-sizing: border-box;
    max-height: 400px;
    aspect-ratio: auto;
  }
  #voice-item .voice-slider .card .text-box {
    height: 100%;
  }
}
/*==========================================
ご購入いただける店舗
==========================================*/
.store-section {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.store-section .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 2em;
}
.store-section .message {
  line-height: 2;
  text-align: center;
}
.store-section .message .kome {
  font-size: 1.4rem;
}
.store-section .store-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3em 0 5em;
}
.store-section .store-list li {
  display: flex;
  align-items: center;
  width: auto;
  height: 70px;
  margin: 20px 10px 50px;
}
.store-section .store-list li img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .store-section .store-list li {
    width: calc(100% - 10px);
    justify-content: center;
  }
  .store-section .store-list li img {
    max-width: 100%;
    max-height: 100%;
  }
}
/*# sourceMappingURL=page-P-products-list-top.css.map */