.chall-tab-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chall-tab-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 35px;
}
.chall-tab-section .wrap .tab-summary {
  position: relative;
  width: 100%;
  height: auto;
  padding: 15px 75px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: #fff;
  background-color: #6B338B;
}
.chall-tab-section .wrap .chall-tab-grid {
  position: relative;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, auto));
  grid-gap: 10px;
}
.chall-tab-section .wrap .chall-tab-grid .chall-tab-cell {
  position: relative;
  width: 100%;
  height: auto;
}
.chall-tab-section .wrap .chall-tab-grid .chall-tab-cell > a {
  position: relative;
  width: 100%;
  height: auto;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
  color: #CCCCCC;
  background: #fff;
  border: 2px solid #CCCCCC;
  border-radius: 500px;
}
.chall-tab-section .wrap .chall-tab-grid .chall-tab-cell > a:hover, .chall-tab-section .wrap .chall-tab-grid .chall-tab-cell > a.current {
  color: #fff;
  background: #6B338B;
  border: 2px solid #6B338B;
}

@media (max-width: 1420px) {
  .chall-tab-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .chall-tab-section {
    padding-top: 35px;
  }
  .chall-tab-section .wrap {
    grid-gap: 1rem;
  }
  .chall-tab-section .wrap .tab-summary {
    padding: 16px;
    flex-direction: column;
    grid-gap: 1rem;
    font-size: 14px;
    line-height: 1.4;
  }
  .chall-tab-section .wrap .tab-summary > span {
    display: none;
  }
  .chall-tab-section .wrap .chall-tab-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, auto));
  }
  .chall-tab-section .wrap .chall-tab-grid .chall-tab-cell > a {
    padding: 10px;
    font-size: 14px;
  }
}
.chall-main-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chall-main-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chall-main-section .wrap .chall-main-tit {
  position: relative;
  width: 100%;
  height: auto;
  padding: 45px 0;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/chall_title_banner.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}
.chall-main-section .wrap .chall-main-tit h1 {
  font-size: 40px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
.chall-main-section .wrap .chall-content-wrap {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 80px;
}
.chall-main-section .wrap .chall-content-wrap:nth-child(n+3) {
  padding-top: 100px;
}
.chall-main-section .wrap .chall-content-wrap .chall-subtit {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 28px;
  border-bottom: 2px solid #6B338B;
}
.chall-main-section .wrap .chall-content-wrap .chall-subtit > h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #6B338B;
}
.chall-main-section .wrap .chall-content-wrap .chall-symptom {
  position: relative;
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.chall-main-section .wrap .chall-content-wrap .chall-symptom .chall-symptom-item {
  position: relative;
  width: 100%;
  height: auto;
  padding: 18px 0 18px 30px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  border-bottom: 1px solid #CCCCCC;
}
.chall-main-section .wrap .chall-content-wrap .chall-symptom .chall-symptom-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 500px;
  background: #6B338B;
  transform: translateY(50%);
}
.chall-main-section .wrap .chall-content-wrap .chall-symptom .chall-symptom-item:first-child {
  padding-top: 0;
}
.chall-main-section .wrap .chall-content-wrap .chall-symptom .chall-symptom-item:first-child::before {
  top: 0;
}
.chall-main-section .wrap .chall-content-wrap .chall-symptom .chall-symptom-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 40px;
}
.chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-img {
  position: relative;
  width: auto;
  height: auto;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-list {
  position: relative;
  width: 100%;
  height: auto;
  padding: 65px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 28px;
  border: 2px solid #CCCCCC;
  border-radius: 30px;
}
.chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-list .chall-remedy-item {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1420px) {
  .chall-main-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .chall-main-section {
    padding-top: 80px;
  }
  .chall-main-section .wrap .chall-main-tit {
    padding: 20px 0;
    margin-bottom: 35px;
  }
  .chall-main-section .wrap .chall-main-tit h1 {
    font-size: 20px;
  }
  .chall-main-section .wrap .chall-content-wrap {
    grid-gap: 35px;
  }
  .chall-main-section .wrap .chall-content-wrap:nth-child(n+3) {
    padding-top: 50px;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-subtit {
    padding-bottom: 1rem;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-subtit > h3 {
    font-size: 20px;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-symptom .chall-symptom-item {
    padding: 1rem 0 1rem 20px;
    font-size: 14px;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-symptom .chall-symptom-item::before {
    top: 14px;
    width: 10px;
    height: 10px;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap {
    grid-gap: 1rem;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-img {
    flex-direction: column;
    align-items: center;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-img > figure {
    width: 80%;
    height: auto;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-img > figure > img {
    width: 100%;
    height: auto;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-list {
    padding: 20px 35px;
    grid-gap: 1rem;
  }
  .chall-main-section .wrap .chall-content-wrap .chall-remedy-wrap .chall-remedy-list .chall-remedy-item {
    font-size: 14px;
    line-height: 1.4;
  }
  .chall-main-section .wrap .source-from {
    font-size: 14px;
  }
}
.recently-product-content-area {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.recently-product-content-area .product-list {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.recently-product-content-area .product-list .product-item {
  position: relative;
  width: 100%;
  height: 700px;
  padding: 55px;
  display: flex;
  flex-direction: row;
  grid-gap: 55px;
  border: 1px solid #6B338B;
}
.recently-product-content-area .product-list .product-item .product-thumb {
  position: relative;
  width: auto;
  height: 100%;
  flex: 1 0 55%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.recently-product-content-area .product-list .product-item .product-about-info {
  position: relative;
  width: auto;
  height: 100%;
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-top-area {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 8px;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-top-area > span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #BC967F;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-top-area .product-name {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 30px;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price {
  align-items: center;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price > dd {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price > dd > strong {
  font-size: 38px;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price > dd .pro-option {
  font-size: 18px;
  color: #BC967F;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl > dt {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 0 17%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #656565;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl > dd {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 1 83%;
  font-size: 18px;
  line-height: 1.4;
  color: #656565;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area {
  position: relative;
  width: auto;
  height: auto;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  grid-gap: 18px;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images .pro-etc-img {
  position: relative;
  width: 110px;
  height: 110px;
  cursor: pointer;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images .pro-etc-img > figure {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images .pro-etc-img > figure > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.recently-product-content-area .product-list .pro-last-banner {
  position: relative;
  width: 100%;
  height: auto;
}
.recently-product-content-area .product-list .pro-last-banner > img {
  position: relative;
  width: 100%;
  height: auto;
}
.recently-product-content-area .product-list .pro-last-banner .pro-last-banner-title {
  position: absolute;
  left: 50%;
  top: 10%;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  transform: translate(-50%, 0);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1420px) {
  .recently-product-content-area .product-list {
    padding: 0 1rem;
  }
  .recently-product-content-area .product-list .product-item .product-thumb {
    height: 0;
    padding-bottom: 46.08%;
  }
}
@media (max-width: 1024px) {
  .recently-product-content-area {
    padding-top: 80px;
  }
  .recently-product-content-area .product-list {
    grid-gap: 35px;
  }
  .recently-product-content-area .product-list .product-item {
    height: auto;
    padding: 35px;
    flex-direction: column;
    grid-gap: 35px;
  }
  .recently-product-content-area .product-list .product-item .product-thumb {
    flex: 0 0 auto;
    padding-bottom: 67%;
  }
  .recently-product-content-area .product-list .product-item .product-about-info {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    grid-gap: 1rem;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-top-area > span {
    font-size: 16px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-top-area .product-name {
    font-size: 24px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area {
    grid-gap: 1rem;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price > dd {
    font-size: 1rem;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price > dd > strong {
    font-size: 24px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl > dd {
    font-size: 1rem;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images {
    width: -moz-fit-content;
    width: fit-content;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images .pro-etc-img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 640px) {
  .recently-product-content-area .product-list {
    grid-gap: 1rem;
  }
  .recently-product-content-area .product-list .product-item {
    padding: 1rem;
    grid-gap: 1rem;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-top-area > span {
    font-size: 14px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-top-area .product-name {
    font-size: 20px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price > dd > strong {
    font-size: 20px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl.pro-price > dd .pro-option {
    font-size: 14px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl > dt {
    font-size: 14px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-mid-area > dl > dd {
    font-size: 14px;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images .pro-etc-img {
    width: 100%;
    height: auto;
  }
  .recently-product-content-area .product-list .product-item .product-about-info .pro-bot-area .pro-etc-images .pro-etc-img > figure {
    height: 0;
    padding-bottom: 100%;
  }
}
.heat-summary-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.heat-summary-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
}
.heat-summary-section .wrap .heat-content-wrap {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.heat-summary-section .wrap .heat-content-wrap .heat-con-tit {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}
.heat-summary-section .wrap .heat-content-wrap .heat-con-main {
  font-size: 18px;
  line-height: 1.4;
  color: #8E8E8E;
}
.heat-summary-section .wrap .heat-thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 26.05%;
  flex: 1 1 40%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 1420px) {
  .heat-summary-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .heat-summary-section {
    padding-top: 80px;
  }
  .heat-summary-section .wrap {
    flex-direction: column-reverse;
    grid-gap: 35px;
  }
  .heat-summary-section .wrap .heat-thumb {
    padding-top: 66%;
    flex: 0 0 auto;
  }
  .heat-summary-section .wrap .heat-content-wrap {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    grid-gap: 1rem;
  }
  .heat-summary-section .wrap .heat-content-wrap .heat-con-tit {
    font-size: 20px;
    line-height: 1.4;
  }
  .heat-summary-section .wrap .heat-content-wrap .heat-con-main {
    font-size: 14px;
  }
}
.heat-use-mitsui {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.heat-use-mitsui .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.heat-use-mitsui .wrap .heat-title-area {
  position: relative;
  width: auto;
  height: auto;
}
.heat-use-mitsui .wrap .heat-title-area .heat-subtitle {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}
.heat-use-mitsui .wrap .heat-use-contents {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-use-effect {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-gap: 10px;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-use-effect .effect-item {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 20px;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-use-effect .effect-item .effect-name {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: #656565;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-use-effect .effect-item .effect-icon {
  width: auto;
  height: 100px;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-use-effect .effect-item .effect-icon > img {
  width: auto;
  height: 100%;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-compare-list {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  grid-gap: 20px;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-compare-list .heat-compare-item {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 10px;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-compare-list .heat-compare-item .heat-compare-thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75.17%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-compare-list .heat-compare-item > span {
  font-size: 18px;
  line-height: 1.2;
  color: #656565;
}
.heat-use-mitsui .wrap .heat-use-contents .heat-attention {
  align-self: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #656565;
}

@media (max-width: 1420px) {
  .heat-use-mitsui .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .heat-use-mitsui {
    padding-top: 80px;
  }
  .heat-use-mitsui .wrap {
    grid-gap: 35px;
  }
  .heat-use-mitsui .wrap .heat-title-area .heat-subtitle {
    font-size: 20px;
  }
  .heat-use-mitsui .wrap .heat-use-contents {
    grid-gap: 1rem;
  }
  .heat-use-mitsui .wrap .heat-use-contents .heat-use-effect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .heat-use-mitsui .wrap .heat-use-contents .heat-use-effect .effect-item .effect-name {
    font-size: 14px;
  }
  .heat-use-mitsui .wrap .heat-use-contents .heat-use-effect .effect-item .effect-icon {
    height: 60px;
  }
  .heat-use-mitsui .wrap .heat-use-contents .heat-compare-list {
    flex-direction: column;
    grid-gap: 1rem;
  }
  .heat-use-mitsui .wrap .heat-use-contents .heat-compare-list .heat-compare-item {
    width: 70%;
    height: auto;
    min-width: 300px;
    margin: 0 auto;
    flex: 0 0 auto;
  }
  .heat-use-mitsui .wrap .heat-use-contents .heat-compare-list .heat-compare-item > span {
    font-size: 14px;
    text-align: center;
  }
  .heat-use-mitsui .wrap .heat-use-contents .heat-attention {
    font-size: 14px;
    line-height: 1.4;
  }
}
.faq-content-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.faq-content-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 50px;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.faq-content-section .wrap .faq-content-inner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.faq-content-section .wrap .faq-content-inner .faq-title {
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  border-radius: 5px;
  background: #91BEEB;
}
.faq-content-section .wrap .faq-content-inner .faq-title > strong {
  font-size: 25px;
  color: #2C7AD2;
}
.faq-content-section .wrap .faq-content-inner .faq-main {
  position: relative;
  width: 100%;
  height: auto;
  padding: 10px 50px;
  border-radius: 5px;
  background: #F8F8F8;
}
.faq-content-section .wrap .faq-content-inner .faq-main::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 22px;
  height: 17px;
  background-image: url("../img/faq_answer.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.faq-content-section .wrap .faq-content-inner .faq-main > p {
  font-size: 18px;
  line-height: 1.4;
  color: #8E8E8E;
}

@media (max-width: 1420px) {
  .faq-content-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .faq-content-section {
    padding-top: 80px;
  }
  .faq-content-section .wrap {
    margin-top: 0;
  }
  .faq-content-section .wrap .faq-content-inner .faq-title {
    font-size: 20px;
  }
  .faq-content-section .wrap .faq-content-inner .faq-title > strong {
    font-size: 20px;
  }
  .faq-content-section .wrap .faq-content-inner .faq-main {
    padding: 10px 30px;
  }
  .faq-content-section .wrap .faq-content-inner .faq-main::before {
    width: 17px;
    height: 13px;
  }
  .faq-content-section .wrap .faq-content-inner .faq-main > p {
    font-size: 14px;
  }
}
.howUse-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.howUse-section.tp100 {
  padding-top: 150px;
}
.howUse-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.howUse-section .wrap .about-total-desc {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.howUse-section .wrap .about-total-desc > p {
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
.howUse-section .wrap .howUse-title-area {
  position: relative;
  width: 100%;
  height: auto;
}
.howUse-section .wrap .howUse-title-area .howUse-subtitle {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}
.howUse-section .wrap .howUse-contents {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.howUse-section .wrap .howUse-contents .howUse-inner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 50px;
}
.howUse-section .wrap .howUse-contents .howUse-inner .left-thumb {
  position: relative;
  width: auto;
  height: 0;
  padding-top: 12.67%;
  flex: 0 0 340px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.howUse-section .wrap .howUse-contents .howUse-inner .right-contents {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.howUse-section .wrap .howUse-contents .howUse-inner .right-contents .content-inner-title {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}
.howUse-section .wrap .howUse-contents .howUse-inner .right-contents .content-inner-summary {
  font-size: 18px;
  line-height: 1.4;
  color: #656565;
}
.howUse-section .wrap .howGrab-contents {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.howUse-section .wrap .howGrab-contents .howGrab-total-summary {
  font-size: 18px;
  line-height: 1.2;
  color: #656565;
}
.howUse-section .wrap .howGrab-contents .howGrab-detail-desc {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.howUse-section .wrap .howGrab-contents .howGrab-detail-desc .howGrab-image-list {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  grid-gap: 40px;
}
.howUse-section .wrap .howGrab-contents .howGrab-detail-desc .howGrab-image-list .howGrab-image-item {
  position: relative;
  width: auto;
  height: 0;
  padding-top: 14.08%;
  flex: 0 1 314px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.howUse-section .wrap .howGrab-contents .howGrab-detail-desc .howGrab-text-list {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
.howUse-section .wrap .about-back-contents {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.howUse-section .wrap .about-back-contents .about-back-top {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  grid-gap: 30px;
}
.howUse-section .wrap .about-back-contents .about-back-top .left-thumb {
  position: relative;
  width: auto;
  height: 0;
  padding-top: 23.87%;
  flex: 0 0 30%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.howUse-section .wrap .about-back-contents .about-back-top .about-back-summary {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
.howUse-section .wrap .about-back-contents .about-back-top .about-back-summary .about-summary-tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.howUse-section .wrap .about-back-contents .about-back-top .about-back-summary .about-summary-main {
  font-size: 18px;
  line-height: 1.4;
  color: #656565;
}
.howUse-section .wrap .about-back-contents .about-back-bottom {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
}
.howUse-section .wrap .about-back-contents .about-back-bottom .about-back-thumb {
  position: relative;
  width: auto;
  height: 0;
  padding-top: 34.64%;
  flex: 1 1 40%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.howUse-section .wrap .about-cold-contents {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
}
.howUse-section .wrap .about-cold-contents .about-cold-image {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 0 40%;
}
.howUse-section .wrap .about-cold-contents .about-cold-image > figure {
  position: relative;
  width: 100%;
  height: auto;
}
.howUse-section .wrap .about-cold-contents .about-cold-image > figure > img {
  width: 100%;
  height: auto;
}
.howUse-section .wrap .about-cold-contents .about-cold-inner {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 50px;
}
.howUse-section .wrap .about-cold-contents .about-cold-inner > p {
  font-size: 18px;
  line-height: 1.4;
  color: #656565;
  text-align: end;
  word-break: keep-all;
}
.howUse-section .wrap .about-cold-contents .about-cold-inner .about-cold-progress {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.howUse-section .wrap .about-cold-contents .about-cold-inner .about-cold-progress .cold-progress-item {
  position: relative;
  width: auto;
  height: auto;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: #255285;
}
.howUse-section .wrap .about-cold-contents .about-cold-inner .about-cold-progress .cold-progress-item:not(:last-of-type) {
  padding-right: 20px;
  margin-right: 8px;
}
.howUse-section .wrap .about-cold-contents .about-cold-inner .about-cold-progress .cold-progress-item:not(:last-of-type)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 18px;
  transform: translateY(-50%);
}

@media (max-width: 1420px) {
  .howUse-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .howUse-section {
    padding-top: 35px;
  }
  .howUse-section.tp100 {
    padding-top: 50px;
  }
  .howUse-section .wrap {
    grid-gap: 1rem;
  }
  .howUse-section .wrap .howUse-contents {
    grid-gap: 1rem;
  }
  .howUse-section .wrap .howUse-contents .howUse-inner {
    flex-direction: column;
    grid-gap: 1rem;
  }
  .howUse-section .wrap .howUse-contents .howUse-inner .left-thumb {
    width: 85%;
    padding-top: 76%;
    flex: 0 0 auto;
  }
  .howUse-section .wrap .howUse-contents .howUse-inner .right-contents {
    flex: 0 0 auto;
    grid-gap: 1rem;
  }
  .howUse-section .wrap .howUse-contents .howUse-inner .right-contents .content-inner-title {
    font-size: 20px;
  }
  .howUse-section .wrap .howUse-contents .howUse-inner .right-contents .content-inner-summary {
    font-size: 14px;
  }
  .howUse-section .wrap .howGrab-contents {
    grid-gap: 1rem;
  }
  .howUse-section .wrap .howGrab-contents .howGrab-total-summary {
    font-size: 14px;
  }
  .howUse-section .wrap .howGrab-contents .howGrab-detail-desc {
    grid-gap: 1rem;
  }
  .howUse-section .wrap .howGrab-contents .howGrab-detail-desc .howGrab-image-list {
    grid-gap: 1rem;
    flex-wrap: wrap;
  }
  .howUse-section .wrap .howGrab-contents .howGrab-detail-desc .howGrab-image-list .howGrab-image-item {
    padding-top: 40%;
    flex: 1 1 40%;
  }
  .howUse-section .wrap .howGrab-contents .howGrab-detail-desc .howGrab-text-list .howGrab-text-item {
    font-size: 14px;
    line-height: 1.4;
  }
  .howUse-section .wrap .about-total-desc > p {
    font-size: 14px;
  }
  .howUse-section .wrap .howUse-title-area .howUse-subtitle {
    font-size: 20px;
  }
  .howUse-section .wrap .about-back-contents {
    grid-gap: 1rem;
  }
  .howUse-section .wrap .about-back-contents .about-back-top {
    flex-direction: column;
    grid-gap: 1rem;
  }
  .howUse-section .wrap .about-back-contents .about-back-top .left-thumb {
    padding-top: 65%;
    flex: 0 0 auto;
  }
  .howUse-section .wrap .about-back-contents .about-back-top .about-back-summary {
    flex: 0 0 auto;
  }
  .howUse-section .wrap .about-back-contents .about-back-top .about-back-summary .about-summary-main {
    font-size: 14px;
  }
  .howUse-section .wrap .about-back-contents .about-back-bottom {
    grid-gap: 1rem;
  }
  .howUse-section .wrap .about-cold-contents {
    flex-direction: column;
    grid-gap: 1rem;
  }
  .howUse-section .wrap .about-cold-contents .about-cold-image {
    width: 100%;
    flex: 0 0 auto;
  }
  .howUse-section .wrap .about-cold-contents .about-cold-inner {
    width: 100%;
    flex: 0 0 auto;
    align-items: flex-start;
    grid-gap: 1rem;
  }
  .howUse-section .wrap .about-cold-contents .about-cold-inner > p {
    font-size: 14px;
    text-align: start;
  }
  .howUse-section .wrap .about-cold-contents .about-cold-inner .about-cold-progress .cold-progress-item {
    font-size: 20px;
  }
  .howUse-section .wrap .about-cold-contents .about-cold-inner .about-cold-progress .cold-progress-item:not(:last-child) {
    padding-right: 1rem;
    margin-right: 4px;
  }
  .howUse-section .wrap .about-cold-contents .about-cold-inner .about-cold-progress .cold-progress-item:not(:last-child)::after {
    font-size: 14px;
  }
}
.devide-manual-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.devide-manual-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: row;
  grid-gap: 10px;
}
.devide-manual-section .wrap .devide-left-area {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 10px;
}
.devide-manual-section .wrap .devide-left-area .devide-title {
  padding: 50px 0;
  font-size: 30px;
  line-height: 1.2;
}
.devide-manual-section .wrap .devide-left-area .devide-title > strong {
  font-weight: 600;
}
.devide-manual-section .wrap .devide-left-area .devide-huge-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.devide-manual-section .wrap .devide-right-area {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 60%;
}
.devide-manual-section .wrap .devide-right-area .devide-mini-thumb-list {
  position: relative;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
.devide-manual-section .wrap .devide-right-area .devide-mini-thumb-list .devide-mini-thumb-item {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.03%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.devide-manual-section .wrap .devide-right-area .devide-mini-thumb-list .devide-mini-thumb-item.long {
  height: 100%;
  padding-top: 0;
  grid-column: 2/3;
  grid-row: 1/3;
}

@media (max-width: 1420px) {
  .devide-manual-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .devide-manual-section {
    padding-top: 80px;
  }
  .devide-manual-section .wrap {
    flex-direction: column;
  }
  .devide-manual-section .wrap .devide-left-area {
    align-items: flex-start;
    flex: 0 0 auto;
  }
  .devide-manual-section .wrap .devide-left-area .devide-title {
    padding: 0;
    font-size: 20px;
  }
  .devide-manual-section .wrap .devide-left-area .devide-huge-thumb {
    padding-top: 80%;
  }
}
.introduce-mitsui-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.introduce-mitsui-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.introduce-mitsui-section .wrap .introduce-inner-top {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile .profile-title {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 35px;
  line-height: 1.2;
  text-align: center;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile .profile-title > strong {
  font-weight: 600;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile .profile-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 90%;
  height: 8px;
  border-radius: 500px;
  background: #9794C4;
  transform: translateX(-50%);
  z-index: -1;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile .profile-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 160.5%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 500px;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple {
  position: relative;
  width: auto;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 40px 0 0;
  flex: 1 1 auto;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background: #fff;
  border: 1px solid #9794C4;
  z-index: 0;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple .simple-history {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px;
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgba(100, 100, 100, 0.2);
  z-index: 1;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple .simple-history .history-item {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 20px;
  font-size: 20px;
  line-height: 1.4;
  color: #656565;
  word-break: keep-all;
}
.introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple .simple-history .history-item::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1.4;
}
.introduce-mitsui-section .wrap .introduce-inner-bottom {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 50px;
}
.introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject {
  position: relative;
  width: auto;
  height: auto;
  padding-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject > img {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 90%;
  transform: translateX(-80%);
}
.introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject h3 {
  position: relative;
  width: auto;
  height: auto;
  padding: 0 15px;
  font-size: 35px;
  font-weight: 500;
  color: #656565;
}
.introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 100%;
  height: 12px;
  background: rgba(151, 148, 196, 0.6470588235);
  transform: translateX(-50%);
  z-index: -1;
}
.introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject br {
  display: none;
}
.introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-description {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 20px;
  line-height: 1.8;
  color: #656565;
  word-break: keep-all;
}

@media (max-width: 1420px) {
  .introduce-mitsui-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .introduce-mitsui-section {
    padding-top: 80px;
  }
  .introduce-mitsui-section .wrap {
    grid-gap: 35px;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top {
    flex-direction: column;
    grid-gap: 1rem;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile {
    width: 100%;
    flex: 0 0 auto;
    grid-gap: 1rem;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile .profile-title {
    width: auto;
    font-size: 20px;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile .profile-title::before {
    width: 100%;
    height: 5px;
    bottom: 3px;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-profile .profile-image {
    width: 70%;
    padding-top: 70%;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple {
    padding: 1rem 1rem 0 0;
    flex: 0 0 auto;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple::after {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple .simple-history {
    padding: 1rem;
  }
  .introduce-mitsui-section .wrap .introduce-inner-top .mitsui-simple .simple-history .history-item {
    font-size: 14px;
  }
  .introduce-mitsui-section .wrap .introduce-inner-bottom {
    grid-gap: 1rem;
  }
  .introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject {
    padding-top: 10px;
  }
  .introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject > img {
    height: 70%;
    transform: translateX(-50%);
  }
  .introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject h3 {
    padding: 0 10px;
    font-size: 20px;
  }
  .introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject h3::before {
    height: 5px;
  }
  .introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-subject h3 br {
    display: block;
  }
  .introduce-mitsui-section .wrap .introduce-inner-bottom .introduce-description {
    font-size: 14px;
    line-height: 1.4;
  }
}
.mitsui-images {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.mitsui-images .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
}
.mitsui-images .wrap .mitsui-gallery-list {
  position: relative;
  width: 100o;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
.mitsui-images .wrap .mitsui-gallery-list .mitsui-gallery-item {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 81.46%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mitsui-images .wrap .mitsui-gallery-list .mitsui-gallery-item:first-of-type {
  height: 100%;
  padding-top: 0;
  grid-column: 1/2;
  grid-row: 1/3;
}
.mitsui-images .wrap .mitsui-gallery-list .mitsui-gallery-item:last-of-type {
  height: 100%;
  padding-top: 0;
  grid-column: 4/5;
  grid-row: 1/3;
}

@media (max-width: 1420px) {
  .mitsui-images .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .mitsui-images {
    padding-top: 80px;
  }
  .mitsui-images .wrap .mitsui-gallery-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .mitsui-images .wrap .mitsui-gallery-list .mitsui-gallery-item:first-of-type {
    grid-column: 1/3;
    grid-row: 1/2;
    background-position: center 30%;
  }
  .mitsui-images .wrap .mitsui-gallery-list .mitsui-gallery-item:last-of-type {
    grid-column: 1/3;
    grid-row: 4/5;
    background-position: center 35%;
  }
}
.heat-targeting-section {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.heat-targeting-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
}
.heat-targeting-section .wrap .page-title-area {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.heat-targeting-section .wrap .page-title-area .page-subtitle {
  position: relative;
  padding: 0 5px;
  font-size: 35px;
  line-height: 1.2;
  color: #000;
}
.heat-targeting-section .wrap .page-title-area .page-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: rgba(107, 51, 139, 0.7098039216);
  z-index: -1;
}
.heat-targeting-section .wrap .page-title-area .page-subtitle > strong {
  font-weight: 600;
}
.heat-targeting-section .wrap .heat-targeting-summary {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.heat-targeting-section .wrap .heat-targeting-circles {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-gap: 1rem;
  flex-wrap: wrap;
}
.heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item {
  position: relative;
  width: auto;
  height: 220px;
  flex: 0 0 220px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(107, 51, 139, 0.368627451);
  border-radius: 1000px;
}
.heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner {
  position: relative;
  width: 190px;
  height: 190px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  background: #6B338B;
  border-radius: 500px;
}
.heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner > figure {
  position: relative;
  width: auto;
  height: 45%;
}
.heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner > figure > img {
  width: auto;
  height: 100%;
}
.heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.heat-targeting-section .wrap .heat-targeting-triangle {
  position: relative;
  width: 85%;
  height: auto;
}
.heat-targeting-section .wrap .heat-targeting-triangle > img {
  width: 100%;
  height: auto;
}
.heat-targeting-section .wrap .heat-targeting-simple-effects {
  position: relative;
  width: 30%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 18px;
}
.heat-targeting-section .wrap .heat-targeting-simple-effects .simple-effect-item {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 12px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border-bottom: 4px solid rgba(107, 51, 139, 0.368627451);
}

@media (max-width: 1420px) {
  .heat-targeting-section .wrap {
    padding: 0 1rem;
    padding-top: 150px;
  }
  .heat-targeting-section .wrap .heat-targeting-circles {
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .heat-targeting-section .wrap {
    padding-top: 80px;
    grid-gap: 35px;
  }
  .heat-targeting-section .wrap .page-title-area .page-subtitle {
    font-size: 24px;
  }
  .heat-targeting-section .wrap .page-title-area .page-subtitle::before {
    bottom: 3px;
    height: 5px;
  }
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item {
    height: 190px;
    flex: 0 0 190px;
  }
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner {
    width: 170px;
    height: 170px;
  }
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner > p {
    font-size: 1rem;
  }
  .heat-targeting-section .wrap .heat-targeting-triangle {
    width: 60%;
  }
  .heat-targeting-section .wrap .heat-targeting-simple-effects {
    width: auto;
  }
  .heat-targeting-section .wrap .heat-targeting-simple-effects .simple-effect-item {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner {
    justify-content: center;
  }
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner > figure {
    height: 40%;
  }
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner > p {
    font-size: 14px;
  }
  .heat-targeting-section .wrap .heat-targeting-simple-effects {
    grid-gap: 14px;
  }
  .heat-targeting-section .wrap .heat-targeting-simple-effects .simple-effect-item {
    font-size: 18px;
    padding-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .heat-targeting-section .wrap .page-title-area .page-subtitle::before {
    display: none;
  }
  .heat-targeting-section .wrap .page-title-area .page-subtitle > strong {
    position: relative;
  }
  .heat-targeting-section .wrap .page-title-area .page-subtitle > strong::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 5px;
    background-color: rgba(107, 51, 139, 0.7098039216);
    z-index: -1;
  }
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item {
    height: 175px;
    flex: 0 0 175px;
  }
  .heat-targeting-section .wrap .heat-targeting-circles .heat-targeting-circle-item .circle-inner {
    width: 155px;
    height: 155px;
  }
}
.heat-principle-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.heat-principle-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  padding: 65px 0;
  max-width: 1420px;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
  align-items: center;
}
.heat-principle-section .wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  height: 100%;
  box-shadow: 0px 0px 10px 2px rgba(100, 100, 100, 0.2);
  z-index: 0;
}
.heat-principle-section .wrap .heat-principle-tit-area {
  position: relative;
  width: auto;
  height: auto;
  padding: 50px 0;
  flex: 0 0 22%;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  align-items: center;
  background-color: #6B338B;
  border-radius: 10px;
  z-index: 1;
}
.heat-principle-section .wrap .heat-principle-tit-area .heat-principle-title {
  font-size: 25px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
.heat-principle-section .wrap .heat-principle-tit-area > figure {
  position: relative;
  width: auto;
  height: 45%;
}
.heat-principle-section .wrap .heat-principle-tit-area > figure > img {
  width: auto;
  height: 100%;
}
.heat-principle-section .wrap .heat-principle-list {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 30px;
}
.heat-principle-section .wrap .heat-principle-list .heat-principle-item {
  position: relative;
  width: auto;
  height: auto;
  font-size: 20px;
  line-height: 1.2;
}
.heat-principle-section .wrap .heat-principle-list .heat-principle-item > strong {
  font-weight: 600;
  color: #6B338B;
}

@media (max-width: 1420px) {
  .heat-principle-section {
    padding-top: 150px;
  }
  .heat-principle-section .wrap {
    padding: 55px 2rem 55px 1rem;
  }
  .heat-principle-section .wrap::before {
    right: 1rem;
  }
}
@media (max-width: 1024px) {
  .heat-principle-section {
    padding-top: 80px;
  }
  .heat-principle-section .wrap {
    padding: 45px 2rem 45px 1rem;
    grid-gap: 35px;
  }
  .heat-principle-section .wrap .heat-principle-tit-area {
    padding: 35px 0;
  }
  .heat-principle-section .wrap .heat-principle-tit-area .heat-principle-title {
    font-size: 20px;
    line-height: 1.2;
  }
  .heat-principle-section .wrap .heat-principle-tit-area > figure {
    height: 40%;
  }
  .heat-principle-section .wrap .heat-principle-list {
    grid-gap: 16px;
  }
  .heat-principle-section .wrap .heat-principle-list .heat-principle-item {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .heat-principle-section .wrap {
    padding: 0 2rem 1rem 2rem;
    flex-direction: column;
  }
  .heat-principle-section .wrap::before {
    width: calc(100% - 2rem);
    right: 50%;
    top: auto;
    bottom: 0;
    height: 80%;
    transform: translateX(50%);
  }
  .heat-principle-section .wrap .heat-principle-tit-area {
    width: 280px;
    padding: 20px 0;
    flex: 0 0 auto;
    justify-content: center;
  }
  .heat-principle-section .wrap .heat-principle-tit-area .heat-principle-title {
    font-size: 18px;
  }
  .heat-principle-section .wrap .heat-principle-tit-area > figure {
    height: 35%;
  }
}
.ideal-top-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.ideal-top-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
}
.ideal-top-section .wrap .ideal-summary {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.ideal-top-section .wrap .ideal-summary > p {
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 1024px) {
  .ideal-top-section {
    padding-top: 35px;
  }
  .ideal-top-section .wrap {
    padding: 0 1rem;
  }
  .ideal-top-section .wrap .ideal-summary {
    grid-gap: 1rem;
  }
  .ideal-top-section .wrap .ideal-summary > p {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .ideal-top-section .wrap .ideal-summary > p {
    font-size: 14px;
  }
}
.ideal-bottom-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.ideal-bottom-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.ideal-bottom-section .wrap .ideal-image {
  position: relative;
  width: 85%;
  height: auto;
}
.ideal-bottom-section .wrap .ideal-image > img {
  width: 100%;
  height: auto;
}
.ideal-bottom-section .wrap .ideal-in-family {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.ideal-bottom-section .wrap .ideal-in-family > strong {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
  color: #6B338B;
  text-align: center;
}
.ideal-bottom-section .wrap .ideal-in-family > p {
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1024px) {
  .ideal-bottom-section {
    padding-top: 35px;
  }
  .ideal-bottom-section .wrap {
    padding: 0 1rem;
    grid-gap: 1rem;
  }
  .ideal-bottom-section .wrap .ideal-in-family {
    grid-gap: 1rem;
  }
  .ideal-bottom-section .wrap .ideal-in-family > strong {
    font-size: 24px;
    line-height: 1.2;
  }
  .ideal-bottom-section .wrap .ideal-in-family > p {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .ideal-bottom-section .wrap .ideal-image {
    width: 100%;
  }
  .ideal-bottom-section .wrap .ideal-in-family > strong {
    font-size: 20px;
  }
  .ideal-bottom-section .wrap .ideal-in-family > p {
    font-size: 14px;
  }
}
.customer-contents-section {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.customer-contents-section .wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 50px;
}
.customer-contents-section .wrap .customer-summary-area {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 30px;
  background: linear-gradient(to right, #255285 0%, #8AA2BE 70%, #fff 100%);
}
.customer-contents-section .wrap .customer-summary-area .customer-summary {
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}
.customer-contents-section .wrap .customer-summary-area .customer-summary-image {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 0 40%;
}
.customer-contents-section .wrap .customer-summary-area .customer-summary-image > img {
  width: 100%;
  height: auto;
}
.customer-contents-section .wrap .customer-service-information {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 50px;
}
.customer-contents-section .wrap .customer-service-information .customer-service-resolution {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl > dt {
  position: relative;
  width: auto;
  height: auto;
  padding: 40px 0;
  flex: 0 0 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background-color: #6B338B;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl > dd {
  position: relative;
  width: auto;
  height: auto;
  padding: 0 30px;
  flex: 1 1 auto;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-phone > dd {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  color: #656565;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-location > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 10px;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-location > dd .light {
  font-size: 20px;
  line-height: 1.2;
  color: #8E8E8E;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-location > dd .detail {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #255285;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-map > dt {
  background: none;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-map > dd > figure {
  position: relative;
  width: 100%;
  height: auto;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-map > dd > figure > img {
  width: 100%;
  height: auto;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-map > dd > figure > a {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  padding: 20px 30px;
  display: block;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: #6b338b;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-time > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 10px;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-time > dd > p {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 20px;
  font-size: 20px;
  line-height: 1.2;
  color: #8E8E8E;
}
.customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-conv > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  line-height: 1.2;
  color: #8E8E8E;
}

@media (max-width: 1420px) {
  .customer-contents-section .wrap {
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .customer-contents-section {
    padding-top: 35px;
  }
  .customer-contents-section .wrap {
    grid-gap: 35px;
  }
  .customer-contents-section .wrap .customer-summary-area {
    padding: 35px;
    flex-direction: column-reverse;
    background: #255285;
    grid-gap: 1rem;
  }
  .customer-contents-section .wrap .customer-summary-area .customer-summary {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    font-size: 14px;
  }
  .customer-contents-section .wrap .customer-summary-area .customer-summary-image {
    width: 60%;
    flex: 0 0 auto;
  }
  .customer-contents-section .wrap .customer-service-information {
    grid-gap: 35px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-resolution {
    font-size: 20px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl {
    grid-gap: 1rem;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-phone > dd {
    font-size: 14px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-location > dd .light {
    font-size: 14px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-location > dd .detail {
    font-size: 16px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-map > dt {
    display: none;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-map > dd > figure > a {
    padding: 1rem;
    font-size: 14px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-time > dd > p {
    grid-gap: 1rem;
    font-size: 14px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl.service-conv > dd {
    font-size: 14px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl > dt {
    padding: 1rem 0;
    flex: 0 0 150px;
    align-items: center;
    font-size: 14px;
  }
  .customer-contents-section .wrap .customer-service-information .customer-service-details > dl > dd {
    padding: 0;
  }
}/*# sourceMappingURL=sub.css.map */