@charset "UTF-8";
@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP-Bold.otf") format("otf");
}
@font-face {
  font-display: swap;
  font-weight: 500;
  font-style: Medium;
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP-Bold.otf") format("otf");
}
@font-face {
  font-display: swap;
  font-weight: 700;
  font-style: Bold;
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP-Bold.otf") format("otf");
}
@font-face {
  font-display: swap;
  font-weight: 500;
  font-style: medium;
  font-family: "Oswald";
  src: url("./fonts/Oswald-Medium.ttf") format("ttf");
}
@font-face {
  font-display: swap;
  font-weight: 700;
  font-style: bold;
  font-family: "Oswald";
  src: url("./fonts/Oswald-Bold.ttf") format("ttf");
}
.content-width {
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .content-width {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1199px) {
  .content-width {
    max-width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  .content-width {
    width: 86%;
  }
}
@media screen and (max-width: 480px) {
  .content-width {
    width: 90%;
  }
}

* {
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  line-height: 1.5;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  display: block;
  width: 100%;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.mask {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mask.active {
  opacity: 0.7;
  visibility: visible;
}

header {
  z-index: 10;
  display: flex;
  width: 100%;
  position: fixed;
  height: 90px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
header.active {
  transform: none;
  opacity: 1;
  visibility: visible;
}
header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background: #fff;
  opacity: 0.8;
}
@media screen and (max-width: 480px) {
  header::after {
    display: none;
  }
}
header .logo {
  z-index: 11;
  width: 260px;
  width: 310px;
  margin-left: 20px;
  margin-top: 0;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  header .logo {
    margin-top: 22vw;
    display: none;
  }
}
header .menu {
  z-index: 11;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 52%;
}
@media screen and (max-width: 1345px) {
  header .menu {
    width: 47%;
  }
}
@media screen and (max-width: 1200px) {
  header .menu {
    width: 40%;
  }
}
@media screen and (max-width: 1100px) {
  header .menu {
    display: none;
  }
}
header .menu .menu__item {
  width: 157px;
}
@media screen and (max-width: 1200px) {
  header .menu .menu__item {
    width: 124px;
  }
}
@media screen and (max-width: 1120px) {
  header .menu .menu__item {
    width: 122px;
  }
}
@media screen and (max-width: 1100px) {
  header .menu .menu__item {
    width: 111px;
  }
}
header .menu .menu__item a p {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1120px) {
  header .menu .menu__item a p {
    font-size: 16px;
  }
}
header .contact-btn {
  z-index: 11;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  header .contact-btn {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header .contact-btn {
    height: unset;
    width: 100%;
  }
}
header .contact-btn .btn {
  width: 124px;
}
@media screen and (max-width: 767px) {
  header .contact-btn .btn {
    display: inline;
    flex: 0 0 33.5%;
  }
}
header .contact-btn .btn img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hamburger {
  z-index: 1000;
  position: relative;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1100px) {
  .hamburger {
    opacity: 1;
    visibility: visible;
  }
}
.hamburger .menuButton {
  z-index: 3;
  display: block;
  height: 90px;
  width: 90px;
  background: transparent;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .hamburger .menuButton {
    background-color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .hamburger .menuButton {
    height: 60px;
    width: 60px;
  }
}
.hamburger .menuButton div {
  height: 2px;
  width: 60%;
  border-color: #057bca;
  background: #057bca;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.hamburger .menuButton div:nth-of-type(1) {
  transform: translate(-50%, -15px);
}
.hamburger .menuButton div:nth-of-type(3) {
  transform: translate(-50%, 15px);
}
.hamburger .menuButton.active {
  transform: rotate(90deg);
}
.hamburger .menuButton.active div:nth-of-type(1) {
  transform: rotate(45deg) translate(-50%, 0px);
  transform-origin: 0% 50%;
}
.hamburger .menuButton.active div:nth-of-type(2) {
  width: 80%;
  height: 80%;
  border: 1px solid #057bca;
  border-radius: 50%;
  background-color: transparent;
}
.hamburger .menuButton.active div:nth-of-type(3) {
  transform: rotate(-45deg) translate(-50%, 0px);
  transform-origin: 0% 50%;
}
.hamburger nav {
  transform: translateX(100%);
  z-index: 2;
  transition: 0.3s;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  font-size: 24px;
  width: 300px;
  padding-top: 100px;
  height: 100vh;
  max-height: 100vh;
  overflow: auto;
  box-shadow: 0 0 1px 2px rgb(97, 97, 97);
}
@media screen and (max-width: 480px) {
  .hamburger nav {
    padding-top: 70px;
    font-size: 20px;
  }
}
.hamburger nav .logo {
  width: 80%;
  margin: 0 auto 38px auto;
}
.hamburger nav ul {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 70%;
}
.hamburger nav ul li {
  margin-bottom: 12px;
}
.hamburger nav ul li:not(:first-of-type) {
  margin-top: 24px;
}
.hamburger nav ul li:last-of-type {
  margin-bottom: 42px;
}
@media screen and (max-width: 480px) {
  .hamburger nav ul li {
    margin-bottom: 4px;
  }
}
.hamburger nav ul li a {
  text-decoration: none;
  color: #000;
}
.hamburger nav ul li .line-color {
  color: #06C755;
}
.hamburger nav ul li .tel-number {
  color: #057bca;
}
.hamburger nav.active {
  transform: translateX(0%);
}

.header-bg {
  display: none;
  height: 61px;
}
@media screen and (max-width: 480px) {
  .header-bg {
    display: block;
    position: relative;
  }
}
.header-bg .logo {
  position: absolute;
  background-color: #fff;
  padding-top: 1.1vw;
}
@media screen and (max-width: 410px) {
  .header-bg .logo {
    padding-top: 1.6vw;
  }
}
@media screen and (max-width: 390px) {
  .header-bg .logo {
    padding-top: 3vw;
  }
}
.header-bg .logo img {
  width: 57%;
}

@media screen and (max-width: 480px) {
  main {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  main .first-view {
    display: none;
  }
}
main .first-view .first-view__bg {
  position: relative;
}
main .first-view .first-view__bg__komori {
  position: relative;
}
main .first-view .first-view__bg__komori img {
  height: 80vw;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  main .first-view .first-view__bg__komori img {
    height: 100vh;
    min-height: 58.3333333333vw;
    width: 100%;
  }
}
main .first-view .first-view__txt {
  position: absolute;
  top: 6vw;
  left: 50%;
  transform: translateX(-50%);
  width: 57%;
}
@media screen and (max-width: 1199px) {
  main .first-view .first-view__txt {
    width: 62%;
  }
}
@media screen and (max-width: 768px) {
  main .first-view .first-view__txt {
    width: 76%;
  }
}
@media screen and (max-width: 560px) {
  main .first-view .first-view__txt {
    width: 82%;
  }
}
@media screen and (max-width: 480px) {
  main .first-view .first-view__txt {
    width: 84%;
  }
}
main .first-view .first-view__txt__komori {
  position: absolute;
  top: 20vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 1199px) {
  main .first-view .first-view__txt__komori {
    top: 6vw;
  }
}
main .first-view .first-view__txt__komori .first-view__txt__komori__content {
  width: 57%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1199px) {
  main .first-view .first-view__txt__komori .first-view__txt__komori__content {
    width: 62%;
  }
}
@media screen and (max-width: 768px) {
  main .first-view .first-view__txt__komori .first-view__txt__komori__content {
    width: 76%;
  }
}
@media screen and (max-width: 560px) {
  main .first-view .first-view__txt__komori .first-view__txt__komori__content {
    width: 82%;
  }
}
@media screen and (max-width: 480px) {
  main .first-view .first-view__txt__komori .first-view__txt__komori__content {
    width: 84%;
  }
}
main .first-view-sp {
  display: none;
}
main .first-view-sp img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  main .first-view-sp {
    display: block;
    height: 100%;
  }
}
main .leave-it-to-us {
  position: relative;
  margin: 0 auto;
  margin-top: -140px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  main .leave-it-to-us {
    margin-top: -90px;
  }
}
@media screen and (max-width: 768px) {
  main .leave-it-to-us {
    margin-top: 40px;
    width: 100%;
  }
}
main .leave-it-to-us--komori {
  position: relative;
  margin: 0 auto;
  margin-top: -60px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  main .leave-it-to-us--komori {
    margin-top: -90px;
  }
}
@media screen and (max-width: 768px) {
  main .leave-it-to-us--komori {
    margin-top: 40px;
    width: 100%;
  }
}
main .medals {
  background-image: url(./img/medals/medals-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 30px 0 25px 0;
}
main .medals .medals__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main .medals .medals__wrap {
    display: block;
  }
}
main .medals .medals__wrap .medals__img {
  margin-left: 34px;
  width: 410px;
}
@media screen and (max-width: 1199px) {
  main .medals .medals__wrap .medals__img {
    width: 360px;
  }
}
@media screen and (max-width: 768px) {
  main .medals .medals__wrap .medals__img {
    width: 74%;
    margin: 0 auto 30px auto;
  }
}
main .medals .medals__wrap .medals__txt {
  width: 593px;
  margin-top: 29px;
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  main .medals .medals__wrap .medals__txt {
    width: 560px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  main .medals .medals__wrap .medals__txt {
    text-align: center;
    margin-right: 0px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  main .medals .medals__wrap .medals__txt {
    width: 100%;
  }
}
main .medals .medals__wrap .medals__txt img {
  margin-bottom: 10px;
  height: auto;
}
main .medals .medals__wrap .medals__txt p {
  font-size: 10px;
}
main .five-free {
  background-image: url(./img/five-free/five-free-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  main .five-free {
    height: initial;
  }
}
main .five-free .five-free__title {
  text-align: center;
  width: 660px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  main .five-free .five-free__title {
    width: 100%;
  }
}
main .five-free .five-free__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 885px;
  margin: 0 auto;
}
@media screen and (max-width: 885px) {
  main .five-free .five-free__wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main .five-free .five-free__wrap {
    justify-content: center;
    gap: 1.5%;
  }
}
@media screen and (max-width: 600px) {
  main .five-free .five-free__wrap {
    gap: 3%;
  }
}
main .five-free .five-free__wrap .five-free__wrap__item {
  width: 18%;
}
@media screen and (max-width: 600px) {
  main .five-free .five-free__wrap .five-free__wrap__item {
    width: 29%;
  }
}
main .campaign .off-20 {
  position: relative;
}
main .campaign .off-20 p {
  position: absolute;
  top: 7%;
  left: 41%;
  font-size: 2.2vw;
  color: #fefba6;
}
@media screen and (max-width: 768px) {
  main .campaign .off-20 p {
    top: 14.5%;
    left: 35%;
    font-size: 3.5vw;
  }
}
main .campaign .contact-us {
  padding: 30px 0 36px 0;
  border: 10px solid #ff8b37;
}
main .campaign .contact-us .contact-us__txt {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}
@media screen and (max-width: 540px) {
  main .campaign .contact-us .contact-us__txt {
    font-size: 4vw;
  }
}
@media screen and (max-width: 480px) {
  main .campaign .contact-us .contact-us__txt {
    font-size: 16px;
  }
}
main .campaign .contact-us .contact-us__txt p span {
  color: #ec4029;
}
main .campaign .contact-us .contact-us__txt p .sp-only {
  display: none;
}
@media screen and (max-width: 800px) {
  main .campaign .contact-us .contact-us__txt p .sp-only {
    display: inline;
  }
}
main .campaign .contact-us .contact-us__txt p .dib {
  display: inline-block;
  color: #000;
}
main .campaign .contact-us .realtime-status {
  background-color: #067BCA;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}
main .campaign .contact-us .realtime-status p {
  font-weight: 700;
  font-size: 32px;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  main .campaign .contact-us .realtime-status p {
    font-size: clamp(14px, 2.8vw, 24px);
  }
}
main .campaign .contact-us .realtime-status p .sp-only {
  display: none;
}
@media screen and (max-width: 480px) {
  main .campaign .contact-us .realtime-status p .sp-only {
    display: inline;
  }
}
main .campaign .contact-us .contact-us__link-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  main .campaign .contact-us .contact-us__link-wrap {
    justify-content: space-around;
  }
}
main .campaign .contact-us .contact-us__link-wrap .link-btn {
  width: 540px;
}
@media screen and (max-width: 1199px) {
  main .campaign .contact-us .contact-us__link-wrap .link-btn {
    width: 470px;
  }
}
@media screen and (max-width: 813px) {
  main .campaign .contact-us .contact-us__link-wrap .link-btn {
    margin: 0 auto 20px auto;
  }
}
@media screen and (max-width: 767px) {
  main .campaign .contact-us .contact-us__link-wrap .link-btn {
    width: 90%;
  }
}
main .intro-animals {
  background-image: url(./img/intro-animals/intro-animals-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 95px 0 70px 0;
}
@media screen and (max-width: 480px) {
  main .intro-animals {
    padding: 50px 0 30px 0;
  }
}
main .intro-animals .intro-animals__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 20px;
}
main .intro-animals .intro-animals__title h2 {
  flex: 0 0 230px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .intro-animals .intro-animals__title h2 {
    font-size: 34px;
  }
}
main .intro-animals .intro-animals__title hr {
  display: block;
  width: 38.5%;
}
main .intro-animals .intro-animals__txt {
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
}
main .intro-animals .intro-animals__txt p {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  main .intro-animals .intro-animals__txt p {
    font-size: 15px;
  }
}
main .intro-animals .intro-animals__txt p .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  main .intro-animals .intro-animals__txt p .sp-only {
    display: inline;
  }
}
main .intro-animals .intro-animals__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .intro-animals .intro-animals__wrap .intro-animals__wrap__inner {
  width: 23%;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  main .intro-animals .intro-animals__wrap .intro-animals__wrap__inner {
    width: 48%;
  }
}
main .area {
  background-image: url(./img/area/area-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 95px 0 100px 0;
}
@media screen and (max-width: 480px) {
  main .area {
    padding: 60px 0 84px 0;
  }
}
@media screen and (max-width: 380px) {
  main .area {
    padding: 60px 0 50px 0;
  }
}
main .area .area__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 68px;
}
@media screen and (max-width: 480px) {
  main .area .area__title {
    margin-bottom: 30px;
  }
}
main .area .area__title h2 {
  flex: 0 0 270px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .area .area__title h2 {
    font-size: 34px;
  }
}
main .area .area__title hr {
  display: block;
  width: 45%;
}
main .area .blue-box-bg {
  position: absolute;
  height: 573px;
  width: 1028px;
  background-color: #057bca;
}
@media screen and (min-width: 1500px) {
  main .area .blue-box-bg {
    width: 70%;
  }
}
@media screen and (max-width: 1199px) {
  main .area .blue-box-bg {
    width: 74%;
  }
}
@media screen and (max-width: 768px) {
  main .area .blue-box-bg {
    height: 164.8vw;
    width: 90%;
    left: 5%;
  }
}
@media screen and (max-width: 480px) {
  main .area .blue-box-bg {
    height: 180vw;
  }
}
main .area .area__contents {
  display: flex;
  position: relative;
  align-items: flex-start;
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  main .area .area__contents {
    flex-wrap: wrap-reverse;
    padding: 45px 3% 0;
  }
}
main .area .area__contents .area__txt {
  padding-top: 40px;
  margin-left: 55px;
  width: 520px;
}
@media screen and (max-width: 768px) {
  main .area .area__contents .area__txt {
    margin-left: 0px;
    width: 100%;
  }
}
main .area .area__contents .area__map-img {
  width: 440px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1199px) {
  main .area .area__contents .area__map-img {
    margin: 30px 0 0 30px;
    width: 360px;
  }
}
@media screen and (max-width: 768px) {
  main .area .area__contents .area__map-img {
    width: 100%;
    margin: 0;
  }
}
main .trouble-case {
  background-color: #067BCA;
  padding: 100px 0 20px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .trouble-case {
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  main .trouble-case {
    padding: 40px 0;
    padding-bottom: 30px;
  }
}
main .trouble-case .trouble-case__footprint {
  position: absolute;
  top: 22px;
  right: 0;
}
@media screen and (max-width: 480px) {
  main .trouble-case .trouble-case__footprint {
    transform: scale(0.5);
    transform-origin: right top;
  }
}
main .trouble-case .trouble-case__title {
  text-align: center;
  width: 714px;
  margin: 0 auto;
  margin-bottom: 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .trouble-case .trouble-case__title {
    margin-bottom: 100px;
  }
}
main .trouble-case .trouble-case__title::before {
  content: url(./img/trouble-case/bat.png);
  position: absolute;
  top: 10px;
  left: -250px;
  transform: scale(0.5);
}
@media screen and (max-width: 1199px) {
  main .trouble-case .trouble-case__title::before {
    left: -190px;
  }
}
@media screen and (max-width: 768px) {
  main .trouble-case .trouble-case__title::before {
    top: 50px;
    left: -70px;
  }
}
@media screen and (max-width: 480px) {
  main .trouble-case .trouble-case__title::before {
    transform: scale(0.2);
    top: -100px;
    left: -100px;
  }
}
@media screen and (max-width: 768px) {
  main .trouble-case .trouble-case__title {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  main .trouble-case .trouble-case__title {
    margin-bottom: 24px;
  }
}
main .trouble-case .cases-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .trouble-case .cases-wrap .case-item {
  width: 48%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main .trouble-case .cases-wrap .case-item {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  main .trouble-case .cases-wrap .case-item {
    width: 100%;
  }
}
main .trouble-case .cases-wrap .case-item .case-item__main-img {
  margin: 0 35px;
  margin-bottom: 30px;
}
main .trouble-case .cases-wrap .case-item .case-item__txt .case-item__txt__inner {
  font-size: 21.4px;
  margin-left: 36px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .trouble-case .cases-wrap .case-item .case-item__txt .case-item__txt__inner {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  main .trouble-case .cases-wrap .case-item .case-item__txt .case-item__txt__inner {
    font-size: 4vw;
    margin-left: 20px;
  }
}
main .trouble-case .cases-wrap .case-item .case-item__txt .case-item__txt__inner::before {
  content: url(./img/trouble-case/checkbox-icon.png);
  position: absolute;
  top: 0px;
  left: -40px;
  transform: scale(0.8);
}
@media screen and (max-width: 768px) {
  main .trouble-case .cases-wrap .case-item .case-item__txt .case-item__txt__inner::before {
    top: -7px;
    transform: scale(0.5);
  }
}
@media screen and (max-width: 480px) {
  main .trouble-case .cases-wrap .case-item .case-item__txt .case-item__txt__inner::before {
    top: -4px;
    left: -34px;
    transform: scale(0.5);
  }
}
main .behind-you {
  background-image: url(./img/behind-you/behind-you-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 80px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .behind-you {
    display: none;
  }
}
main .behind-you::after {
  content: url(./img/behind-you/behind-you-rat-img.png);
  position: absolute;
  top: 40%;
  right: 9%;
}
@media screen and (max-width: 1199px) {
  main .behind-you::after {
    top: 50%;
    right: 3%;
  }
}
main .behind-you img {
  margin-left: 210px;
  width: 65%;
}
@media screen and (max-width: 1199px) {
  main .behind-you img {
    margin-left: 180px;
  }
}
main .behind-you-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  main .behind-you-sp {
    display: inline;
  }
}
main .sankaku {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 106px solid transparent;
  border-left: 106px solid transparent;
  border-top: 45px solid #000;
}
@media screen and (max-width: 480px) {
  main .sankaku {
    border-right: 54px solid transparent;
    border-left: 54px solid transparent;
    border-top: 24px solid #000;
  }
}
main .if-leaving2 {
  background-color: #e5f4fe;
  padding: 95px 0 35px 0;
}
@media screen and (max-width: 480px) {
  main .if-leaving2 {
    padding: 80px 0 60px 0;
  }
}
main .if-leaving2 .if-leaving2__title {
  width: 60%;
  margin: 0 auto 60px auto;
}
@media screen and (max-width: 900px) {
  main .if-leaving2 .if-leaving2__title {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  main .if-leaving2 .if-leaving2__title {
    width: 100%;
  }
}
@media screen and (max-width: 340px) {
  main .if-leaving2 .if-leaving2__title {
    margin-bottom: 30px;
  }
}
main .if-leaving2 .if-leaving2__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9%;
}
@media screen and (max-width: 768px) {
  main .if-leaving2 .if-leaving2__list {
    justify-content: space-between;
    gap: 5%;
  }
}
@media screen and (max-width: 735px) {
  main .if-leaving2 .if-leaving2__list {
    gap: 3%;
  }
}
@media screen and (max-width: 720px) {
  main .if-leaving2 .if-leaving2__list {
    gap: 1%;
  }
}
main .if-leaving2 .if-leaving2__list .if-leaving2__item {
  margin-bottom: 75px;
  text-align: center;
}
@media screen and (max-width: 706px) {
  main .if-leaving2 .if-leaving2__list .if-leaving2__item {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  main .if-leaving2 .if-leaving2__list .if-leaving2__item {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
main .if-leaving2 .if-leaving2__list .if-leaving2__item img {
  margin-bottom: 20px;
}
main .if-leaving2 .if-leaving2__list .if-leaving2__item .if-leaving2__item__txt {
  display: flex;
  align-items: flex-start;
  text-align: left;
}
main .if-leaving2 .if-leaving2__list .if-leaving2__item .if-leaving2__item__txt .check-icon {
  width: 9%;
  margin-top: 6px;
  margin-right: 6px;
}
@media screen and (max-width: 480px) {
  main .if-leaving2 .if-leaving2__list .if-leaving2__item .if-leaving2__item__txt .check-icon {
    margin-top: 2px;
  }
}
main .if-leaving2 .if-leaving2__list .if-leaving2__item .if-leaving2__item__txt p {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 2px;
}
@media screen and (max-width: 706px) {
  main .if-leaving2 .if-leaving2__list .if-leaving2__item .if-leaving2__item__txt p {
    font-size: clamp(14px, 3.5vw, 22px);
  }
}
@media screen and (max-width: 480px) {
  main .if-leaving2 .if-leaving2__list .if-leaving2__item .if-leaving2__item__txt p {
    font-size: clamp(17px, 4vw, 22px);
  }
}
main .strengths5 {
  background-color: #e5f4fe;
}
@media screen and (max-width: 480px) {
  main .strengths5 {
    padding-bottom: 60px;
  }
}
main .strengths5 .strengths5__title {
  background-color: #057bca;
  text-align: center;
  padding: 50px 0;
  margin-bottom: 90px;
  position: relative;
}
main .strengths5 .strengths5__title::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 280px;
  height: 260px;
  background-image: url(./img/strengths5/strength5-title__ceo-img_0202.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
  bottom: 0px;
  left: 73%;
  z-index: 0;
}
@media screen and (max-width: 1199px) {
  main .strengths5 .strengths5__title::after {
    width: 200px;
    height: 68%;
    left: 80%;
  }
}
@media screen and (max-width: 768px) {
  main .strengths5 .strengths5__title::after {
    width: 60px;
    height: 30%;
    left: 89%;
  }
}
@media screen and (max-width: 768px) {
  main .strengths5 .strengths5__title::after {
    width: 0;
  }
}
main .strengths5 .strengths5__title img {
  width: 697px;
}
@media screen and (max-width: 768px) {
  main .strengths5 .strengths5__title img {
    width: 90%;
  }
}
main .strengths5 .strengths5__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.6%;
}
main .strengths5 .strengths5__wrap .point-fukidashi {
  position: relative;
}
main .strengths5 .strengths5__wrap .point-fukidashi::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 24px solid #f66730;
}
main .strengths5 .strengths5__wrap .point-fukidashi p {
  font-size: 24px;
  letter-spacing: 3px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #f66730;
  padding: 16px 60px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}
main .strengths5 .strengths5__wrap .strengths5__box {
  width: 347px;
  height: 580px;
  margin-bottom: 110px;
  box-shadow: 3px 3px 10px rgba(0, 42, 87, 0.1);
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .strengths5 .strengths5__wrap .strengths5__box {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  main .strengths5 .strengths5__wrap .strengths5__box {
    width: 100%;
    height: initial;
  }
}
main .strengths5 .strengths5__wrap .strengths5__box .strengths5__box__title {
  color: #03578f;
  font-weight: 600;
  text-align: center;
  padding: 50px 0 25px 0;
  font-size: 24px;
}
main .strengths5 .strengths5__wrap .strengths5__box .strengths5__box__title span {
  font-size: 14px;
}
main .strengths5 .strengths5__wrap .strengths5__box .strengths5__box__txt {
  font-size: 18px;
  padding-top: 35px;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 480px) {
  main .strengths5 .strengths5__wrap .strengths5__box .strengths5__box__txt {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 480px) {
  main .strengths5 .strengths5__wrap .strengths5__box:last-child {
    margin-bottom: 0;
  }
}
main .price {
  background-color: #f5f5f5;
  padding: 72px 0 70px 0;
}
@media screen and (max-width: 480px) {
  main .price {
    padding: 42px 0 42px 0;
  }
}
main .price .price__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
main .price .price__title h2 {
  flex: 0 0 240px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .price .price__title h2 {
    font-size: 34px;
  }
}
main .price .price__title hr {
  display: block;
  width: 41.5%;
}
main .price .price__txt {
  text-align: center;
  margin-bottom: 62px;
}
@media screen and (max-width: 480px) {
  main .price .price__txt {
    margin-bottom: 30px;
  }
}
main .price .price__txt p {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  main .price .price__txt p {
    font-size: 16px;
  }
}
main .price .price__txt p .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  main .price .price__txt p .sp-only {
    display: inline;
  }
}
main .price .price-img {
  text-align: center;
  width: 810px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 810px) {
  main .price .price-img {
    width: 100%;
  }
}
main .price .price__add-txt {
  text-align: center;
  padding-bottom: 107px;
}
@media screen and (max-width: 480px) {
  main .price .price__add-txt {
    font-size: 10px;
    padding-bottom: 60px;
  }
}
main .price .content-width .price__caution {
  text-align: center;
}
main .price .content-width .price__caution h3 {
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(transparent 80%, #D01E23 80%);
  display: inline-block;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  main .price .content-width .price__caution h3 {
    font-size: clamp(18px, 5.5vw, 34px);
    background: linear-gradient(transparent 90%, #D01E23 90%);
  }
}
main .price .content-width .price__caution h3 .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  main .price .content-width .price__caution h3 .sp-only {
    display: inline-block;
  }
}
main .price .content-width .price__caution h3 span {
  color: #D01E23;
}
main .price .content-width .price__caution .price__caution__content {
  width: 80%;
  padding: 30px 40px;
  margin: 0 auto 40px auto;
  border: 4px solid #D01E23;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  main .price .content-width .price__caution .price__caution__content {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  main .price .content-width .price__caution .price__caution__content {
    padding: 22px;
    margin-bottom: 10px;
  }
}
main .price .content-width .price__caution .price__caution__content p {
  text-align: left;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  main .price .content-width .price__caution .price__caution__content p {
    font-size: clamp(16px, 4vw, 20px);
  }
}
main .price .content-width .price__caution .price__caution__content p span {
  color: #D01E23;
  font-weight: 700;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  main .price .content-width .price__caution .price__caution__content p span {
    font-size: clamp(20px, 5vw, 28px);
  }
}
main .flow {
  padding: 85px 0 0 0;
}
@media screen and (max-width: 480px) {
  main .flow {
    padding: 50px 0 0 0;
  }
}
main .flow .flow__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
main .flow .flow__title h2 {
  flex: 0 0 450px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  main .flow .flow__title h2 {
    flex: 0 0 100%;
    font-size: 33px;
  }
}
main .flow .flow__title h2 span {
  color: #067BCA;
}
main .flow .flow__title hr {
  display: block;
  width: 44%;
}
main .flow .flow__txt {
  text-align: center;
  margin-bottom: 40px;
}
main .flow .flow__txt p {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  main .flow .flow__txt p {
    font-size: 5vw;
  }
}
main .flow .flow__list {
  margin-bottom: 60px;
}
main .flow .flow__list .flow__item {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  main .flow .flow__list .flow__item {
    flex-wrap: wrap;
  }
}
main .flow .flow__list .flow__item .flow__item__icon-sec {
  background-color: #057bca;
  padding: 64px 68px 86px 68px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .flow .flow__list .flow__item .flow__item__icon-sec {
    padding: 64px 30px 86px 30px;
  }
}
@media screen and (max-width: 480px) {
  main .flow .flow__list .flow__item .flow__item__icon-sec {
    padding: 13px 30px 40px 30px;
    width: 100%;
  }
}
main .flow .flow__list .flow__item .flow__item__icon-sec p {
  color: #fff;
  font-size: 24px;
  letter-spacing: 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
main .flow .flow__list .flow__item .flow__item__icon-sec img {
  width: 65%;
  margin-right: 8px;
}
@media screen and (max-width: 480px) {
  main .flow .flow__list .flow__item .flow__item__icon-sec img {
    width: 15%;
    margin-right: 0;
  }
}
main .flow .flow__list .flow__item .flow__item__icon-sec::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 24px solid #057bca;
}
main .flow .flow__list .flow__item .step5 img {
  width: 75%;
}
@media screen and (max-width: 480px) {
  main .flow .flow__list .flow__item .step5 img {
    width: 15%;
  }
}
main .flow .flow__list .flow__item .step6 img {
  width: 90%;
}
@media screen and (max-width: 480px) {
  main .flow .flow__list .flow__item .step6 img {
    width: 15%;
  }
}
main .flow .flow__list .flow__item .step6::after {
  display: none;
}
@media screen and (max-width: 480px) {
  main .flow .flow__list .flow__item .step6::after {
    display: inline-block;
  }
}
main .flow .flow__list .flow__item .flow__item__inner {
  background-color: #e8f1f7;
  padding-left: 40px;
  padding-right: 70px;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .flow .flow__list .flow__item .flow__item__inner {
    padding-left: 60px;
  }
}
@media screen and (max-width: 560px) {
  main .flow .flow__list .flow__item .flow__item__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__title {
  margin-bottom: 30px;
}
main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__title p {
  font-size: 24px;
  font-weight: 900;
}
main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents {
  display: flex;
  flex-wrap: wrap;
}
main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__img {
  width: 180px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__img {
    width: 75%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 700px) {
  main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__img {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__img {
    margin-right: 0;
    width: 100%;
  }
}
main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__txt {
  width: 71%;
}
@media screen and (max-width: 1199px) {
  main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__txt {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__txt {
    width: 100%;
  }
}
main .flow .flow__list .flow__item .flow__item__inner .flow__item__inner__contents .flow__item__inner__contents__txt p {
  font-size: 18px;
}
main .infection {
  background-color: #057bca;
  padding: 56px 0 68px 0;
}
@media screen and (max-width: 480px) {
  main .infection {
    padding: 56px 0 22px 0;
  }
}
main .infection .infection__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 50px;
}
main .infection .infection__title h2 {
  flex: 0 0 300px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .infection .infection__title h2 {
    font-size: 34px;
  }
}
main .infection .infection__title hr {
  display: block;
  width: 44%;
}
main .infection .infection__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1%;
  margin: 0 auto;
}
@media screen and (min-width: 1500px) {
  main .infection .infection__list {
    padding: 0 2%;
    max-width: 1500px;
  }
}
@media screen and (max-width: 768px) {
  main .infection .infection__list {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  main .infection .infection__list {
    gap: 2.5%;
  }
}
main .infection .infection__list .infection__item {
  width: 14%;
}
@media screen and (max-width: 767px) {
  main .infection .infection__list .infection__item {
    width: 48%;
    margin-bottom: 20px;
  }
}
main .q-and-a {
  padding: 75px 0;
}
@media screen and (max-width: 480px) {
  main .q-and-a {
    padding: 60px 0;
  }
}
main .q-and-a .q-and-a__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 75px;
}
@media screen and (max-width: 480px) {
  main .q-and-a .q-and-a__title {
    margin-bottom: 42px;
  }
}
main .q-and-a .q-and-a__title h2 {
  flex: 0 0 320px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .q-and-a .q-and-a__title h2 {
    font-size: 34px;
  }
}
main .q-and-a .q-and-a__title hr {
  display: block;
  width: 42%;
}
main .q-and-a .q-and-a__list .q-and-a__item {
  background-color: #f4f4f4;
  border-radius: 20px;
  margin-bottom: 26px;
  padding: 20px 26px 20px 30px;
  cursor: pointer;
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q {
    align-items: flex-start;
  }
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q .icon {
  flex: 0 0 40px;
}
@media screen and (max-width: 480px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q .icon {
    position: absolute;
    width: 40px;
  }
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q p {
  font-size: 25px;
  font-weight: 700;
  margin-left: 30px;
  color: #067BCA;
  width: 83%;
}
@media screen and (max-width: 768px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q p {
    width: 80%;
  }
}
@media screen and (max-width: 620px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q p {
    width: 74%;
  }
}
@media screen and (max-width: 480px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q p {
    margin-top: 50px;
    margin-left: 0px;
    font-size: 14px;
    width: 100%;
  }
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q .switch {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q .switch div {
  width: 60%;
  margin: 0 auto;
  height: 3px;
  border-radius: 1px;
  background-color: #067BCA;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q .switch div:nth-of-type(2) {
  transform: rotate(90deg) translate(-1px, 12px);
  opacity: 1;
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__q .switch.active div:nth-of-type(2) {
  opacity: 0;
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a {
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  padding-right: 40px;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in 0s;
}
@media screen and (max-width: 480px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a {
    flex-direction: column;
    padding-right: 0;
  }
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a.active {
  height: 100px;
}
@media screen and (max-width: 800px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a.active {
    height: 150px;
  }
}
@media screen and (max-width: 700px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a.active {
    height: 180px;
  }
}
@media screen and (max-width: 600px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a.active {
    height: 215px;
  }
}
@media screen and (max-width: 500px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a.active {
    height: 275px;
  }
}
@media screen and (max-width: 400px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a.active {
    height: 275px;
  }
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a .icon {
  flex: 0 0 40px;
}
@media screen and (max-width: 480px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a .icon {
    width: 40px;
    margin-bottom: 12px;
  }
}
main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a p {
  font-size: 18px;
  margin-left: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  main .q-and-a .q-and-a__list .q-and-a__item .q-and-a__item__a p {
    font-size: 14px;
    margin-left: 0px;
  }
}
main .voice {
  background-color: #e5f4fe;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  main .voice {
    padding: 60px 0 80px 0;
  }
}
main .voice .voice__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}
main .voice .voice__title .sp-only {
  display: none;
}
@media screen and (max-width: 480px) {
  main .voice .voice__title .sp-only {
    display: inline;
  }
}
main .voice .voice__title h2 {
  flex: 0 0 540px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .voice .voice__title h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 540px) {
  main .voice .voice__title h2 {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 360px) {
  main .voice .voice__title h2 {
    font-size: 30px;
  }
}
main .voice .voice__title h2 span {
  color: #067BCA;
}
main .voice .voice__title hr {
  display: block;
  width: 44%;
}
main .voice .voice__list {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  main .voice .voice__list {
    padding: 50px;
  }
}
@media screen and (max-width: 480px) {
  main .voice .voice__list {
    padding: 8px;
    margin-bottom: 30px;
  }
}
main .voice .voice__list .voice__item {
  background-color: #fff;
  padding: 50px 85px 50px 70px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  main .voice .voice__list .voice__item {
    display: block;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  main .voice .voice__list .voice__item {
    padding: 50px 30px 50px 30px;
  }
}
main .voice .voice__list .voice__item .voice__item__img {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  main .voice .voice__list .voice__item .voice__item__img {
    text-align: center;
    margin-bottom: 30px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 700px) {
  main .voice .voice__list .voice__item .voice__item__img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  main .voice .voice__list .voice__item .voice__item__img {
    margin-right: 0px;
  }
}
main .voice .voice__list .voice__item .voice__item__img img {
  width: 220px;
}
@media screen and (max-width: 700px) {
  main .voice .voice__list .voice__item .voice__item__img img {
    width: 100%;
  }
}
main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap {
    display: inline-block;
  }
}
main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name {
  position: relative;
  display: flex;
  padding: 7px 14px;
  margin-right: 30px;
  margin-bottom: 30px;
  background-color: #057bca;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name {
    margin-right: 0px;
  }
}
@media screen and (max-width: 480px) {
  main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name {
    font-size: 16px;
  }
}
main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name span {
  color: #fff;
  margin-right: 15px;
}
main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name p {
  color: #ffc453;
}
main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -9px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #057bca;
}
main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .title {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .title {
    margin-bottom: 20px;
  }
}
main .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__main-txt p {
  font-size: 18px;
}
main .voice__btn .btn {
  width: 309px;
  padding: 30px;
  margin: 0 auto;
  border-radius: 9px;
  background-color: rgb(236, 64, 41);
  display: flex;
  color: #fff;
  position: relative;
  filter: drop-shadow(0px 4px 0px rgb(206, 24, 0));
}
@media screen and (max-width: 480px) {
  main .voice__btn .btn {
    padding: 20px;
    width: 300px;
  }
}
main .voice__btn .btn:hover {
  opacity: 0.7;
}
main .voice__btn .btn p {
  font-size: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  main .voice__btn .btn p {
    font-size: 18px;
  }
}
main .voice__btn .btn .arrow {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 36px;
  transform: scale(0.5, 1);
}
@media screen and (max-width: 480px) {
  main .voice__btn .btn .arrow {
    top: 8px;
  }
}
main .contact-form {
  background-color: #e5f4fe;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  main .contact-form {
    padding-bottom: 70px;
  }
}
main .contact-form .contact-form__title {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  main .contact-form .contact-form__title {
    margin-bottom: 40px;
  }
}
main .contact-form .contact-form__title h2 {
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .contact-form .contact-form__title h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 480px) {
  main .contact-form .contact-form__title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 350px) {
  main .contact-form .contact-form__title h2 {
    font-size: 25px;
  }
}
main .contact-form .contact-form__title h2 .muryousoudan {
  color: #f66730;
}
main .contact-form .contact-form__title h2 .otoiawase {
  color: #067BCA;
}
main .contact-form .contact-form__title h2 .sp-only {
  display: none;
}
@media screen and (max-width: 550px) {
  main .contact-form .contact-form__title h2 .sp-only {
    display: inline;
  }
}
main .contact-form .contact-form__form .form-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .contact-form .contact-form__form .form-inner {
    display: block;
  }
}
main .contact-form .contact-form__form .form-inner .label {
  display: flex;
}
@media screen and (max-width: 768px) {
  main .contact-form .contact-form__form .form-inner .label {
    margin-bottom: 10px;
  }
}
main .contact-form .contact-form__form .form-inner .label p {
  font-size: 18px;
  padding: 10px 0px;
  margin-right: 13px;
}
main .contact-form .contact-form__form .form-inner .label span {
  font-size: 16px;
  color: #fff;
  background-color: #057bca;
  padding: 10px 17px;
  margin-right: 24px;
}
@media screen and (max-width: 480px) {
  main .contact-form .contact-form__form .form-inner .label span {
    padding: 6px 9px;
  }
}
main .contact-form .contact-form__form .form-inner .input {
  background-color: #fff;
  width: 76.5%;
  height: 90px;
  border-radius: 7px;
  padding: 7px;
}
@media screen and (max-width: 1199px) {
  main .contact-form .contact-form__form .form-inner .input {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  main .contact-form .contact-form__form .form-inner .input {
    width: 100%;
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  main .contact-form .contact-form__form .form-inner .input {
    height: 42px;
  }
}
main .contact-form .contact-form__form .form-inner .input .wpcf7-form-control-wrap input {
  width: 100%;
  height: 100%;
}
main .contact-form .contact-form__form .contents {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main .contact-form .contact-form__form .contents {
    display: block;
  }
}
main .contact-form .contact-form__form .contents .label {
  margin-top: 26px;
}
main .contact-form .contact-form__form .contents .input {
  height: 224px;
  margin-bottom: 67px;
}
@media screen and (max-width: 480px) {
  main .contact-form .contact-form__form .contents .input {
    margin-bottom: 52px;
  }
}
main .contact-form .contact-form__form .contents .input .wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 100%;
}
main .contact-form__btn .btn {
  width: 309px;
  margin: 0 auto;
  background-color: #067BCA;
  border-radius: 9px;
  display: flex;
  color: #fff;
  position: relative;
  filter: drop-shadow(0px 4px 0px #0062a4);
}
main .contact-form__btn .btn input {
  padding: 30px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  main .contact-form__btn .btn input {
    padding: 20px;
    font-size: 18px;
  }
}
main .contact-form__btn .btn .wpcf7-spinner {
  position: absolute;
}
@media screen and (max-width: 480px) {
  main .contact-form__btn .btn {
    width: 300px;
  }
}
main .contact-form__btn .btn:hover {
  opacity: 0.7;
}
main .contact-form__btn .btn p {
  font-size: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  main .contact-form__btn .btn p {
    font-size: 18px;
  }
}
main .contact-form__btn .btn .arrow {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 36px;
  transform: scale(0.5, 1);
}
@media screen and (max-width: 480px) {
  main .contact-form__btn .btn .arrow {
    top: 6px;
  }
}
main .caution .caution__contents {
  padding-top: 35px;
  background-image: url(./img/caution/caution-yellow-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
main .caution .caution__contents .caution__contents__kiken {
  width: 320px;
  margin-left: 40%;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  main .caution .caution__contents .caution__contents__kiken {
    width: 48%;
    margin-left: 33%;
  }
}
main .caution .caution__contents .caution__txt {
  text-align: center;
  margin-bottom: 90px;
}
main .caution .caution__contents .caution__txt h3 {
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 18px;
}
@media screen and (max-width: 500px) {
  main .caution .caution__contents .caution__txt h3 {
    font-size: 28px;
  }
}
main .caution .caution__contents .caution__txt p {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  main .caution .caution__contents .caution__txt p {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  main .caution .caution__contents .caution__txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 380px) {
  main .caution .caution__contents .caution__txt p {
    font-size: 15px;
  }
}
main .caution .caution__contents .sick {
  border: 5px solid #D01E23;
  background-color: #fff;
  margin-bottom: 80px;
}
main .caution .caution__contents .sick .sick__title {
  width: 86%;
  margin: 0 auto;
  margin-top: -46px;
  background-color: #D01E23;
  color: #fff;
  border-radius: 12px;
}
main .caution .caution__contents .sick .sick__title h4 {
  font-size: 36px;
  font-weight: 700;
  padding: 20px 0 18px 0;
  text-align: center;
}
main .caution .caution__contents .sick .sick__list {
  display: flex;
  justify-content: space-between;
  gap: 43px;
  margin: 76px 69px 56px 69px;
}
@media screen and (max-width: 768px) {
  main .caution .caution__contents .sick .sick__list {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  main .caution .caution__contents .sick .sick__list {
    margin: 50px 20px 20px 20px;
  }
}
main .caution .caution__contents .sick .sick__list .sick__example-box {
  width: 30%;
  background-color: #eeeeee;
  padding: 30px 19px 44px 19px;
  border-radius: 9px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .caution .caution__contents .sick .sick__list .sick__example-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
main .caution .caution__contents .sick .sick__list .sick__example-box p {
  font-size: 24px;
}
main .caution .caution__contents .sick .sick__list .sick__example-box .sick__name {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
main .caution .caution__contents .sick .sick__list .sick__example-box .label {
  font-size: 19px;
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  padding: 11px 0;
  background-color: #D01E23;
}
main .caution .caution__contents .sick .sick__list .sick__example-box .period {
  font-size: 18px;
  margin-bottom: 28px;
}
main .caution .caution__contents .sick .sick__list .sick__example-box .txt {
  font-size: 18px;
  text-align: left;
}
main .caution .caution__contents .caution__last-message {
  padding: 67px 0 108px 0;
  background-color: #D01E23;
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .caution .caution__contents .caution__last-message {
    padding: 7vw 0 13vw 0;
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 480px) {
  main .caution .caution__contents .caution__last-message {
    padding: 7vw 0 21vw 0;
  }
}
main .super-rat {
  background-image: url(./img/super-rat/super-rat-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
main .super-rat .super-rat__title {
  width: 100%;
  height: 230px;
  position: relative;
  background-image: url(./img/super-rat/super-rat-title-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  text-align: center;
}
main .super-rat .super-rat__title .doyouknow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
}
@media screen and (max-width: 768px) {
  main .super-rat .super-rat__title .doyouknow {
    width: 86%;
  }
}
main .super-rat .super-rat__title .super-rat-main-title {
  width: 624px;
  padding-top: 70px;
  padding-bottom: 26px;
}
@media screen and (max-width: 768px) {
  main .super-rat .super-rat__title .super-rat-main-title {
    width: 90%;
    margin: 0 auto;
  }
}
main .super-rat .super-rat__contents {
  width: 960px;
  padding-top: 50px;
  margin: 0 auto;
  padding-bottom: 93px;
}
@media screen and (max-width: 960px) {
  main .super-rat .super-rat__contents {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  main .super-rat .super-rat__contents {
    padding-bottom: 66px;
  }
}
main .super-rat .super-rat__contents .super-rat__contents__wrap {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  main .super-rat .super-rat__contents .super-rat__contents__wrap {
    display: block;
  }
}
main .super-rat .super-rat__contents .super-rat__contents__wrap .super-rat__contents__txt {
  width: 65%;
  margin-right: 8%;
}
@media screen and (max-width: 768px) {
  main .super-rat .super-rat__contents .super-rat__contents__wrap .super-rat__contents__txt {
    width: 100%;
    margin-bottom: 50px;
  }
}
main .super-rat .super-rat__contents .super-rat__contents__wrap .super-rat__contents__txt p {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  main .super-rat .super-rat__contents .super-rat__contents__wrap .super-rat__contents__txt p {
    font-size: 4vw;
  }
}
main .super-rat .super-rat__contents .super-rat__contents__wrap .super-rat__contents__img {
  width: 300px;
}
@media screen and (max-width: 767px) {
  main .super-rat .super-rat__contents .super-rat__contents__wrap .super-rat__contents__img {
    width: 50vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  main .super-rat .super-rat__contents .super-rat__solution {
    width: 100%;
  }
}
main .in-media {
  background-image: url(./img/in-media/in-media-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
main .in-media .in-media__title {
  background-image: url(./img/in-media/in-media__title-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 172px;
}
@media screen and (max-width: 480px) {
  main .in-media .in-media__title {
    height: 130px;
  }
}
main .in-media .in-media__title h2 {
  width: 702px;
  margin: 0 auto;
  padding-top: 55px;
}
@media screen and (max-width: 710px) {
  main .in-media .in-media__title h2 {
    width: 80%;
  }
}
main .in-media .in-media__contents {
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 72px 98px 72px;
}
@media screen and (max-width: 768px) {
  main .in-media .in-media__contents {
    padding: 60px 5%;
  }
}
@media screen and (max-width: 480px) {
  main .in-media .in-media__contents {
    padding-top: 40px;
  }
}
main .in-media .in-media__contents .in-media__contents__sub-title {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  main .in-media .in-media__contents .in-media__contents__sub-title {
    margin-bottom: 30px;
  }
}
main .in-media .in-media__contents .in-media__contents__sub-title h3 {
  font-size: 30px;
  font-weight: 700;
  border-bottom: 2px solid #000;
  display: inline-block;
}
@media screen and (max-width: 630px) {
  main .in-media .in-media__contents .in-media__contents__sub-title h3 {
    font-size: 5vw;
  }
}
main .in-media .in-media__contents .in-media__contents__sub-title h3 .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  main .in-media .in-media__contents .in-media__contents__sub-title h3 .sp-only {
    display: inline;
  }
}
main .in-media .in-media__contents .in-media__contents__txt {
  margin-bottom: 64px;
}
@media screen and (max-width: 480px) {
  main .in-media .in-media__contents .in-media__contents__txt {
    margin-bottom: 40px;
  }
}
main .in-media .in-media__contents .in-media__contents__txt p {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  main .in-media .in-media__contents .in-media__contents__txt p {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 480px) {
  main .in-media .in-media__contents .in-media__contents__txt p {
    font-size: 4vw;
  }
}
main .in-media .in-media__contents .yahoo-news-wrap {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main .in-media .in-media__contents .yahoo-news-wrap {
    display: inline-block;
  }
}
main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__img {
  margin-right: 55px;
}
@media screen and (max-width: 768px) {
  main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
  }
}
main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__img img {
  width: 386px;
}
@media screen and (max-width: 480px) {
  main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__txt {
    width: 100%;
  }
}
main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__txt .yahoo-news__txt__sub-title {
  margin-bottom: 25px;
}
main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__txt .date {
  color: darkgray;
  font-size: 14px;
}
main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__txt .article-title {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__txt .article-title {
    font-size: 4.5vw;
  }
}
main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__txt .article-links p {
  font-size: 14px;
  margin-bottom: 8px;
}
main .in-media .in-media__contents .yahoo-news-wrap .yahoo-news__txt .article-links p a {
  word-break: break-all;
  color: darkblue;
  text-decoration: underline;
}
main .reasons-difficult {
  background-color: #e5f4fe;
}
main .reasons-difficult .reasons-difficult__title {
  background-image: url(./img/in-media/in-media__title-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-top: 70px;
  height: 173px;
  margin-bottom: 58px;
}
@media screen and (max-width: 480px) {
  main .reasons-difficult .reasons-difficult__title {
    padding-top: 55px;
    height: 130px;
  }
}
main .reasons-difficult .reasons-difficult__title h2 {
  width: 623px;
  margin: 0 auto;
}
@media screen and (max-width: 630px) {
  main .reasons-difficult .reasons-difficult__title h2 {
    width: 84%;
  }
}
main .reasons-difficult .reasons-difficult__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 116px;
}
@media screen and (max-width: 1199px) {
  main .reasons-difficult .reasons-difficult__wrap {
    justify-content: center;
    gap: 3%;
  }
}
@media screen and (max-width: 480px) {
  main .reasons-difficult .reasons-difficult__wrap {
    padding-bottom: 80px;
  }
}
main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item {
  background-color: #fff;
  width: 359px;
  height: 704px;
  border-radius: 10px;
}
@media screen and (max-width: 1199px) {
  main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item {
    margin-bottom: 58px;
  }
}
@media screen and (max-width: 767px) {
  main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item {
    width: 46%;
    padding-bottom: 40px;
    height: initial;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 700px) {
  main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item {
    width: 100%;
  }
}
main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item .reasons-difficult__item__title {
  position: relative;
}
main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item .reasons-difficult__item__title p {
  width: 200px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #ec4029;
  border: 2px solid #ec4029;
  border-radius: 4px;
  padding: 12px 0px;
}
main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item .reasons-difficult__item__title p::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 18px solid #ec4029;
}
main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item .reasons-difficult__item__title p::after {
  position: absolute;
  top: 98%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 16px solid #fff;
}
main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item .reasons-difficult__item__txt {
  padding-top: 65px;
  padding-left: 38px;
  padding-right: 38px;
}
main .reasons-difficult .reasons-difficult__wrap .reasons-difficult__item .reasons-difficult__item__txt p {
  font-size: 18px;
  line-height: 1.7;
}
main .ban-killing {
  background-image: url(./img/ban-killing/ban-killing-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 66px;
}
main .ban-killing .ban-killing__title {
  background-image: url(./img/in-media/in-media__title-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  text-align: center;
  padding: 78px 0 48px 0;
  margin-bottom: 40px;
}
main .ban-killing .ban-killing__title .wait {
  width: 500px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  main .ban-killing .ban-killing__title .wait {
    width: 80%;
  }
}
main .ban-killing .ban-killing__title .main-title {
  width: 506px;
}
@media screen and (max-width: 768px) {
  main .ban-killing .ban-killing__title .main-title {
    width: 86%;
  }
}
main .ban-killing .ban-killing__example-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1%;
  width: 840px;
  margin: 0 auto;
  margin-bottom: 66px;
}
@media screen and (max-width: 840px) {
  main .ban-killing .ban-killing__example-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  main .ban-killing .ban-killing__example-wrap {
    margin-bottom: 36px;
  }
}
main .ban-killing .ban-killing__example-wrap .ban-killing__example-item {
  width: 24%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .ban-killing .ban-killing__example-wrap .ban-killing__example-item {
    width: 48%;
    margin-bottom: 30px;
  }
}
main .ban-killing .ban-killing__example-wrap .ban-killing__example-item img {
  width: 80%;
  height: auto;
  margin-bottom: 20px;
}
main .ban-killing .ban-killing__example-wrap .ban-killing__example-item h3 {
  text-align: center;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 13px;
  background: linear-gradient(transparent 50%, #ffc454 50%);
}
main .ban-killing .ban-killing__example-wrap .ban-killing__example-item p {
  text-align: center;
  font-weight: 700;
  font-size: 16.8px;
}
main .ban-killing .ban-killing__example-wrap .ban-killing__example-item p span {
  color: #ec4029;
}
main .ban-killing .ban-killing__example-wrap .ban-killing__example-item .itachi-txt {
  font-size: 16px;
}
main .ban-killing .ban-killing__example-wrap .ban-killing__example-item .itachi-txt span {
  display: inline-block;
}
main .ban-killing .ban-killing__message {
  padding: 0 70px;
}
@media screen and (max-width: 480px) {
  main .ban-killing .ban-killing__message {
    padding: 0;
  }
}
main .ban-killing .ban-killing__message .ban-killing__message__wrap {
  display: flex;
  border-radius: 8px;
  position: relative;
  padding: 60px 0;
  /*-- 親のbgcを消す--*/
}
@media screen and (max-width: 768px) {
  main .ban-killing .ban-killing__message .ban-killing__message__wrap {
    display: none;
  }
}
main .ban-killing .ban-killing__message .ban-killing__message__wrap .ban-killing__message__img {
  width: 313px;
  position: absolute;
  bottom: 0;
  left: 68px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  main .ban-killing .ban-killing__message .ban-killing__message__wrap .ban-killing__message__img {
    width: 50%;
  }
}
main .ban-killing .ban-killing__message .ban-killing__message__wrap .heikoushihenkei__back {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #005d9b;
  overflow: hidden;
  border-radius: 10px;
}
main .ban-killing .ban-killing__message .ban-killing__message__wrap .heikoushihenkei__back .heikoushihenkei {
  position: absolute;
  top: -137%;
  left: 45%;
  width: 48%;
  height: 800px;
  border-radius: 0 8px 0 0;
  background-color: #057bca;
  transform: rotate(-141deg);
}
@media screen and (max-width: 768px) {
  main .ban-killing .ban-killing__message .ban-killing__message__wrap .heikoushihenkei__back .heikoushihenkei {
    width: 50%;
  }
}
main .ban-killing .ban-killing__message .ban-killing__message__wrap .ban-killing__message__txt {
  z-index: 1;
  margin-left: 450px;
  color: #fff;
}
main .ban-killing .ban-killing__message .ban-killing__message__wrap .ban-killing__message__txt p {
  font-size: 24px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  main .ban-killing .ban-killing__message .ban-killing__message__wrap .ban-killing__message__txt {
    margin-left: 0px;
  }
}
main .ban-killing .ban-killing__message .ban-killing__message-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  main .ban-killing .ban-killing__message .ban-killing__message-sp {
    display: inline;
  }
}
main .backstage {
  background-image: url(./img/backstage/backstage-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 83px;
  padding-bottom: 50px;
  position: relative;
}
main .backstage .backstage__title {
  width: 600px;
  margin: 0 auto;
  margin-bottom: 66px;
}
@media screen and (max-width: 768px) {
  main .backstage .backstage__title {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  main .backstage .backstage__title {
    margin-bottom: 42px;
  }
}
main .backstage .backstage__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
main .backstage .backstage__wrap .backstage__item {
  width: 346px;
  margin-bottom: 55px;
}
@media screen and (max-width: 480px) {
  main .backstage .backstage__wrap .backstage__item {
    margin-bottom: 36px;
  }
}
main .backstage .backstage__wrap .backstage__item .backstage__item__title {
  margin-bottom: 12px;
}
main .backstage .backstage__wrap .backstage__item .backstage__item__title p {
  padding: 18px 0;
  background-color: #fff;
  color: #003253;
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
  text-align: center;
}
main .backstage .backstage__wrap .backstage__item .backstage__item__img {
  margin-bottom: 29px;
}
main .backstage .backstage__wrap .backstage__item .backstage__item__txt {
  color: #fff;
  font-size: 18px;
}
main .backstage .backstage__add-bg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  main .backstage .backstage__add-bg {
    display: none;
  }
}
main .backstage .backstage__add-bg img {
  position: absolute;
  left: 1%;
  bottom: -550px;
  width: 14%;
}
@media screen and (max-width: 1199px) {
  main .backstage .backstage__add-bg img {
    bottom: -730px;
  }
}
@media screen and (max-width: 768px) {
  main .backstage .backstage__add-bg img {
    bottom: -870px;
  }
}
main .howtodo {
  margin-top: 90px;
}
@media screen and (max-width: 480px) {
  main .howtodo {
    margin-top: 60px;
  }
}
main .howtodo .howtodo__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 52px;
}
main .howtodo .howtodo__title h2 {
  flex: 0 0 450px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .howtodo .howtodo__title h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 480px) {
  main .howtodo .howtodo__title h2 {
    flex: 0 0 100%;
    font-size: 33px;
  }
}
main .howtodo .howtodo__title h2 span {
  color: #067BCA;
}
main .howtodo .howtodo__title hr {
  display: block;
  width: 44%;
}
main .howtodo .howtodo__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
main .howtodo .howtodo__list .howtodo__list__item {
  width: 520px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  main .howtodo .howtodo__list .howtodo__list__item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  main .howtodo .howtodo__list .howtodo__list__item {
    width: 100%;
  }
}
main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__title {
  color: #057bca;
  background-color: #e5f4fe;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 22px;
}
main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__title p {
  font-size: 24px;
  font-weight: 700;
}
main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__content {
  display: flex;
}
@media screen and (max-width: 480px) {
  main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__content {
    flex-wrap: wrap;
  }
}
main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__content .howtodo__list__item__content__img {
  margin-right: 25px;
}
@media screen and (max-width: 480px) {
  main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__content .howtodo__list__item__content__img {
    margin: 0 auto;
  }
}
main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__content .howtodo__list__item__content__img img {
  width: 142px;
}
main .howtodo .howtodo__list .howtodo__list__item .howtodo__list__item__content .howtodo__list__item__content__txt {
  font-size: 18px;
}
main .last-message {
  background-color: #057bca;
  margin-bottom: 70px;
}
main .last-message .last-message__wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
}
@media screen and (max-width: 768px) {
  main .last-message .last-message__wrap {
    display: none;
  }
}
main .last-message .last-message__wrap .last-message__txt {
  padding-top: 42px;
  padding-left: 40px;
}
@media screen and (max-width: 1199px) {
  main .last-message .last-message__wrap .last-message__txt {
    padding-top: 42px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  main .last-message .last-message__wrap .last-message__txt {
    padding-top: 0px;
    position: relative;
    z-index: 1;
  }
}
main .last-message .last-message__wrap .last-message__txt p {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 1199px) {
  main .last-message .last-message__wrap .last-message__txt p {
    font-size: 19px;
  }
}
main .last-message .last-message__wrap .last-message__txt p span {
  color: #ffc454;
  font-size: 30px;
}
main .last-message .last-message__wrap .last-message__img {
  width: 340px;
}
@media screen and (max-width: 768px) {
  main .last-message .last-message__wrap .last-message__img {
    position: absolute;
    transform: scale(0.35);
    transform-origin: right bottom;
    bottom: 0;
    right: 0;
  }
}
main .last-message .last-message-sp {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .last-message .last-message-sp {
    display: block;
  }
}
main .about-company .about-company__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 58px;
}
@media screen and (max-width: 480px) {
  main .about-company .about-company__title {
    margin-bottom: 42px;
  }
}
main .about-company .about-company__title h2 {
  flex: 0 0 240px;
  font-size: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .about-company .about-company__title h2 {
    font-size: 34px;
  }
}
main .about-company .about-company__title hr {
  display: block;
  width: 41.5%;
}
main .about-company .pref {
  margin-bottom: 50px;
}
main .about-company .pref p {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #067BCA;
}
@media screen and (max-width: 768px) {
  main .about-company .pref p {
    font-size: 30px;
  }
}
main .about-company .about-company__wrap {
  margin-bottom: 86px;
}
@media screen and (max-width: 768px) {
  main .about-company .about-company__wrap .about-company__box {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
}
main .about-company .about-company__wrap .about-company__box iframe {
  width: 472px;
  height: 370px;
}
@media screen and (max-width: 768px) {
  main .about-company .about-company__wrap .about-company__box iframe {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  main .about-company .about-company__wrap .about-company__box iframe {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  main .about-company .about-company__wrap .about-company__box iframe {
    width: 100%;
  }
}
main .about-company .about-company__wrap .company-info-table {
  width: 600px;
  margin: 0 auto;
  border: 1px solid #c6c6c6;
  border-bottom: 0px solid #c6c6c6;
}
@media screen and (max-width: 700px) {
  main .about-company .about-company__wrap .company-info-table {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  main .about-company .about-company__wrap .company-info-table {
    width: 100%;
  }
}
main .about-company .about-company__wrap .company-info-table .company-flex {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c6c6c6;
}
main .about-company .about-company__wrap .company-info-table .company-flex p {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 650px) {
  main .about-company .about-company__wrap .company-info-table .company-flex p {
    display: inline-block;
  }
}
main .about-company .about-company__wrap .company-info-table .company-flex .label {
  padding: 22px 0;
  padding-left: 18px;
  width: 25%;
  display: block;
}
@media screen and (max-width: 700px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .label {
    padding-left: 12px;
  }
}
@media screen and (max-width: 650px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .label {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .label {
    width: 30%;
  }
}
main .about-company .about-company__wrap .company-info-table .company-flex .label p {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .label p {
    padding-left: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .label p {
    font-size: 14px;
  }
}
@media screen and (max-width: 340px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .label p {
    font-size: 12px;
  }
}
main .about-company .about-company__wrap .company-info-table .company-flex .content {
  border-left: 1px solid #c6c6c6;
  background-color: #fff;
  padding: 22px 0;
  padding-left: 4%;
  width: 75%;
}
@media screen and (max-width: 768px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .content {
    text-align: left;
  }
}
@media screen and (max-width: 700px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .content {
    padding-right: 4.5%;
  }
}
main .about-company .about-company__wrap .company-info-table .company-flex .content p {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .content p {
    font-size: 16px;
  }
}
main .about-company .about-company__wrap .company-info-table .company-flex .content p .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  main .about-company .about-company__wrap .company-info-table .company-flex .content p .sp-only {
    display: inline;
  }
}
main .about-company .about-company__wrap .company-info-table .tel .content p a {
  color: #057bca;
  text-decoration: underline;
}
main .about-company .about-company__wrap .company-info-table .address .content p .pc-only {
  display: none;
}
@media screen and (max-width: 700px) {
  main .about-company .about-company__wrap .company-info-table .address .content p .pc-only {
    display: inline;
  }
}
@media screen and (max-width: 480px) {
  main .about-company .about-company__wrap .company-info-table .address .content p {
    text-align: left;
  }
}
main .about-company .about-company__wrap .company-info-table .business .content {
  border-left: 1px solid #c6c6c6;
  text-align: left;
}

footer {
  text-align: center;
  background-color: #067BCA;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 480px) {
  footer {
    margin-bottom: 64px;
  }
}
footer p {
  font-size: 12px;
  padding: 14px;
}
footer .sp-only {
  display: none;
}
@media screen and (max-width: 440px) {
  footer .sp-only {
    display: inline;
  }
}
footer .contact-btn {
  z-index: 11;
  display: none;
  bottom: -14px;
  right: 0;
  height: 100%;
  transform: translateY(100%);
  transition: 0.5s;
}
footer .contact-btn.active {
  position: fixed;
  transform: none;
}
@media screen and (max-width: 480px) {
  footer .contact-btn {
    display: flex;
    height: unset;
    width: 100%;
  }
}
footer .contact-btn .btn {
  width: 124px;
}
@media screen and (max-width: 767px) {
  footer .contact-btn .btn {
    display: inline;
    flex: 0 0 33.5%;
  }
}
footer .contact-btn .btn img {
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumb {
  display: flex;
  padding: 20px 20px 20px 0;
  font-size: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .breadcrumb {
    font-size: 14px;
  }
}
.breadcrumb li {
  margin-right: 10px;
  margin-left: 10px;
}

.single .breadcrumb {
  max-width: 830px;
  margin: 0 auto 20px auto;
}

.archive .voice {
  padding-top: 100px;
}
@media screen and (max-width: 480px) {
  .archive .voice {
    padding: 110px 0 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .archive .voice .voice__title h2 {
    flex: 0 0 360px;
  }
}
@media screen and (max-width: 480px) {
  .archive .voice .voice__title h2 {
    flex: 0 0 200px;
  }
}
.archive .voice .voice__list .voice__item {
  padding: 40px;
  position: relative;
}
.archive .voice .voice__list .voice__item .voice__item__txt-area {
  width: 100%;
}
.archive .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name {
  margin-bottom: 16px;
}
.archive .voice .voice__list .voice__item .voice__item__txt-area .voice__item__txt-area__main-txt {
  margin-bottom: 12px;
}
.archive .voice .voice__list .voice__item .voice__item__txt-area .read-more {
  text-align: right;
  margin: 0 auto;
  position: absolute;
  bottom: 14px;
  right: 40px;
}
@media screen and (max-width: 480px) {
  .archive .voice .voice__list .voice__item .voice__item__txt-area .read-more {
    width: 80%;
  }
}
.archive .voice .voice__list .voice__item .voice__item__txt-area .read-more p {
  font-size: 14px;
  font-weight: 700;
  color: #077BCA;
  padding: 10px 0;
  display: inline-block;
  border-bottom: 1px solid #077BCA;
}
.archive .voice .pnavi__block .pnavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .archive .voice .pnavi__block .pnavi {
    margin-bottom: 50px;
  }
}
.archive .voice .pnavi__block .pnavi .page-numbers {
  display: inline-block;
  text-align: center;
  width: 50px;
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  margin-left: 5px;
  margin-bottom: 5px;
  padding: 2px 0px;
}
.archive .voice .pnavi__block .pnavi .current {
  color: #fff;
  background-color: #077BCA;
}
.archive .voice .pnavi__block .pnavi .prev {
  padding-right: 8px;
}
.archive .voice .pnavi__block .pnavi .next {
  padding-left: 8px;
}

.single .voice {
  padding-top: 184px;
}
@media screen and (max-width: 768px) {
  .single .voice {
    padding: 110px 0 60px 0;
  }
}
.single .voice .voice__item {
  background-color: #fff;
  padding: 50px 85px 50px 70px;
  display: flex;
  align-items: flex-start;
  max-width: 830px;
  margin: 0 auto;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .single .voice .voice__item {
    display: block;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .single .voice .voice__item {
    padding: 50px 30px 50px 30px;
  }
}
.single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap {
  display: inline-block;
}
.single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .title {
    margin-bottom: 20px;
  }
}
.single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name {
  position: relative;
  display: inline-block;
  padding: 7px 14px;
  margin-right: 30px;
  margin-bottom: 30px;
  background-color: #057bca;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name {
    margin-right: 0px;
  }
}
@media screen and (max-width: 480px) {
  .single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name {
    font-size: 16px;
  }
}
.single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name span {
  color: #fff;
  margin-right: 15px;
}
.single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name p {
  color: #ffc453;
  display: inline;
}
.single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__title-wrap .animal-name::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -9px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #057bca;
}
.single .voice .voice__item .voice__item__txt-area .img {
  margin-bottom: 30px;
}
.single .voice .voice__item .voice__item__txt-area .voice__item__txt-area__main-txt p {
  font-size: 18px;
}
/*# sourceMappingURL=style.css.map */

/**/
.new_voice__item{
	background-color: #fff;
	padding: 50px 85px 50px 70px;
	max-width: 830px;
	margin: 0 auto;
	margin-bottom: 32px;
}
.new_voice_head {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	gap:15px;
}
.new_voice_thumb {
	position: relative;
	width: 35%;
	max-width: 200px;
	overflow:hidden;
}
.new_voice_thumb:before {
	content: "";
	display: block;
	padding-top: 75%;
}
.new_voice_thumb img {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	object-fit: cover;
}
.star_rating{
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	color: #CCCCCC; /* グレーカラー 自由に設定化 */
	font-size: 28px;
}

.star_rating:before, .star_rating:after{
	content: '★★★★★';
}

.star_rating:after{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #ffcf32; /* イエローカラー 自由に設定化 */
}

.star_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

.new_voice_content h1 {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 30px;
}
.new_voice_title {
	margin-top: 50px;
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
	padding: 8px 14px 5px;
	background-color: #057bca;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
}
.new_voice_title:first-of-type {
	margin-top: 0;
}
.work_gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 15px auto 30px;
}
.gallery_item {
	width: calc(25% - (10px / 4 * 3));
	position: relative;
	overflow: hidden;
}
@media only screen and (max-width:768px){
	.content-width {
		width: 94%;
	}
	.new_voice__item {
		padding: 15px;
	}
	.new_voice_thumb:before{
		padding-top:100%;
	}
	.gallery_item {
		width: calc(50% - (10px / 2 * 1));
	}
}

.small{ font-size:85%; }
.txt-center{ text-align:center; }
.mt30{ margin-top:30px; }
.mt50{ margin-top:50px; }
