@charset "UTF-8";
/* CSS Document */

/* 聞こえにくさ感じていませんか */
.section-top {
  padding: 100px;
}
.top_copy {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 900px;
  margin: 0px auto;
}
.top_copy img {
  width: 45%;
}
.top_copy p {
  font-size: 3rem;
  letter-spacing: 6px;
  line-height: 60px;
  text-align: center;
}
.top_container {
  max-width: 900px;
  margin: 0px auto;
}
.top_container ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  margin-top: 80px;
}
.button {
  position: relative;
  display: inline-block;
  width: 225px;
  height: 225px;
  border-radius: 50%;
  background-color: #fae6af;
  border: 1px solid #5f4a22;
  box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
  text-decoration-line: none;
  transition: all 0.8s;
}
.button span {
  position: absolute;
  display: inline-block;
  left: 0%;
  top: 35%;
  text-align: center;
  letter-spacing: 1.6px;
  color: #5f4a22;
  width: 225px;
}
/* アイコンのスタイル */
.button::after {
  content: "";
  position: absolute;
  top: 100px;
  bottom: 0px;
  right: 105px;
  width: 20px;
  height: 20px;
  margin: auto;
  border-top: 2px solid #5f4a22;
  border-right: 2px solid #5f4a22;
  transform: translateY(-2px) rotate(45deg);
  box-sizing: border-box;
  transition: all 1s;
}
.button01 a::after {
  right: 100px;
  transform: translateY(-2px) rotate(135deg);
}
.button:hover {
  background-color: #fff;
  opacity: 1;
}
.button:hover::after {
  right: 90px;
}
.button01 a:hover::after {
  right: 100px;
  top: 120px;
}

@media (max-width: 767px) {
  .section-top {
    padding-left: 25px;
    padding-right: 25px;
  }
  .top_copy {
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_copy p {
    font-size: 2.4rem;
    letter-spacing: 5px;
    line-height: 40px;
    margin-top: 10px;
  }
  .top_copy img {
    width: 70%;
  }
  .button {
    width: 125px;
    height: 125px;
  }
  .button span {
    font-size: 1.2rem;
    left: 4%;
    top: 30%;
    width: 115px;
  }
  .button::after {
    top: 65px;
    right: 57px;
    width: 15px;
    height: 15px;
  }
  .button01 a::after {
    right: 55px;
  }
  .button:hover::after {
    right: 50px;
  }
  .button01 a:hover::after {
    right: 55px;
    top: 75px;
  }
}

/* 耳の健康チェック */
.check {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
}
.check_pc {
  width: 100%;
  display: block;
}
.check_mb {
  display: none;
}

@media (max-width: 767px) {
  .check_mb {
    width: 100%;
    display: block;
  }
  .check_pc {
    display: none;
  }
}

/* 難聴の影響 */
.section-influence {
  padding: 80px;
}
.section-influence h2 {
  text-align: center;
}
.influence {
  max-width: 1060px;
  margin: 0 auto;
}
.influence ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px;
}
.influence li {
  list-style: none;
  position: relative;
}
.influence li p {
  position: absolute;
  display: inline-block;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  font-weight: 600;
}
.influence_img {
  width: 100%;
  height: 320px;
}
.influence_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .section-influence {
    padding: 60px 25px;
  }
  .influence_img {
    height: 280px;
  }
}

/* 聞こえにくさの原因 */
.section-cause h2 {
  text-align: center;
}
.cause {
  max-width: 720px;
  margin: 0px auto;
}
.section-cause ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  list-style: none;
}
.button-cause {
  position: relative;
  display: inline-block;
  width: 320px;
  height: 60px;
  border-radius: 100vh;
  background-color: #fae6af;
  border: 1px solid #5f4a22;
  box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
  text-decoration-line: none;
  transition: all 0.8s;
}
.button-cause span {
  position: absolute;
  display: inline-block;
  left: 10%;
  top: 32%;
  text-align: center;
  letter-spacing: 1.6px;
  color: #5f4a22;
  width: 225px;
}
/* アイコンのスタイル */
.button-cause::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0px;
  right: 65px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 2px solid #5f4a22;
  border-right: 2px solid #5f4a22;
  transform: translateY(-2px) rotate(45deg);
  box-sizing: border-box;
  transition: all 1s;
}
.button-cause:hover {
  background-color: #fff;
  opacity: 1;
}
.button-cause:hover::after {
  right: 45px;
}
.br_cause {
  display: none;
}

@media (max-width: 767px) {
  .br_cause {
    display: block;
  }
  .button-cause {
    width: 260px;
  }
  .button-cause span {
    left: 0%;
  }
  .button-cause::after {
    right: 55px;
    width: 10px;
    height: 10px;
  }
}
/* 生きていく */
.section-future {
  padding: 80px;
}
.future_background {
  max-width: 1060px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  padding: 40px 80px;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-direction: row-reverse;
}
.section-future h2 {
  text-align: center;
}
.section-future h3 {
  margin-bottom: 20px;
}
.future_img {
  width: 180px;
  height: auto;
  margin: 0 auto;
}
.future_img img {
  width: 100%;
}
.future_content {
  margin: 0 auto;
}
.future_content span {
  display: block;
  margin-left: 35px;
}
.future_content p:nth-of-type(4) {
  margin-top: 30px;
  text-indent: -1.5rem;
  padding-left: 1rem;
}
.future_explanation {
  width: fit-content;
}

@media (max-width: 767px) {
  .section-future {
    padding: 60px 25px;
  }
  .future_background {
    padding-left: 25px;
    padding-right: 25px;
    display: block;
  }
  .section-future h3 {
    width: fit-content;
    text-align: left;
    margin: 20px auto;
  }
  .future_explanation {
    margin: 0 auto;
  }
  .future_content span {
    margin-left: 30px;
  }
}

/* 受診しよう */
.section-action {
  padding: 0 80px 80px;
}
.section-action h2 {
  text-align: center;
}
.section-action p {
  text-align: center;
}
.section-action p:last-child {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .section-action {
    padding: 0 25px 60px;
  }
}
