@charset "UTF-8";
.symptoms-list {
  margin-top: 70px;
  position: relative;
}
.symptoms-list .symptoms-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0a6f3a;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  background-color: #fff;
  padding: 10px 20px;
  border: 4px solid #0a6f3a;
  min-width: 320px;
  z-index: 10;
}
@media (max-width: 768px) {
  .symptoms-list .symptoms-text {
    min-width: 250px;
    border-width: 2px;
  }
}
.symptoms-list .swiper-slide {
  background: #43B45B;
  height: 255px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 500px;
}
@media (max-width: 768px) {
  .symptoms-list .swiper-slide {
    max-width: 300px;
  }
}
.symptoms-list .swiper-slide .symptoms-item {
  color: #fff;
  padding: 40px;
}
@media (max-width: 768px) {
  .symptoms-list .swiper-slide .symptoms-item {
    padding: 40px 20px;
  }
}
.symptoms-list .swiper-slide .symptoms-item .symptoms-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 600;
}

.search {
  margin-top: 60px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .search {
    padding-bottom: 50px;
  }
}
.search .tabs {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5px;
  align-items: end;
  position: relative;
}
.search .tabs__radio {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.search .tabs__label {
  padding: 10px 14px;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #C8E1CE;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.875rem, 0.782rem + 0.42vw, 1.1rem);
}
@media (max-width: 768px) {
  .search .tabs__label {
    padding: 15px 14px;
  }
}
.search {
  /* パネル */
}
.search .tabs__panels {
  grid-column: 1/-1;
}
.search .tabs__panels .tabs__panel {
  display: none;
  background: #fff;
  padding: 30px 40px;
  border-radius: 0 0 15px 15px;
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel {
    padding: 20px 15px;
  }
}
.search .tabs__panels .tabs__panel .menu-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel .menu-item {
    flex-direction: column;
    padding-bottom: 15px;
  }
}
.search .tabs__panels .tabs__panel .menu-item:not(:last-child) {
  border-bottom: 1px solid #C8E1CE;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel .menu-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.search .tabs__panels .tabs__panel .menu-item .menu-cat {
  font-size: 22px;
  font-weight: 900;
  line-height: 3;
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel .menu-item .menu-cat {
    font-size: 16px;
    line-height: 2;
  }
}
.search .tabs__panels .tabs__panel .menu-item ul {
  width: 78%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel .menu-item ul {
    width: 100%;
  }
}
.search .tabs__panels .tabs__panel .menu-item ul.search-symptoms-list li {
  width: calc((100% - 15px) / 4);
  height: 63px;
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel .menu-item ul.search-symptoms-list li {
    width: calc((100% - 5px) / 2);
    height: 40px;
  }
}
.search .tabs__panels .tabs__panel .menu-item ul.search-symptoms-list li a {
  border: 2px solid #fff;
  border-radius: 10px;
  background: linear-gradient(180deg, #57D973 24.04%, #22A43D 100%);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1490196078);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  padding: 10px 10px;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  font-size: clamp(0.688rem, 0.559rem + 0.59vw, 1rem);
}
.search .tabs__panels .tabs__panel .menu-item ul.search-symptoms-list li a::after {
  content: "▶";
  position: absolute;
  right: 10px;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel .menu-item ul.search-symptoms-list li a::after {
    font-size: 9px;
    right: 5px;
  }
  .search .tabs__panels .tabs__panel .menu-item ul.search-symptoms-list li a br {
    display: none;
  }
}
.search .tabs__panels .tabs__panel .menu-item ul.search-menu-list {
  gap: 10px;
}
.search .tabs__panels .tabs__panel .menu-item ul.search-menu-list li {
  width: calc((100% - 10px) / 2);
}
.search .tabs__panels .tabs__panel .menu-item ul.search-menu-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F8F7;
  padding: 10px 20px;
}
.search .tabs__panels .tabs__panel .menu-item ul.search-menu-list li a p {
  font-weight: 700;
  color: #0a6f3a;
}
.search .tabs__panels .tabs__panel .menu-item ul.search-menu-list li a img {
  width: 110px;
  height: auto;
}
@media (max-width: 768px) {
  .search .tabs__panels .tabs__panel .menu-item ul.search-menu-list li {
    width: 100%;
  }
}
.search .tabs__panels .tabs__panel .note {
  text-align: center;
  font-size: clamp(0.75rem, 0.647rem + 0.47vw, 1rem);
}
.search #tab-symptom:checked ~ .tabs__panels #panel-symptom {
  display: block;
}
.search #tab-menu:checked ~ .tabs__panels #panel-menu {
  display: block;
}
.search #tab-symptom:checked + .tabs__label,
.search #tab-menu:checked + .tabs__label {
  background: #0a6f3a;
}

.accident-worries-container {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
}
.accident-worries-container:hover {
  opacity: 0.9;
}
.accident-worries-container:hover .accident-worries-img img {
  transform: scale(1.1);
}
.accident-worries-container:hover .accident-worries-link span {
  border-bottom-color: transparent;
}

.accident-worries {
  position: relative;
  overflow: hidden;
  padding: 55px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 40px;
  background: url("../images/accident_bg.webp") no-repeat center center;
}
@media (max-width: 768px) {
  .accident-worries {
    flex-direction: column;
    align-items: flex-start;
  }
}
.accident-worries .accident-worries-img {
  width: 50%;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
  /* --- 修正ポイント：ここを追加 --- */
  isolation: isolate; /* レンダリング層を独立させて角丸崩れを防ぐ */
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Safari対策のマスク */
  /* ---------------------------- */
}
@media (max-width: 768px) {
  .accident-worries .accident-worries-img {
    width: 90%;
    border-radius: 0 15px 15px 0;
  }
}
.accident-worries .accident-worries-img img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  -o-object-fit: cover;
     object-fit: cover;
  /* transition中にチラつく場合は backface-visibility を入れると安定します */
  backface-visibility: hidden;
}
.accident-worries .accident-worries-text {
  flex: 1;
  color: #fff;
  padding-right: 10%;
}
@media (max-width: 768px) {
  .accident-worries .accident-worries-text {
    padding: 0 15px;
  }
}
.accident-worries .accident-worries-text h2 {
  text-align: left;
  font-weight: 500;
  font-size: clamp(1.375rem, 1.066rem + 1.41vw, 2.125rem);
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.accident-worries .accident-worries-text h2::after {
  content: none;
}
.accident-worries .accident-worries-text p {
  text-align: left;
  font-weight: 600;
  margin-bottom: 45px;
  line-height: 1.6;
}
.accident-worries .accident-worries-text .accident-worries-link {
  text-align: right;
}
.accident-worries .accident-worries-text .accident-worries-link .link-flex {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 900;
}
.accident-worries .accident-worries-text .accident-worries-link .link-flex span {
  border-bottom: 1px solid #fff;
  transition: border-color 0.3s;
}
.accident-worries .accident-worries-text .accident-worries-link .link-flex img {
  width: 21px;
  height: 21px;
  margin-left: 10px;
  border-radius: 0;
}

.case-slider {
  padding: 0 25px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .case-slider {
    overflow: visible;
    padding: 0;
  }
}
.case-slider .swiper-wrapper {
  align-items: stretch;
}
.case-slider .swiper-slide {
  height: auto;
  display: flex;
}
.case-slider .case-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .case-slider .case-item {
    padding: 20px;
  }
}
.case-slider .case-item > img {
  width: 100%;
}
.case-slider .case-item .case-item-text {
  flex: 1;
}
.case-slider .case-item .case-item-text .case-title {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.9;
}
.case-slider .case-button-prev,
.case-slider .case-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.case-slider .case-button-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .case-slider .case-button-prev {
    left: -15px;
  }
}
.case-slider .case-button-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .case-slider .case-button-next {
    right: -15px;
  }
}
.case-slider .swiper-button-area {
  margin-top: 35px;
}

.swiper dl {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}
.swiper dl dt {
  width: 93px;
  color: #fff;
  background: #0a6f3a;
  padding: 7px 10px;
  text-align: center;
  font-weight: 800;
}
.swiper dl dd {
  width: calc(100% - 93px);
  background: #F4F8F7;
  padding: 7px 10px;
  font-weight: 600;
}

.item-link {
  text-align: right;
  margin-top: 20px;
}
.item-link a {
  color: #0a6f3a;
  font-weight: 800;
}
.item-link a span {
  border-bottom: 1px solid #0a6f3a;
}
.item-link a img {
  width: 25px;
  height: 7px;
  margin-left: 10px;
  margin-bottom: 3px;
}

.voice-slider {
  padding: 0 25px;
}
@media (max-width: 768px) {
  .voice-slider {
    padding: 0 15px;
  }
}
.voice-slider .voice-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  gap: 0;
  padding: 0 0 30px;
}
.voice-slider .voice-item .voice-item-img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.voice-slider .voice-item .voice-item-text {
  padding: 15px 30px 20px;
}
.voice-slider .voice-item .voice-item-text .voice-title {
  color: #0a6f3a;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.voice-slider .voice-item .voice-item-text .voice-name {
  color: #0a6f3a;
  font-weight: 700;
  margin-bottom: 17px;
}
.voice-slider .voice-item .item-link {
  padding-right: 24px;
}
.voice-slider .swiper-wrapper {
  position: relative;
}
.voice-slider .voice-button-prev,
.voice-slider .voice-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.voice-slider .voice-button-prev {
  left: 0;
}
.voice-slider .voice-button-next {
  right: 0;
}

.map {
  background: url("../images/map_bg.webp") no-repeat center top;
  background-size: cover;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .map {
    padding: 50px 0;
  }
  .map .container {
    display: flex;
    flex-direction: column;
  }
  .map .container .icon-list {
    order: 2;
    margin-bottom: 0;
  }
  .map .container .cityTabs {
    order: 1;
    margin-bottom: 20px;
  }
}
.map #map {
  margin-bottom: 30px;
  width: 100%;
  height: 500px;
}
.map #map .gm-style .gm-style-iw-c {
  max-width: 250px !important;
  border-radius: 0;
}
.map #map .gm-style .gm-style-iw-c h3 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #0a6f3a;
}
.map #map .gm-style .gm-style-iw-c p {
  font-size: 14px;
}
.map #map .gm-style .gm-style-iw-c a {
  font-size: 13px;
  color: #FF7700;
  text-decoration: underline;
}
.map .icon-list {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 17px 10px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.map .icon-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map .icon-list li img {
  max-height: 34px;
}
.map .icon-list li span {
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.647rem + 0.47vw, 1rem);
}
@media screen and (max-width: 768px) {
  .map .icon-list {
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: space-between;
    padding: 17px 15px;
  }
  .map .icon-list li {
    width: calc((100% - 20px) / 2);
    justify-content: start;
    gap: 8px;
  }
}
.map #zoom-out-btn {
  position: absolute;
  top: 10px;
  right: 50px;
  z-index: 500;
  background: #0a6f3a;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
}
.map .cityTabs__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.map .cityTabs__nav .cityTabs__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 10px;
  border-radius: 8px;
  background: #0a6f3a;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.map .cityTabs__nav .cityTabs__btn::before {
  content: "";
  width: 17px;
  height: 24px;
  background: url("../images/icon_pin_w.svg") center center/contain;
}
@media screen and (max-width: 768px) {
  .map .cityTabs__nav .cityTabs__btn::before {
    content: none;
  }
}
.map .cityTabs__nav .cityTabs__btn.is-active {
  background: #43B45B;
}
.map .cityTabs__nav > .cityTabs__panelWrap {
  grid-column: 1/-1;
  width: 100%;
  justify-self: stretch;
  margin-top: 12px;
}
.map .cityTabs__nav > .cityTabs__panelWrap.is-open .cityTabs__panelInner {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
}
.map .cityTabs__panelInner {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.2s ease, transform 0.2s ease;
}
.map .shopList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .map .shopList {
    gap: 20px;
  }
}
.map .shopList .shop-item {
  width: calc((100% - 40px) / 2);
  background: #fff;
  padding: 30px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .map .shopList .shop-item {
    width: 100%;
  }
}
.map .shopList .shop-item .shop-title {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #0a6f3a;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .map .shopList .shop-item .shop-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.map .shopList .shop-item .shop-title .shop-name {
  font-weight: 900;
  line-height: 1;
  font-size: 1.125rem;
  color: #0a6f3a;
  flex: 1;
}
.map .shopList .shop-item .shop-title .shop-icon {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: end;
  height: 27px;
}
.map .shopList .shop-item .shop-address {
  margin-bottom: 15px;
}
.map .shopList .shop-item .shop-buttonList {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}
.map .shopList .shop-item .shop-buttonList .button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.map .shopList .shop-item .shop-buttonList .button::before {
  content: "";
}
.map .shopList .shop-item .shop-buttonList .button.tel {
  background: #fff;
  border: 1px solid #0a6f3a;
  color: #0a6f3a;
}
.map .shopList .shop-item .shop-buttonList .button.tel::before {
  background: url("../images/icon_tel.svg") center center/contain no-repeat;
  width: 15px;
  height: 21px;
}
.map .shopList .shop-item .shop-buttonList .button.tel::after {
  background-image: url("../images/button_arrow_g.svg");
}
.map .shopList .shop-item .item-link {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .map .cityTabs__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sec-news {
  padding: 100px 0;
}
.sec-news .container {
  display: flex;
}
.sec-news .news-section-title {
  width: 30%;
}
.sec-news .news-section-title h2 {
  text-align: left;
  margin-bottom: 40px;
}
.sec-news .news-section-title h2::after {
  left: 0;
  transform: none;
}
.sec-news .news-section-title .item-link {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sec-news {
    padding: 50px 0;
  }
  .sec-news .container {
    flex-direction: column;
  }
  .sec-news .news-section-title {
    width: 100%;
  }
  .sec-news .news-section-title h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .sec-news .news-section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec-news .news-list {
  flex: 1;
}
.sec-news .news-list li {
  border-bottom: 1px solid #C8E1CE;
  padding: 15px 0 15px 10px;
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative;
}
.sec-news .news-list li .news-date {
  color: #9A9999;
}
.sec-news .news-list li a {
  display: flex;
  gap: 15px 30px;
  flex: 1;
}
.sec-news .news-list li a:hover {
  color: #43B45B;
}
.sec-news .news-list li .news-title {
  flex: 1;
  font-weight: 600;
}
.sec-news .news-list li .news-location {
  color: #fff;
  background: #43B45B;
  padding: 7px 40px;
  text-align: center;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .sec-news .news-list li {
    padding: 15px 0;
  }
  .sec-news .news-list li a {
    flex-direction: column;
  }
  .sec-news .news-list li .news-location {
    position: absolute;
    top: 13px;
    right: 0;
    padding: 5px 20px;
    font-size: 12px;
  }
}

.column {
  padding: 100px 0;
  background: #F4F8F7;
}
@media screen and (max-width: 768px) {
  .column {
    padding: 50px 0;
  }
  .column .column-wrapper {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
}
.column .column-list {
  display: flex;
  gap: 40px;
  align-items: start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .column .column-list {
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.column .column-list > li {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 768px) {
  .column .column-list > li {
    width: auto;
    flex: 0 0 280px;
  }
}
.column .column-list > li img {
  border-radius: 15px;
  margin-bottom: 14px;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.column .column-list > li .column-date {
  color: #9A9999;
  margin-bottom: 7px;
}
.column .column-list > li .column-title a {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* ★2行でカット */
  overflow: hidden;
  margin-bottom: 10px;
}
.column .column-list > li .column-category a {
  border: 1px solid #0a6f3a;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  text-align: center;
  color: #0a6f3a;
}

.problem-parts {
  background: #43B45B;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .problem-parts {
    margin-bottom: 70px;
  }
}
.problem-parts::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 100px solid #43B45B;
}
@media screen and (max-width: 768px) {
  .problem-parts::after {
    bottom: -40px;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 40px solid #43B45B;
  }
}
.problem-parts .container {
  position: relative;
}
.problem-parts .problem-wrapper {
  padding: 60px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .problem-parts .problem-wrapper {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}
.problem-parts .problem-wrapper .problem-img {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40%;
  transform: translate(-40px);
}
@media screen and (max-width: 768px) {
  .problem-parts .problem-wrapper .problem-img {
    position: relative;
    width: 50%;
    transform: none;
    margin: -70px auto 20px;
  }
}
.problem-parts .problem-wrapper .problem-content {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .problem-parts .problem-wrapper .problem-content {
    width: 100%;
  }
}
.problem-parts .problem-wrapper .problem-content h2 {
  color: #fff;
  font-size: clamp(1.375rem, 1.169rem + 0.94vw, 1.875rem);
  margin-bottom: 25px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.15em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .problem-parts .problem-wrapper .problem-content h2 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.problem-parts .problem-wrapper .problem-content .problem-list li {
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(1rem, 0.958rem + 0.22vw, 1.125rem);
  font-weight: 800;
  display: flex;
  align-items: start;
  gap: 10px;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .problem-parts .problem-wrapper .problem-content .problem-list li {
    gap: 5px;
  }
}
.problem-parts .problem-wrapper .problem-content .problem-list li::before {
  content: "";
  width: 30px;
  height: 24px;
  background: url("../images/icon_check.svg") center center/contain no-repeat;
  transform: translateY(7px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .problem-parts .problem-wrapper .problem-content .problem-list li::before {
    width: 21px;
    height: 16px;
  }
}

.reason {
  background: url("../images/reason_bg.webp") top center/cover no-repeat;
  padding: 120px 0 100px;
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 50px 0 50px;
  }
}
.reason .reason-list .reason-item {
  position: relative;
}
.reason .reason-list .reason-item:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.reason .reason-list .reason-item .reason-item-title {
  border-bottom: 1px solid #0a6f3a;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.reason .reason-list .reason-item .reason-item-title .catch-en {
  font-size: clamp(2.5rem, 1.471rem + 4.71vw, 5rem);
  position: relative;
  text-align: left;
  letter-spacing: 0;
  opacity: 0.2;
}
.reason .reason-list .reason-item .reason-item-title h3 {
  font-size: clamp(1.375rem, 1.054rem + 1.71vw, 2.125rem);
  font-weight: 900;
  color: #0a6f3a;
}
.reason .reason-list .reason-item .reason-item-img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-item .reason-item-img {
    position: relative;
  }
}
.reason .reason-list .reason-item .reason-item-content {
  width: 67%;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-item .reason-item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .reason .reason-list .reason-item .reason-item-content .reason-item-img {
    order: 1;
    width: 60%;
    display: block;
    margin: 0 auto;
    max-height: 125px;
  }
  .reason .reason-list .reason-item .reason-item-content > p {
    order: 2;
  }
  .reason .reason-list .reason-item .reason-item-content .reason-item-point {
    order: 3;
  }
}
.reason .reason-list .reason-item .reason-item-content > p {
  font-size: clamp(1rem, 0.949rem + 0.24vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 20px;
}
.reason .reason-list .reason-item .reason-item-content > p strong {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.721rem + 0.71vw, 1.25rem);
}
.reason .reason-list .reason-item .reason-item-content .reason-item-point ul {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.reason .reason-list .reason-item .reason-item-content .reason-item-point ul li {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-item .reason-item-content .reason-item-point ul li {
    flex-direction: column;
    gap: 10px;
  }
}
.reason .reason-list .reason-item .reason-item-content .reason-item-point ul li .reason-item-point-icon {
  font-weight: 900;
  color: #fff;
  background: #0a6f3a;
  padding: 15px 10px;
  text-align: center;
  width: 115px;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-item .reason-item-content .reason-item-point ul li .reason-item-point-icon {
    width: 100%;
    padding: 10px;
  }
}
.reason .reason-list .reason-item .reason-item-content .reason-item-point ul li .reason-item-point-text {
  flex: 1;
  font-size: 0.875rem;
}
.reason .reason-list .reason-item .reason-item-content .reason-item-point ul li .reason-item-point-text small {
  font-size: 0.75rem;
}
.reason .reason-list .reason-item:nth-child(even) .reason-item-title {
  padding-left: 33%;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .reason-item:nth-child(even) .reason-item-title {
    padding-left: 0;
  }
}
.reason .reason-list .reason-item:nth-child(even) .reason-item-img {
  left: 0;
  right: auto;
}
.reason .reason-list .reason-item:nth-child(even) .reason-item-content {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .reason .reason-list .reason-item:nth-child(2) .reason-item-img {
    left: -63px;
  }
}

.bg-flow {
  background: linear-gradient(0deg, #F4F8F7 0%, #FFFFFF 100%);
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .bg-flow {
    padding-bottom: 50px;
  }
}

.flow-wrapper .flow-item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flow-wrapper .flow-item {
    flex-direction: column;
    gap: 0;
  }
}
.flow-wrapper .flow-item:not(:last-child) {
  margin-bottom: 30px;
}
.flow-wrapper .flow-item img {
  width: 35%;
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .flow-wrapper .flow-item img {
    width: 80%;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    position: relative;
    z-index: 2;
  }
}
.flow-wrapper .flow-item .flow-item__content {
  flex: 1;
  background: #fff;
  padding: 17px 30px;
}
@media (max-width: 768px) {
  .flow-wrapper .flow-item .flow-item__content {
    padding: 65px 20px 30px;
    margin-top: -50px;
    border-radius: 15px;
  }
}
.flow-wrapper .flow-item .flow-item__content .flow-item__title {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #43B45B;
  margin-bottom: 15px;
}
.flow-wrapper .flow-item .flow-item__content .flow-item__title .num {
  color: #43B45B;
  font-size: clamp(2rem, 1.794rem + 0.94vw, 2.5rem);
  font-weight: 900;
}
.flow-wrapper .flow-item .flow-item__content .flow-item__title .text {
  font-size: clamp(1.375rem, 1.272rem + 0.47vw, 1.625rem);
  font-weight: 900;
  color: #0a6f3a;
}
.flow-wrapper .flow-item .flow-item__content .flow-item__text {
  line-height: 1.6;
  font-weight: 600;
}
@media screen {
  .flow-wrapper .flow-item .flow-item__content .flow-item__text {
    font-size: 16px;
  }
}

.fv-achievements {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 24px;
}
.fv-achievements .fv-achievement-item {
  padding-top: 15px;
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .fv-achievements .fv-achievement-item:nth-child(1) {
    width: 26%;
  }
  .fv-achievements .fv-achievement-item:nth-child(2) {
    flex: 1;
    width: auto;
  }
}
.fv-achievements .fv-achievement-item:not(:last-child) {
  border-right: 2px dashed #C8E1CE;
}
.fv-achievements .fv-achievement-item .fv-achievement-text {
  font-size: clamp(0.688rem, 0.454rem + 1.07vw, 1.255rem);
  font-weight: 700;
  color: #0a6f3a;
  color: #fff;
  padding: 8px 20px;
  background: #0a6f3a;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .fv-achievements .fv-achievement-item .fv-achievement-text {
    padding: 2px 8px;
    margin-bottom: 0;
  }
}
.fv-achievements .fv-achievement-item .fv-achievement-number {
  flex: 1;
  color: #FF7700;
  font-size: clamp(2.679rem, 0.43rem + 10.28vw, 8.14rem);
  font-weight: 600;
  font-family: "Outfit", "Noto Sans JP", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  position: relative;
  line-height: 1;
  text-align: center;
}
.fv-achievements .fv-achievement-item .fv-achievement-number .unit {
  font-size: clamp(1.116rem, 0.18rem + 4.28vw, 3.39rem);
}
.fv-achievements .fv-achievement-item .fv-achievement-number .text-green {
  color: #0a6f3a;
  font-weight: 900;
  font-size: 3.125rem;
}
.fv-achievements .fv-achievement-item .fv-achievement-number .note-no {
  position: absolute;
  color: #0a6f3a;
  font-size: 0.65rem;
  font-weight: 600;
  right: -17px;
  bottom: 15px;
}
@media screen and (max-width: 768px) {
  .fv-achievements .fv-achievement-item .fv-achievement-number .note-no {
    right: -10px;
    bottom: 7px;
  }
}
.fv-achievements .fv-achievement-item:nth-child(2) .fv-achievement-number {
  font-size: clamp(1.563rem, 0.217rem + 6.15vw, 4.83rem);
  position: relative;
  line-height: 0.6;
  top: 15px;
}
@media screen and (max-width: 768px) {
  .fv-achievements .fv-achievement-item:nth-child(2) .fv-achievement-number {
    top: 8px;
    font-weight: 700;
  }
}
.fv-achievements .fv-achievement-item:nth-child(2) .fv-achievement-number .text-green {
  font-size: clamp(1rem, 0.382rem + 2.82vw, 2.5rem);
}
.fv-achievements .fv-achievement-item:nth-child(2) .fv-achievement-number .unit {
  font-size: clamp(0.625rem, 0.059rem + 2.59vw, 2rem);
  font-weight: 900;
}
.fv-achievements .fv-achievement-item:nth-child(2) .fv-achievement-number .note-no {
  top: 13px;
  bottom: auto;
  right: 11px;
}
@media screen and (max-width: 768px) {
  .fv-achievements .fv-achievement-item:nth-child(2) .fv-achievement-number .note-no {
    right: -5px;
    top: 0px;
  }
}
.fv-achievements .fv-achievement-item:last-child .fv-achievement-number .text-green {
  font-size: clamp(0.75rem, 0.12rem + 2.88vw, 2.281rem);
  font-weight: 900;
}
.fv-achievements .fv-achievement-item:last-child .fv-achievement-number .unit {
  font-size: clamp(1.125rem, 0.179rem + 4.32vw, 3.422rem);
  font-weight: 900;
}
.fv-achievements .fv-achievement-item:last-child .fv-achievement-number .note-no {
  bottom: 51px;
  right: 91px;
}
@media screen and (max-width: 768px) {
  .fv-achievements .fv-achievement-item:last-child .fv-achievement-number .note-no {
    right: 20px;
    bottom: 20px;
  }
}
.fv-achievements + .note {
  text-align: center;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .fv-achievements + .note {
    text-align: left;
  }
}

.faq.pb {
  padding-bottom: 100px;
}
.faq-category {
  font-weight: 900;
  font-size: clamp(1.25rem, 1.147rem + 0.47vw, 1.5rem);
  margin-bottom: 30px;
  color: #0a6f3a;
}
.faq-list:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .faq-list:not(:last-child) {
    margin-bottom: 40px;
  }
}
.faq-list .faq-qNum {
  background: #0a6f3a;
  border-radius: 50%;
  font-family: "Roboto", "Noto Sans JP", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.375rem, 1.221rem + 0.71vw, 1.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .faq-list .faq-qNum {
    width: 40px;
    height: 40px;
  }
}
.faq-list .faq-aNum {
  background: #B3CEC0;
  border-radius: 50%;
  font-family: "Roboto", "Noto Sans JP", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #fff;
  font-weight: 900;
  font-size: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .faq-list .faq-aNum {
    width: 40px;
    height: 40px;
  }
}
.faq-list .faq-qText {
  flex: 1;
  background: #F4F8F7;
  border-radius: 40px;
  padding: 15px 30px;
  font-size: clamp(0.875rem, 0.772rem + 0.47vw, 1.125rem);
  font-weight: 900;
  color: #0a6f3a;
}
@media screen and (max-width: 768px) {
  .faq-list .faq-qText {
    padding: 10px 20px;
  }
}
.faq-list .faq-aInner {
  flex: 1;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  position: relative;
  margin-bottom: 15px;
}
.faq-q[aria-expanded=true] .faq-icon::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .faq-q {
    gap: 10px;
  }
}
.faq-a {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 40px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.faq-a[hidden] {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .faq-a {
    gap: 10px;
  }
}
.faq-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
  display: block;
}
.faq-icon::before {
  width: 20px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .faq-icon::before {
    width: 10px;
  }
  .faq-icon::after {
    height: 10px;
  }
}

.first-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 499;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .first-button {
    bottom: 50px;
    right: 10px;
  }
}

.comparison-block {
  width: 100%;
  max-width: 640px;
  position: relative;
  margin: 0 auto;
}
.comparison-block::-moz-selection {
  background-color: transparent;
}
.comparison-block::selection {
  background-color: transparent;
}
.comparison-block::-moz-selection {
  background-color: transparent;
}
.comparison-block *::-moz-selection {
  background-color: transparent;
}
.comparison-block *::selection {
  background-color: transparent;
}
.comparison-block *::-moz-selection {
  background-color: transparent;
}
.comparison-block img {
  max-width: none;
}

.comparison-before-img {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 5;
}
.comparison-before-img::after {
  content: "Before";
  font-size: 12px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #0a6f3a;
  font-weight: 900;
  padding: 3px 10px;
  border: 2px solid #0a6f3a;
  background: #fff;
}
.comparison-before-img img {
  width: 100%;
  display: block;
}

.comparison-after-img {
  position: relative;
  z-index: 1;
}
.comparison-after-img::after {
  content: "After";
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-weight: 900;
  padding: 3px 10px;
  border: 2px solid #0a6f3a;
  background: #0a6f3a;
}
.comparison-after-img img {
  width: 100%;
}

.comparison-arrow {
  background-color: #fff;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 2px;
  height: 100%;
  left: 50%;
  cursor: pointer;
}
.comparison-arrow:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -12px;
  border-radius: 0;
  transform: translateY(-50%) rotate(45deg);
}/*# sourceMappingURL=parts.css.map */