@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  color: #1E293B;
  font-size: 20px;
}
@media (min-width: 768px) and (max-width:1023px) {
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
}

.inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1400px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .inner {
    width: 86%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.wide-inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .wide-inner {
    width: 86%;
  }
}
@media screen and (max-width: 767px) {
  .wide-inner {
    width: 100%;
    padding: 0 20px;
  }
}

.narrow-inner {
  width: 75%;
  margin: 0 auto;
  max-width: 1300px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .narrow-inner {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .narrow-inner {
    width: 100%;
    padding: 0 20px;
  }
}

.section-title {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width:1023px) {
  .section-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}
.section-title span {
  font-size: 20px;
  display: block;
  padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .section-title span {
    font-size: 18px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .section-title span {
    font-size: 16px;
  }
}

.pc-none {
  display: none;
}
@media (min-width: 768px) and (max-width:1023px) {
  .pc-none {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

header {
  padding: 10px 0;
}

.header-logo {
  width: 115px;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 80px;
  }
}

.floating-banner {
  position: fixed;
  z-index: 300;
  right: 0;
  background-color: #1E293B;
  padding: 20px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  width: 70px;
  border-radius: 20px 0 0 20px;
  line-height: 1.4;
  font-size: 18px;
  transition: all 0.7s;
  font-weight: 700;
}
.floating-banner:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width:1023px) {
  .floating-banner {
    font-size: 16px;
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .floating-banner {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    width: 50%;
    height: 60px;
    font-size: 14px;
    border-radius: 0;
    padding: 10px;
  }
}
.floating-banner p span {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center center;
  /* 回転の基準を中央に */
  line-height: 1;
  /* 余白を減らす */
  vertical-align: middle;
  /* 行の中央に */
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .floating-banner p span {
    transform: rotate(0deg);
    margin-right: 0;
    vertical-align: top;
  }
}
.floating-banner img {
  width: 25px;
}

.banner--1 {
  top: 100px;
}
@media screen and (max-width: 767px) {
  .banner--1 {
    bottom: 0;
    left: 0;
    top: auto;
  }
}

.banner--2 {
  top: 450px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .banner--2 {
    top: 420px;
  }
}
@media screen and (max-width: 767px) {
  .banner--2 {
    bottom: 0;
    right: 0;
    top: auto;
    background-color: #F55D05;
  }
}
.banner--2 p {
  margin-bottom: 0;
}

.hero {
  padding: 240px 30px 160px 0;
  background: url(../img/main_img.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 60px 0;
  }
}
@media (min-width: 768px) and (max-width:1023px) {
  .hero {
    padding: 140px 30px 100px 0;
  }
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width:1023px) {
  .hero h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hero h1 {
    font-size: 22px;
  }
}
.hero h1 span {
  color: #000000;
  background-color: #ffffff;
  padding: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: none;
}
@media (min-width: 768px) and (max-width:1023px) {
  .hero h1 span {
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hero h1 span {
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.hero-point-wrap {
  display: flex;
  padding-top: 50px;
  gap: 20px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .hero-point-wrap {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hero-point-wrap {
    gap: 5px;
    padding-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.hero-point-wrap p {
  margin-bottom: 0;
}

.point {
  border-radius: 50%;
  position: relative;
  width: 200px;
  height: 200px;
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
  background: linear-gradient(-45deg, #F7FED9 0%, #F8DC7C 22%, #FFE8AD 51%, #F8DC7C 77%, #F7FED9 100%);
}
@media (min-width: 768px) and (max-width:1023px) {
  .point {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .point {
    width: 110px;
    height: 110px;
    line-height: 1.2;
    font-size: 13px;
  }
}
.point .is-big {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .point .is-big {
    font-size: 20px;
  }
}
.point .is-too-big {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .point .is-too-big {
    font-size: 24px;
  }
}

.point-flame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  transform: translate(-50%, -50%);
}

/*================================


entry--1



=================================*/
.text-line {
  background: linear-gradient(transparent 80%, #FFF654 80%);
}

.battery {
  background: #fff;
}
.battery__text {
  margin-bottom: 35px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .battery__text {
    line-height: 1.5;
  }
}

.battery-inner .entry-box--1::before {
  max-width: 68%;
}
.battery-inner .entry-btn {
  height: 100px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .battery-inner .entry-btn {
    height: 70px;
    margin-top: 30px;
  }
}
.battery-inner .entry-btn:hover {
  opacity: 0.8;
}
.battery-inner .entry-btn p {
  padding: 15px;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: bold;
  position: relative;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .battery-inner .entry-btn p {
    padding: 15px 15px 15px 40px;
  }
}
.battery-inner .entry-btn p .bottom-arrow {
  margin-left: 0;
}
.battery-inner .entry-btn p .file-icon {
  width: 50px;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .battery-inner .entry-btn p .file-icon {
    width: 36px;
  }
}
.battery-inner .entry-btn p br {
  display: none;
}
.battery-inner .entry-btn .wpcf7-submit {
  width: 100%;
  height: 100%;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  border: none;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .battery-inner .entry-btn .wpcf7-submit {
    font-size: 24px;
  }
}
.battery-inner .entry-btn .wpcf7-spinner {
  display: none;
}

.battery-entry-top-content {
  max-width: 756px;
}

.entry--1 {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .entry--1 {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.entry--1 .entry-box {
  border-radius: 40px;
  position: relative;
  border: 3px solid #F55D05;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--1 .entry-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry--1 .entry-box {
    border-radius: 15px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.4;
  }
}
.entry--1 .entry-box .is-small {
  font-size: 18px;
  padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--1 .entry-box .is-small {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .entry--1 .entry-box .is-small {
    font-size: 14px;
    padding-bottom: 5px;
  }
}
.entry--1 .entry-box h2 {
  font-size: 32px;
  display: inline-block;
  background-color: #ffffff;
  margin-top: -50px;
  padding: 20px;
  font-weight: 700;
  max-width: 58%;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--1 .entry-box h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .entry--1 .entry-box h2 {
    font-size: 17px;
    margin-left: 50px;
    max-width: 78%;
    padding: 10px;
  }
}
.entry--1 .entry-box h2 span {
  font-size: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--1 .entry-box h2 span {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .entry--1 .entry-box h2 span {
    font-size: 23px;
  }
}

.point-wrap {
  position: relative;
  text-align: center;
}

.point-entry {
  position: absolute;
  top: -120px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .point-entry {
    left: -40px;
    top: -90px;
  }
}

@media screen and (min-width: 1024px) {
  .battery-entry-box {
    margin-bottom: 50px !important;
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}

.entry-text {
  padding-top: 30px;
  line-height: 1.5;
}
.entry-text span {
  font-size: 24px;
  position: relative;
  font-weight: 700;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .entry-text span {
    font-size: 18px;
  }
}
.entry-text span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #FFF654;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .entry-text {
    padding-top: 10px;
  }
}

.entry-item-wrap {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .entry-item-wrap {
    display: block;
    padding-top: 30px;
  }
}

.entry-item {
  width: 50%;
  border: 1px solid #1E293B;
  padding-bottom: 20px;
  border-radius: 25px;
}
@media screen and (max-width: 767px) {
  .entry-item {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
  }
}
.entry-item h3 {
  background-color: #1E293B;
  color: #fff;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-item h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry-item h3 {
    font-size: 18px;
    padding: 15px;
    border-radius: 10px 10px 0 0;
  }
}

.entry-item-row {
  display: flex;
  padding: 10px 30px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-item-row {
    padding: 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .entry-item-row {
    padding: 10px;
    font-size: 14px;
  }
}

.entry-item-label {
  font-weight: 700;
  width: 130px;
  text-align: left;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-item-label {
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .entry-item-label {
    width: 100px;
  }
}

.group-entry-item-wrap {
  flex-direction: column;
  gap: 34px;
}
.group-entry-item-wrap .entry-item {
  width: 100%;
}
.group-entry-item-wrap .entry-item-label {
  width: 90px;
}
.group-entry-item-wrap .entry-item-text {
  width: auto;
}
@media screen and (max-width: 767px) {
  .group-entry-item-wrap .entry-item-row {
    flex-direction: column;
    gap: 10px;
  }
}

.group-entry-item-wrap02 .entry-item-label {
  width: 144px;
}
.group-entry-item-wrap02 .entry-item-text {
  width: auto;
}
.group-entry-item-wrap02-inner {
  display: flex;
  position: relative;
  gap: 40px;
  flex-direction: column;
}
@media screen and (min-width: 1300px) {
  .group-entry-item-wrap02-inner {
    gap: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .group-entry-item-wrap02-inner {
    flex-direction: row;
  }
}
.group-entry-item-wrap02-inner::before {
  content: "";
  width: 95%;
  height: 1px;
  background: #ccc;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .group-entry-item-wrap02-inner::before {
    width: 1px;
    height: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .group-entry-item-wrap02-inner-item {
    width: 50%;
  }
}

.entry-item-text {
  width: calc(100% - 130px);
  text-align: left;
  margin-bottom: 0;
}
.entry-item-text span {
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.entry-item-text span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #FFF654;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-item-text {
    width: calc(100% - 110px);
  }
}
@media screen and (max-width: 767px) {
  .entry-item-text {
    width: calc(100% - 100px);
  }
}

.entry-btn-wrap {
  margin-top: 50px;
  margin-bottom: 50px;
  transition: all 0.2s ease;
}
.entry-btn-wrap:hover {
  transform: translateY(2px);
}
.entry-btn-wrap:active {
  transform: translateY(4px);
}
@media screen and (max-width: 767px) {
  .entry-btn-wrap {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.entry-btn-wrap__ps {
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .entry-btn-wrap__ps {
    font-size: 20px;
  }
}

.entry-btn-top {
  position: relative;
  margin: 0 auto;
  width: 400px;
  height: 50px;
  border-radius: 40px;
  border: 2px solid #F55D05;
  color: #F55D05;
  padding-top: 6px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .entry-btn-top {
    width: 90%;
    font-size: 14px;
    padding-top: 13px;
  }
}
.entry-btn-top::after {
  content: "";
  position: absolute;
  bottom: -10px;
  /* ボタン下からの距離 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  /* 矢印の左側 */
  border-right: 10px solid transparent;
  /* 矢印の右側 */
  border-top: 10px solid white;
  /* 矢印の色 */
}

.entry-btn {
  width: 450px;
  height: 70px;
  border-radius: 50px;
  margin: 0 auto;
  background: linear-gradient(90deg, #FF8B48 0%, #F45A01 100%);
}
@media screen and (min-width: 1024px) {
  .entry-btn {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .entry-btn {
    width: 100%;
  }
}
.entry-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1024px) {
  .entry-btn a {
    padding-left: 50px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .entry-btn a {
    gap: 0;
  }
}
.entry-btn a:hover {
  color: aliceblue !important;
}
.entry-btn .bottom-arrow {
  width: 30px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .entry-btn .bottom-arrow {
    margin-left: 20px;
  }
}
.entry-btn .file-icon {
  width: 20px;
  margin-right: 20px;
}
.entry-btn img {
  -o-object-fit: contain;
     object-fit: contain;
}

.wave-bg {
  width: 100%;
}

.entry-box--1 {
  margin-bottom: 160px;
  padding-bottom: 48px;
  border: 3px solid #F55D05;
  position: relative;
}
@media screen and (max-width: 767px) {
  .entry-box--1 {
    border-radius: 10px !important;
  }
}
.entry-box--1::before {
  content: "";
  position: absolute;
  width: 1200px;
  max-width: 80%;
  height: 3px;
  background-color: #fff;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-box--1::before {
    width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .entry-box--1::before {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .entry-box--1 {
    margin-bottom: 100px;
  }
}
.entry-box--1 .entry-box--1-title {
  font-size: 48px !important;
  max-width: 80% !important;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-box--1 .entry-box--1-title {
    font-size: 34px !important;
  }
}
@media screen and (max-width: 767px) {
  .entry-box--1 .entry-box--1-title {
    font-size: 24px !important;
    margin-left: 0 !important;
  }
}

.entry-box--1-text {
  padding-top: 30px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .entry-box--1-text {
    padding-top: 10px;
  }
}
.entry-box--1-text img {
  width: 10px;
}
@media screen and (max-width: 767px) {
  .entry-box--1-text img {
    display: none;
  }
}
.entry-box--1-text .rotate-l {
  transform: rotate(-10deg);
  height: 40px;
  margin-right: 10px;
}
.entry-box--1-text .rotate-r {
  transform: rotate(10deg);
  height: 40px;
  margin-right: 10px;
}
.entry-box--1-text span {
  font-size: 32px;
  font-weight: 700;
  color: #F55D05;
}
@media screen and (max-width: 767px) {
  .entry-box--1-text span {
    font-size: 18px;
  }
}

.battery-form-wrap {
  display: flex;
}
@media screen and (min-width: 1300px) {
  .battery-form-wrap {
    margin-bottom: 20px;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1299px) {
  .battery-form-wrap {
    flex-direction: column;
  }
}

@media screen and (min-width: 1300px) {
  .battery-form-list {
    width: calc(50% - 15px);
  }
}
@media screen and (min-width: 1300px) {
  .battery-form-list:nth-child(1) .battery-form-item {
    padding: 13px 40px;
  }
}
@media screen and (min-width: 1300px) {
  .battery-form-list:nth-child(1) .battery-form-item .calc-title p {
    width: 72px;
  }
}
@media screen and (min-width: 1300px) {
  .battery-form-list:nth-child(2) .battery-form-item {
    padding: 13px 60px;
  }
}

.battery-form-item {
  margin-bottom: 20px;
  padding: 30px 20px;
  background: #FEFFF2;
  box-shadow: 2px 6px 5px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1024px) {
  .battery-form-item {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
  }
}
@media screen and (min-width: 1300px) {
  .battery-form-item {
    height: 120px;
  }
}
.battery-form-item .calc-title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1700px) {
  .battery-form-item .calc-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .battery-form-item .calc-title {
    margin-bottom: 20px;
    text-align: left;
  }
}
.battery-form-item .calc-content {
  width: 100%;
}
.battery-form-item p {
  margin-bottom: 0;
  white-space: nowrap;
}
.battery-form-item input, .battery-form-item select {
  border-radius: 5px;
  border: 1px solid #ccc;
}

@media screen and (min-width: 1300px) {
  .battery-method-item {
    display: flex;
    gap: 24px;
    align-items: center;
  }
}
.battery-method-item .method-label {
  width: 112px;
  display: block;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 1299px) {
  .battery-method-item .method-label {
    margin-bottom: 10px;
  }
}
.battery-method-item .method-field {
  width: 100%;
}
@media screen and (min-width: 1300px) {
  .battery-method-item .method-field {
    width: calc(100% - 136px);
  }
}

.battery-simulation {
  margin-top: 55px;
  padding-top: 53px;
  border-top: 1px solid #ccc;
  font-weight: bold;
}
.battery-simulation__tit {
  font-size: 24px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .battery-simulation__tit {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.battery-simulation__text {
  margin-bottom: 25px;
}
.battery-simulation__ps {
  margin-top: 13px;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .battery-simulation__ps {
    text-align: right;
  }
}

.battery-simulation-img {
  display: flex;
  justify-content: space-between;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .battery-simulation-img {
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  .battery-simulation-img__item {
    width: calc(50% - 8.5px);
  }
}

.easy-voice {
  position: absolute;
  width: 13%;
  right: 0;
  top: -50px;
  z-index: 6;
}
@media (min-width: 768px) and (max-width:1023px) {
  .easy-voice {
    width: 20%;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .easy-voice {
    width: 25%;
    right: -20px;
    top: -30px;
  }
}

/*================================


review



=================================*/
.review {
  padding: 100px 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .review {
    padding: 60px 20px;
  }
}
.review h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .review h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .review h2 {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
.review p {
  line-height: 2;
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .review p {
    padding-bottom: 20px;
  }
}

.review-img {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .review-img {
    width: 100%;
  }
}

/*================================


concept



=================================*/
.concept {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .concept {
    padding: 60px 20px;
  }
}

.concept-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .concept-wrap {
    gap: 10px;
  }
}

.concept-h2 {
  width: 90px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .concept-h2 {
    width: 17%;
  }
}

.concept-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .concept-item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .concept-item {
    display: block;
  }
}

.concept-img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .concept-img {
    width: 140px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .concept-item-text {
    text-align: center;
  }
}
.concept-item-text h3 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .concept-item-text h3 {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
.concept-item-text h3::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #CCCCCC;
  left: 0;
  bottom: 15px;
}
@media screen and (max-width: 767px) {
  .concept-item-text h3::after {
    display: none;
  }
}
.concept-item-text p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .concept-item-text p {
    font-size: 14px;
  }
}
.concept-item-text p span {
  position: relative;
  font-weight: 700;
}
.concept-item-text p span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #FFF654;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/*================================


entry--2



=================================*/
.entry-top-wrap {
  width: 1600px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-top-wrap {
    gap: 0;
  }
}

.group-entry-wrap {
  margin-bottom: 185px !important;
}
@media screen and (max-width: 1299px) {
  .group-entry-wrap {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 767px) {
  .group-entry-wrap {
    margin-bottom: 30px !important;
  }
}

.entry-top--1 {
  position: relative;
  width: 15%;
  height: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1024px) {
  .entry-top--1 {
    width: 360px;
  }
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-top--1 {
    margin-right: -60px;
  }
}
@media screen and (max-width: 767px) {
  .entry-top--1 {
    display: none;
  }
}
.entry-top--1 .entry-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.entry-top--1 .square-icon {
  position: absolute;
  width: 40px;
  right: -20px;
  bottom: -20px;
}

.entry-top---2 {
  margin-top: 140px;
  position: relative;
  width: 15%;
  height: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1024px) {
  .entry-top---2 {
    width: 360px;
  }
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-top---2 {
    margin-left: -60px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry-top---2 {
    display: none;
  }
}
.entry-top---2 .entry-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.entry-top---2 .square-icon {
  position: absolute;
  width: 40px;
  left: -20px;
  bottom: -20px;
}

.entry-top-content {
  text-align: center;
  width: 50%;
  padding-top: 120px;
  min-width: 670px;
}
@media screen and (max-width: 767px) {
  .entry-top-content {
    min-width: 200px;
    width: 100%;
    padding-top: 60px;
  }
}
.entry-top-content h2 {
  font-weight: 700;
  font-size: 40px;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry-top-content h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .entry-top-content h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .entry-top-content__tit--sm {
    font-size: 24px;
  }
}
.entry-top-content__tit--line {
  background: linear-gradient(transparent 80%, #FFF654 80%);
}
.entry-top-content p {
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .entry-top-content p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry-top-content p {
    line-height: 1.5;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.entry-top-content p span {
  font-weight: 700;
  border-bottom: 6px solid #FFF654;
  /* 必要に応じて */
  line-height: 0.6;
  /* 行の高さを詰める */
  padding-bottom: 0.1em;
  /* 数値を小さくして重ね具合を調整 */
}
@media screen and (max-width: 767px) {
  .entry-top-content p span {
    border-bottom: none;
    display: inline;
    white-space: normal;
    line-height: 1.6;
    background: linear-gradient(transparent 80%, #FFF654 80%);
  }
}
@media screen and (min-width: 1024px) {
  .entry-top-content__text--big {
    font-size: 24px;
  }
}

.entry--2 {
  background-color: #F5F5F5;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .entry--2 {
    padding-bottom: 40px;
  }
}
.entry--2 .entry-box {
  margin-top: 120px;
  border-radius: 40px;
  position: relative;
  background-color: #ffffff;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
  /*後で消す始まり*/
  /*後で消す終わり*/
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--2 .entry-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry--2 .entry-box {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.4;
  }
}
.entry--2 .entry-box .point {
  position: absolute;
  top: -100px;
}
@media screen and (max-width: 767px) {
  .entry--2 .entry-box .point {
    left: -40px;
    top: -90px;
  }
}
.entry--2 .entry-box .is-small {
  font-size: 18px;
  padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--2 .entry-box .is-small {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .entry--2 .entry-box .is-small {
    font-size: 14px;
    padding-bottom: 5px;
  }
}
.entry--2 .entry-box h2 {
  font-size: 32px;
  display: inline-block;
  margin-top: -50px;
  padding: 20px;
  font-weight: 700;
  max-width: 58%;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--2 .entry-box h2 {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .entry--2 .entry-box h2 {
    font-size: 17px;
    line-height: 1.4;
    margin-left: 50px;
    max-width: 80%;
    padding: 10px;
  }
}
.entry--2 .entry-box h2 span {
  font-size: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .entry--2 .entry-box h2 span {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .entry--2 .entry-box h2 span {
    font-size: 23px;
  }
}
.entry--2 .entry-box .group-bnr {
  padding: 15px;
  background: linear-gradient(137deg, rgb(251, 220, 124) 0%, rgb(255, 234, 168) 32%, rgb(252, 246, 231) 50%, rgb(251, 220, 124) 74%, rgb(247, 254, 217) 98%);
  border-radius: 10px;
  text-align: left;
}
@media screen and (min-width: 1300px) {
  .entry--2 .entry-box .group-bnr {
    width: 1070px;
    max-width: 75%;
    height: 250px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -125px;
  }
}
@media screen and (max-width: 1299px) {
  .entry--2 .entry-box .group-bnr {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 767px) {
  .entry--2 .entry-box .group-bnr {
    border-radius: 10px;
  }
}
.entry--2 .entry-box .group-bnr .point {
  position: static;
}
.entry--2 .entry-box .group-bnr-inner {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .entry--2 .entry-box .group-bnr-inner {
    padding-left: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1299px) {
  .entry--2 .entry-box .group-bnr-inner {
    padding: 20px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 767px) {
  .entry--2 .entry-box .group-bnr-inner {
    border-radius: 10px;
  }
}
.entry--2 .entry-box .group-bnr-img {
  width: 220px;
  max-width: 100%;
}
@media screen and (max-width: 1299px) {
  .entry--2 .entry-box .group-bnr-img {
    width: 150px;
    margin: 0 auto 30px;
  }
}

.group-bnr-content {
  font-size: 16px;
}
@media screen and (max-width: 1299px) {
  .group-bnr-content {
    line-height: 1.7;
  }
}
.group-bnr-content__tit {
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 1700px) {
  .group-bnr-content__tit {
    font-size: 29px;
    line-height: 1.3;
  }
}
.group-bnr-content__tit--big {
  background: linear-gradient(to right, rgb(255, 139, 72), rgb(244, 90, 1)) bottom/100% 20% no-repeat;
  font-size: 24px;
}
@media screen and (min-width: 1700px) {
  .group-bnr-content__tit--big {
    font-size: 40px;
  }
}
.group-bnr-content__text {
  margin-bottom: 0;
}
@media screen and (min-width: 1700px) {
  .group-bnr-content__text {
    font-size: 20px;
  }
}
.group-bnr-content__text--big {
  font-weight: bold;
  background: linear-gradient(to right, rgb(255, 139, 72), rgb(244, 90, 1)) bottom/100% 20% no-repeat;
}
@media screen and (min-width: 1700px) {
  .group-bnr-content__text--big {
    font-size: 24px;
  }
}

.group-entry {
  padding-top: 117px;
}
@media screen and (max-width: 767px) {
  .group-entry {
    padding-top: 16px;
  }
}

.group-entry01 {
  background-color: #f1f1f1 !important;
}
@media screen and (max-width: 767px) {
  .group-entry01 {
    background: #fff !important;
  }
}

.group-entry02 {
  padding-top: 0;
}
.group-entry02 .group-entry-inner {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1300px) {
  .group-entry-inner {
    padding: 175px 100px 0 !important;
  }
}
@media screen and (max-width: 1299px) {
  .group-entry-inner {
    margin-top: 0 !important;
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .group-entry-inner {
    padding-right: 10px !important;
    padding-left: 10px !important;
    padding-top: 10px;
  }
}
@media screen and (max-width: 1299px) {
  .group-entry-inner::before {
    content: none;
  }
}

/*================================


reason



=================================*/
.reason {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .reason {
    padding-top: 60px;
  }
}

.reason-title {
  text-align: center;
  font-weight: 700;
}
.reason-title p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .reason-title p {
    font-size: 14px;
  }
}
.reason-title h2 {
  font-size: 40px;
  padding-top: 20px;
  padding-bottom: 140px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .reason-title h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .reason-title h2 {
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 80px;
  }
}
.reason-title h2 span {
  font-size: 56px;
  color: #F55D05;
}
@media (min-width: 768px) and (max-width:1023px) {
  .reason-title h2 span {
    font-size: 46px;
  }
}
@media screen and (max-width: 767px) {
  .reason-title h2 span {
    font-size: 34px;
  }
}

.reason-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 140px 60px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .reason-wrap {
    gap: 120px 20px;
  }
}
@media screen and (max-width: 767px) {
  .reason-wrap {
    display: block;
  }
}

.reason-item {
  width: calc(50% - 30px);
  position: relative;
  padding-left: 60px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .reason-item {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .reason-item {
    width: 100%;
    padding-left: 0;
    margin-bottom: 60px;
  }
}
.reason-item h3 {
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .reason-item h3 {
    line-height: 1.4;
  }
}
.reason-item p {
  line-height: 1.7;
}
.reason-item ul {
  padding-left: 30px;
}
.reason-item ul li {
  line-height: 1.7;
  list-style: disc;
}

.reason-number {
  position: absolute;
  font-size: 128px;
  font-weight: 700;
  color: #F55D05;
  top: -100px;
  left: 0;
}
@media (min-width: 768px) and (max-width:1023px) {
  .reason-number {
    font-size: 90px;
    top: -70px;
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .reason-number {
    font-size: 70px;
    top: -50px;
  }
}

/*================================


trouble



=================================*/
.trouble {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .trouble {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.trouble-wrap-top {
  display: flex;
}
@media screen and (max-width: 767px) {
  .trouble-wrap-top {
    display: block;
  }
}

.trouble-wrap-bottom {
  display: flex;
}
@media screen and (max-width: 767px) {
  .trouble-wrap-bottom {
    display: block;
  }
}

.trouble-label {
  width: 20%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .trouble-label {
    width: auto;
  }
}
.trouble-label span {
  text-align: center;
  margin-left: 10px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-label span {
    font-size: 16px;
  }
}
.trouble-label h2 {
  font-weight: 700;
  font-size: 32px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 2;
  padding-top: 30px;
  text-align: left;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-label h2 {
    font-size: 26px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .trouble-label h2 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 24px;
    text-align: center;
    line-height: 1.6;
    padding-top: 10px;
  }
}

.trouble-label1 {
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
@media screen and (max-width: 767px) {
  .trouble-label1 {
    padding-bottom: 10px;
  }
}
.trouble-label1::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000000;
  left: -15px;
  top: -15px;
}

.trouble-label2 {
  border-right: 2px solid #000000;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .trouble-label2 {
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
  }
}
.trouble-label2 img {
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .trouble-label2 img {
    display: none;
  }
}

.trouble-content1 {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .trouble-content1 {
    border-right: 2px solid #000000;
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .trouble-content2 {
    border-left: 2px solid #000000;
  }
}

.trouble-content {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-content {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .trouble-content {
    gap: 20px;
    width: 100%;
    padding: 30px 0 30px 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.trouble-content ul {
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .trouble-content ul {
    padding-left: 0px;
    margin-left: 1em !important;
  }
}
.trouble-content ul li {
  padding-bottom: 30px;
}
.trouble-content ul li h3 {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .trouble-content ul li h3 {
    margin-bottom: 10px;
    white-space: nowrap;
  }
}
.trouble-content ul li h3 span {
  font-weight: 700;
  font-size: 24px;
  border-bottom: 6px solid #FFF654;
  display: inline-block;
  /* 必要に応じて */
  line-height: 0.6;
  /* 行の高さを詰める */
  padding-bottom: 0.1em;
  /* 数値を小さくして重ね具合を調整 */
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-content ul li h3 span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .trouble-content ul li h3 span {
    font-size: 16px;
  }
}
.trouble-content ul li h3 img {
  width: 62px;
  margin-left: 20px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-content ul li h3 img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .trouble-content ul li h3 img {
    width: 20px;
    margin-left: 0;
    vertical-align: middle;
  }
}
.trouble-content ul li h3::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000000;
  left: -40px;
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .trouble-content ul li h3::before {
    left: -10px;
    width: 10px;
    height: 10px;
  }
}
.trouble-content ul li h3::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #000000;
  left: -60px;
  bottom: 12px;
}
@media screen and (max-width: 767px) {
  .trouble-content ul li h3::after {
    left: -20px;
    bottom: 9px;
  }
}
.trouble-content ul li p {
  line-height: 1.7;
}

.trouble-item {
  display: flex;
  width: calc(50% - 20px);
  border: 1px solid #CCCCCC;
  position: relative;
  padding: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-item {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .trouble-item {
    display: block;
    width: 100%;
    padding: 20px;
  }
}
.trouble-item p {
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 22px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-item p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .trouble-item p {
    font-size: 16px;
  }
}

.trouble-item-icon {
  width: 60px;
  position: absolute;
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-item-icon {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .trouble-item-icon {
    width: 50px;
  }
}

.trouble-item-icon1 {
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.trouble-item-icon3 {
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
}
@media screen and (max-width: 767px) {
  .trouble-item-icon3 {
    width: 60px;
  }
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-item-icon3 {
    width: 80px;
  }
}

.trouble-item-icon5 {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
}
@media screen and (max-width: 767px) {
  .trouble-item-icon5 {
    width: 50px;
    left: -30px;
  }
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-item-icon5 {
    width: 70px;
  }
}

.trouble-item-icon2 {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
}
@media screen and (max-width: 767px) {
  .trouble-item-icon2 {
    width: 50px;
  }
}
@media (min-width: 768px) and (max-width:1023px) {
  .trouble-item-icon2 {
    width: 60px;
  }
}

.trouble-item-icon4 {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

/*================================


voice



=================================*/
.voice {
  background-color: #F5F5F5;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .voice {
    padding-bottom: 80px;
  }
}

.voice-title {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .voice-title {
    padding-bottom: 20px;
  }
}

.voice-item {
  margin-top: 40px;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid #CCCCCC;
  padding: 60px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .voice-item {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .voice-item {
    padding: 20px;
    border-radius: 20px;
  }
}

.voice-item-top {
  display: flex;
  gap: 40px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .voice-item-top {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .voice-item-top {
    display: block;
  }
}

.voice-item-img {
  width: calc(50% - 20px);
  height: 267px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .voice-item-img {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .voice-item-img {
    width: 100%;
    height: 200px;
  }
}
.voice-item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.voice-table {
  width: calc(50% - 20px);
  background-color: #FAFAFA;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .voice-table {
    width: 100%;
    margin-top: 20px;
  }
}

.voice-table-row {
  display: flex;
  font-size: 16px;
  border-bottom: 1px solid #CCCCCC;
}
@media (min-width: 768px) and (max-width:1023px) {
  .voice-table-row {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .voice-table-row {
    font-size: 14px;
  }
}
.voice-table-row:first-child .voice-table-label {
  border-radius: 20px 0 0 0;
}
.voice-table-row:last-child {
  border: none;
}
.voice-table-row:last-child .voice-table-label {
  border-radius: 0 0 0 20px;
}

.voice-table-label {
  color: #fff;
  text-align: center;
  width: 100px;
  padding: 25px 0;
  background-color: #F55D05;
}
@media (min-width: 768px) and (max-width:1023px) {
  .voice-table-label {
    width: 90px;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .voice-table-label {
    width: 90px;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.voice-table-text {
  padding: 25px 10px;
  width: calc(100% - 100px);
}
@media (min-width: 768px) and (max-width:1023px) {
  .voice-table-text {
    padding: 20px 5px;
  }
}
@media screen and (max-width: 767px) {
  .voice-table-text {
    padding: 15px 10px;
    width: calc(100% - 90px);
  }
}

.voice-item-bottom {
  position: relative;
  z-index: 0;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .voice-item-bottom {
    padding-top: 20px;
  }
}
.voice-item-bottom p {
  width: 70%;
  margin: 0 auto;
  line-height: 1.9;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .voice-item-bottom p {
    padding-top: 0;
    width: 100%;
  }
}
.voice-item-bottom .voice-bottom-bg {
  position: absolute;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voice-item-bottom .voice-bottom-bg {
    display: none;
  }
}

/*================================


step



=================================*/
.step {
  background-color: #F5F5F5;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .step {
    padding-bottom: 60px;
  }
}

.step-wrap {
  display: flex;
  padding-top: 80px;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .step-wrap {
    gap: 3px;
  }
}
@media screen and (max-width: 767px) {
  .step-wrap {
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
  }
}

.step-arrow {
  width: 20px;
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .step-arrow {
    width: 15px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .step-arrow {
    display: none;
  }
}

.step-item {
  width: calc(25% - 22.25px);
}
@media (min-width: 768px) and (max-width:1023px) {
  .step-item {
    width: calc(25% - 16px);
  }
}
@media screen and (max-width: 767px) {
  .step-item {
    width: 100%;
  }
}
.step-item p {
  line-height: 1.7;
  font-size: 16px;
  padding-top: 10px;
}

.step-top {
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  padding-bottom: 20px;
}
.step-top h3 {
  font-weight: 700;
  text-align: center;
  margin-top: -20px;
}
@media (min-width: 768px) and (max-width:1023px) {
  .step-top h3 {
    margin-top: 0;
  }
}

.step-number {
  position: absolute;
  color: #ffffff;
  border-radius: 40px;
  background-color: #F55D05;
  padding: 5px 20px;
  top: -10px;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width:1023px) {
  .step-number {
    padding: 3px 15px;
  }
}

.step-img {
  width: 50%;
  margin: 0 auto;
}

/*================================


support



=================================*/
.support {
  background-color: #F5F5F5;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .support {
    padding-bottom: 60px;
  }
}

.support-accordion {
  margin-top: 60px;
  border-radius: 20px;
  margin-bottom: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .support-accordion {
    margin-top: 40px;
  }
}
.support-accordion .support-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 35px 60px;
  color: #fff;
  background-color: #F55D05;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .support-accordion .support-head {
    padding: 20px;
  }
}
.support-accordion .support-head .support-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .support-accordion .support-head .support-icon {
    width: 15px;
    height: 15px;
  }
}
.support-accordion .support-head .support-icon .support-icon-bar {
  position: absolute;
  background: #fff;
  transition: transform 0.3s ease;
}
.support-accordion .support-head .support-icon .support-icon-bar1 {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.support-accordion .support-head .support-icon .support-icon-bar2 {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.support-accordion .support-head.is-open .support-icon-bar2 {
  transform: translateX(-50%) scaleY(0);
}
.support-accordion .support-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.support-accordion .support-body table {
  width: 100%;
  table-layout: fixed;
  background-color: #fff;
  border-collapse: collapse;
  border: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .support-accordion .support-body table {
    font-size: 14px;
  }
}
.support-accordion .support-body table th,
.support-accordion .support-body table td {
  padding: 20px;
  text-align: left;
  border: 1px solid #D9D9D9;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .support-accordion .support-body table th,
.support-accordion .support-body table td {
    padding: 10px;
  }
}
.support-accordion .support-body table th {
  background: #FFF7F3;
  text-align: center;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .support-accordion .support-body table th {
    padding: 20px 0;
  }
}
.support-accordion.is-open .support-body {
  max-height: 1000px;
}

.support-body th:nth-child(1),
.support-body td:nth-child(1) {
  width: 25%;
  /* 1 */
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .support-body th:nth-child(1),
.support-body td:nth-child(1) {
    width: 20%;
  }
}

.support-body th:nth-child(2),
.support-body td:nth-child(2) {
  width: 50%;
  /* 2 */
}

.support-body th:nth-child(3),
.support-body td:nth-child(3) {
  width: 25%;
  /* 1 */
}
@media screen and (max-width: 767px) {
  .support-body th:nth-child(3),
.support-body td:nth-child(3) {
    width: 30%;
  }
}

/*================================


company



=================================*/
.company {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.company-box {
  margin-top: 60px;
  border-radius: 10px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .company-box {
    margin-top: 30px;
  }
}

.company-row {
  display: flex;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .company-row {
    display: block;
  }
}
.company-row:first-child .company-label {
  border-radius: 10px 0 0 0;
}
@media screen and (max-width: 767px) {
  .company-row:first-child .company-label {
    border-radius: 0;
  }
}
.company-row:last-child {
  border: none;
}
.company-row:last-child .company-label {
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
  .company-row:last-child .company-label {
    border-radius: 0;
  }
}

.company-label {
  width: 200px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 30px 0;
  background-color: #1E293B;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) and (max-width:1023px) {
  .company-label {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .company-label {
    width: 100%;
    padding: 15px 0;
  }
}

.company-text {
  padding: 30px 0 30px 20px;
  line-height: 1.4;
  width: calc(100% - 200px);
}
@media (min-width: 768px) and (max-width:1023px) {
  .company-text {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 767px) {
  .company-text {
    padding: 15px;
    width: 100%;
  }
}

/*================================


faqs



=================================*/
.faqs {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .faqs {
    padding-top: 60px;
  }
}

.faqs-wrap {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .faqs-wrap {
    margin-top: 40px;
  }
}

.fqs-item {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .fqs-item {
    padding-bottom: 20px;
  }
}
.fqs-item .faqs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
  padding: 40px;
  background: #1E293B;
  border-radius: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .fqs-item .faqs-head {
    padding: 20px;
  }
}
.fqs-item .faqs-head.is-open {
  border-radius: 10px 10px 0 0;
}
.fqs-item .faqs-head .faqs-q-text {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .fqs-item .faqs-head .faqs-q-text {
    width: calc(100% - 18px);
    font-size: 14px;
  }
}
.fqs-item .faqs-head .faqs-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .fqs-item .faqs-head .faqs-icon {
    width: 15px;
    height: 15px;
  }
}
.fqs-item .faqs-head .faqs-icon .faqs-bar {
  position: absolute;
  background: #fff;
  transition: transform 0.3s ease;
}
.fqs-item .faqs-head .faqs-icon .faqs-bar1 {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.fqs-item .faqs-head .faqs-icon .faqs-bar2 {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.fqs-item .faqs-head.is-open .faqs-bar2 {
  transform: translateX(-50%) scaleY(0);
}
.fqs-item .faqs-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #fff;
}
.fqs-item .faqs-body .faqs-a-text {
  padding: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .fqs-item .faqs-body .faqs-a-text {
    padding: 20px;
  }
}
.fqs-item.is-open .faqs-body {
  max-height: 500px;
  border-radius: 0 0 10px 10px;
}

.contact {
  padding-top: 130px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.contact .section-title {
  margin-bottom: 55px;
}
.contact .wpcf7 form .wpcf7-response-output {
  display: none !important;
}

.contact-form {
  max-width: 1120px;
  margin-top: 55px;
}
.contact-form .entry-btn {
  width: 326px;
  max-width: 100%;
  height: 70px;
  transition: 0.3s;
}
.contact-form .entry-btn:hover {
  opacity: 0.8;
}
.contact-form .entry-btn p {
  padding: 15px;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: bold;
  position: relative;
  justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .contact-form .entry-btn p {
    padding: 15px 15px 15px 40px;
  }
}
.contact-form .entry-btn p .bottom-arrow {
  margin-left: 0;
}
.contact-form .entry-btn p br {
  display: none;
}
.contact-form .entry-btn .wpcf7-submit {
  width: 100%;
  height: 100%;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .contact-form .entry-btn .wpcf7-submit {
    font-size: 20px;
  }
}
.contact-form .entry-btn .wpcf7-spinner {
  display: none;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  font-weight: bold;
}
@media screen and (max-width: 1299px) {
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media screen and (min-width: 1300px) {
  .contact-title {
    width: calc(100% - 750px);
  }
}
.contact-title p {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-title .required {
  padding: 5px 25px;
  background: #F6640F;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
}
@media screen and (max-width: 1299px) {
  .contact-title .required {
    margin-left: 20px;
    padding: 5px 15px;
  }
}

.contact-content {
  width: 100%;
}
@media screen and (min-width: 1300px) {
  .contact-content {
    width: 750px;
  }
}
@media screen and (max-width: 1299px) {
  .contact-content {
    margin-bottom: 30px;
  }
}
.contact-content p {
  margin-bottom: 0;
}
.contact-content .wpcf7-response-output {
  display: none;
}

.confirm .submit-btn {
  margin-top: 80px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .confirm .submit-btn {
    flex-direction: column;
  }
}
.confirm .submit-btn br {
  display: none;
}
.confirm .wpcf7-previous {
  width: 320px !important;
  border-radius: 50px;
  border: 3px solid #F77427;
  background: #fff;
  color: #F77427;
  transition: 0.3s;
}
.confirm .wpcf7-previous:hover {
  border: 3px solid #F77427;
  background: #F77427;
  color: #fff;
}
.confirm .wpcf7-submit {
  width: 320px !important;
  border-radius: 50px;
  background: #F77427;
  transition: 0.3s;
}
.confirm .wpcf7-submit:hover {
  color: #F77427;
  background: #fff;
}
.confirm .wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 767px) {
  .footer-img {
    margin-bottom: 60px;
  }
}
/*# sourceMappingURL=main.css.map */