@charset "UTF-8";
.is-sp-only {
  display: block;
}
@media (min-width: 768px) {
  .is-sp-only {
    display: none;
  }
}

.is-sp {
  display: block;
}
@media (min-width: 1024px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: none;
}
@media (min-width: 1024px) {
  .is-pc {
    display: inline-block;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #383838;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
  position: relative;
}

main {
  width: 100%;
  max-width: 1170px;
  padding: 0;
  margin: 0 auto;
  background: #fffef7;
  overflow: hidden;
}
@media (min-width: 1024px) {
  main {
    padding: 0 60px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

input, textarea, select {
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.form-control,
.form-select {
  box-sizing: border-box;
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .form-control,
  .form-select {
    height: 44px;
    font-size: 16px;
  }
}

.form-control:focus,
.form-select:focus {
  border-color: #999;
  box-shadow: none;
}

.form-control {
  line-height: 44px;
}

.form-select {
  line-height: normal;
  padding-right: 40px; /* 矢印分スペース */
  background-position: right 12px center;
  background-size: 16px 12px;
}

.form-control::placeholder {
  color: #aaa;
  opacity: 1;
}

.form-select {
  color: #aaa;
}

.form-select.has-value {
  color: #383838;
}

.form-select:invalid {
  color: #aaa;
}

.form-select:valid {
  color: #383838;
}

/* text color */
.text-blue {
  color: #1b6ab6;
  font-weight: bold;
}

.text-yellow {
  color: #fff200;
}

.text-orange {
  color: #f38e10;
  font-weight: bold;
}

/* border */
.frame {
  border-style: solid;
  border-color: transparent;
  border-width: 3px;
  background: #fff;
}
.frame.is-thin {
  border-width: 2px;
}
.frame.is-bold {
  border-width: 4px;
}
.frame.is-blue {
  border-color: #1b6ab6;
}
.frame.is-yellow {
  border-color: #fff200;
}
.frame.is-black {
  border-color: #383838;
}
.frame.is-white {
  border-color: #fff;
}

/* element */
.point {
  display: inline-block;
  padding: 5px 14px;
  margin: 2px 6px;
  border-radius: 2px;
}
.point.is-blue {
  color: #fff200;
  background-color: #1b6ab6;
}
.point.is-yellow {
  color: #1b6ab6;
  background-color: #fff200;
}

.badge,
.balloon {
  text-align: center;
  font-weight: bold;
  border-radius: 50vh;
  font-family: "Zen Maru Gothic", sans-serif;
}

.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .cta {
    flex-direction: row;
    gap: 32px;
  }
}
.cta .cta-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  min-height: 54px;
  padding: 10px 56px 10px 56px;
  margin: 0;
  text-align: center;
  border-radius: 50vh;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.cta .cta-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50vh;
  background: rgba(255, 255, 255, 0.3);
}
.cta .cta-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50vh;
  background: #fff;
  z-index: 1;
}
.cta .cta-btn .cta-btn-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  z-index: 2;
}
.cta .cta-btn .cta-btn-sub {
  position: absolute;
  width: 100%;
  top: -14px;
  left: 50%;
  font-family: "Zen Maru Gothic", sans-serif;
  -webkit-text-stroke: 4px #fff;
  text-stroke: 4px #fff;
  paint-order: stroke;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.cta .cta-btn i {
  position: absolute;
  display: block;
  top: 50%;
  left: 26px;
  font-size: 18px;
  color: #fff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.cta .cta-btn .cta-btn-text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.cta .cta-btn.is-orange {
  background: linear-gradient(180deg, #f38e10 0%, #ffba00 100%);
}
.cta .cta-btn.is-orange .cta-btn-arrow {
  border-left: 10px solid #f38e10;
}
.cta .cta-btn.is-orange .cta-btn-sub {
  color: #f38e10;
}
.cta .cta-btn.is-outline-orange {
  background: #fff;
  border: 1px solid #f38e10;
}
.cta .cta-btn.is-outline-orange:after {
  background: rgba(252, 214, 156, 0.51);
}
.cta .cta-btn.is-outline-orange:before {
  color: #fff;
}
.cta .cta-btn.is-outline-orange .cta-btn-arrow {
  border-left: 10px solid #f38e10;
}
.cta .cta-btn.is-outline-orange .cta-btn-sub,
.cta .cta-btn.is-outline-orange .cta-btn-text,
.cta .cta-btn.is-outline-orange i {
  color: #f38e10;
}
.cta .cta-btn.is-green {
  background: linear-gradient(180deg, #06b021 0%, #3ae25c 100%);
}
.cta .cta-btn.is-green .cta-btn-arrow {
  border-left: 10px solid #0ab123;
}
.cta .cta-btn.is-green .cta-btn-sub {
  color: #0ab123;
}
.cta .cta-btn.is-outline-blue {
  background: #fff;
  border: 1px solid #1b6ab6;
}
.cta .cta-btn.is-outline-blue:after {
  background: #b2d4f7;
}
.cta .cta-btn.is-outline-blue:before {
  color: #fff;
}
.cta .cta-btn.is-outline-blue .cta-btn-arrow {
  border-left: 10px solid #1b6ab6;
}
.cta .cta-btn.is-outline-blue .cta-btn-sub,
.cta .cta-btn.is-outline-blue .cta-btn-text,
.cta .cta-btn.is-outline-blue i {
  color: #1b6ab6;
}
.cta .cta-btn.cta-btn-tel-sp {
  display: flex;
}
@media (min-width: 768px) {
  .cta .cta-btn.cta-btn-tel-sp {
    display: none;
  }
}
.cta .cta-btn.cta-btn-tel-pc {
  display: none;
}
@media (min-width: 768px) {
  .cta .cta-btn.cta-btn-tel-pc {
    display: flex;
  }
}

.deco-circle {
  display: none;
}
@media (min-width: 768px) {
  .deco-circle {
    display: block;
    position: absolute;
    content: "";
    background: linear-gradient(180deg, #f38e10 0%, #fff204 100%);
    border-radius: 50vh;
  }
  .deco-circle.deco-circle-lg {
    width: 175px;
    height: 175px;
  }
  .deco-circle.deco-circle-sm {
    width: 47px;
    height: 47px;
  }
}

/* sp menu */
.menu-toggle {
  position: fixed;
  top: 6px;
  right: 6px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle .menu-toggle-text {
  position: absolute;
  right: 50%;
  bottom: -6px;
  font-size: 9px;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
}
.menu-toggle .menu-toggle-bar {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 3px;
  background: #1b6ab6;
  border-radius: 50vh;
  box-shadow: 0 0 0 1px #fff;
  transform: translateX(-50%);
  transition: top 0.4s, transform 0.4s, opacity 0.4s;
}
.menu-toggle .menu-toggle-bar:nth-child(1) {
  top: 12px;
}
.menu-toggle .menu-toggle-bar:nth-child(2) {
  top: 20px;
}
.menu-toggle .menu-toggle-bar:nth-child(3) {
  top: 28px;
}
.menu-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 0 16px;
  background: #fff;
  transition: 0.3s;
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sp-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.sp-menu > img {
  width: 80px;
  margin: 16px auto;
}
.sp-menu ul.sp-menu-list {
  margin-bottom: 60px;
}
.sp-menu ul.sp-menu-list li {
  border-bottom: 1px solid #1b6ab6;
}
.sp-menu ul.sp-menu-list li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-weight: bold;
}
.sp-menu ul.sp-menu-list li a img {
  width: 20px;
}
.sp-menu ul.sp-menu-list li a:before {
  position: absolute;
  right: 10px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url("../img/arrow.svg") no-repeat center/contain;
}
.sp-menu .contact-tel a {
  position: relative;
  display: block;
  width: 280px;
  padding: 10px;
  margin: 0 auto 16px;
  text-align: center;
  border-radius: 50vh;
  box-sizing: border-box;
  color: #fff;
  background: #1b6ab6;
}
.sp-menu .contact-tel .contact-tel-hours {
  padding: 16px;
  text-align: center;
  font-size: 12px;
  background: aliceblue;
}
.sp-menu .contact-tel .contact-tel-hours span {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: bold;
}

/* pc menu */
.fixed-menu {
  display: none;
}
@media (min-width: 1024px) {
  .fixed-menu {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .fixed-menu .fixed-menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    font-size: 11px;
    font-weight: bold;
  }
  .fixed-menu .fixed-menu-item-top {
    color: #383838;
    background-color: #fff;
    border-radius: 4px 0 0 0;
    border: 1px solid #1b6ab6;
    border-bottom: none;
  }
  .fixed-menu .fixed-menu-item-top img {
    width: 16px;
    margin: 6px auto 0;
  }
  .fixed-menu .fixed-menu-item-top span {
    letter-spacing: 0;
  }
  .fixed-menu .fixed-menu-item-simulation,
  .fixed-menu .fixed-menu-item-contact {
    position: relative;
    writing-mode: vertical-rl;
  }
  .fixed-menu .fixed-menu-item-simulation:before,
  .fixed-menu .fixed-menu-item-contact:before {
    position: absolute;
    content: "→";
    width: 14px;
    min-height: 14px;
    bottom: 6px;
    right: 2px;
    transform: rotate(270deg);
  }
  .fixed-menu .fixed-menu-item-simulation {
    padding: 32px 0 20px;
    color: #fff;
    background-color: #1b6ab6;
  }
  .fixed-menu .fixed-menu-item-simulation img {
    position: absolute;
    width: 10px;
    top: 12px;
    right: 50%;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
  }
  .fixed-menu .fixed-menu-item-contact {
    padding: 16px 0 20px;
    color: #fff;
    background-color: #f38e10;
    border-radius: 0 0 0 4px;
  }
}

#SimulationForm .section,
.section {
  position: relative;
  padding: 40px 16px;
}
@media (min-width: 1024px) {
  #SimulationForm .section,
  .section {
    padding: 40px 10%;
  }
}
#SimulationForm .section .inner .section-header,
#SimulationForm .section .inner .feature-header,
.section .inner .section-header,
.section .inner .feature-header {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  #SimulationForm .section .inner .section-header,
  #SimulationForm .section .inner .feature-header,
  .section .inner .section-header,
  .section .inner .feature-header {
    margin-bottom: 32px;
  }
}
#SimulationForm .section .inner .section-header > span,
#SimulationForm .section .inner .feature-header > span,
.section .inner .section-header > span,
.section .inner .feature-header > span {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  line-height: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
}
#SimulationForm .section .inner .section-header h2, #SimulationForm .section .inner .section-header h3,
#SimulationForm .section .inner .feature-header h2,
#SimulationForm .section .inner .feature-header h3,
.section .inner .section-header h2,
.section .inner .section-header h3,
.section .inner .feature-header h2,
.section .inner .feature-header h3 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
}
#SimulationForm .section .inner .section-header h2:before, #SimulationForm .section .inner .section-header h2:after, #SimulationForm .section .inner .section-header h3:before, #SimulationForm .section .inner .section-header h3:after,
#SimulationForm .section .inner .feature-header h2:before,
#SimulationForm .section .inner .feature-header h2:after,
#SimulationForm .section .inner .feature-header h3:before,
#SimulationForm .section .inner .feature-header h3:after,
.section .inner .section-header h2:before,
.section .inner .section-header h2:after,
.section .inner .section-header h3:before,
.section .inner .section-header h3:after,
.section .inner .feature-header h2:before,
.section .inner .feature-header h2:after,
.section .inner .feature-header h3:before,
.section .inner .feature-header h3:after {
  position: absolute;
  content: "";
  top: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#SimulationForm .section .inner .section-header h3,
#SimulationForm .section .inner .feature-header h3,
.section .inner .section-header h3,
.section .inner .feature-header h3 {
  font-size: 24px;
}
#SimulationForm .section .inner .section-catch,
.section .inner .section-catch {
  margin: auto auto 32px;
  text-align: center;
}

/* fv */
.section.fv {
  padding: 72px 0 20px;
}
@media (max-width: 1023px) {
  .section.fv {
    padding: 0;
  }
}
.section.fv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 70px;
  height: 80px;
  background-image: url("../img/deco_lights.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 1023px) {
  .section.fv:before {
    display: none;
  }
}
.section.fv > .deco-circle:nth-of-type(1) {
  top: -90px;
  left: 36px;
}
.section.fv > .deco-circle:nth-child(2) {
  bottom: 0;
  left: -16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.fv > .deco-circle:nth-child(2) {
    left: -32px;
  }
}
.section.fv .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}
.section.fv .inner > div {
  flex: 1;
}
.section.fv .inner .section-header {
  position: absolute;
  width: 200px;
  top: 6px;
  left: 6px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.fv .inner .section-header {
    max-width: 500px;
    margin: auto;
    background-color: unset;
  }
}
@media (min-width: 1024px) {
  .section.fv .inner .section-header {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .section.fv .inner .section-header {
    position: relative;
    width: unset;
    top: unset;
    left: unset;
  }
}
.section.fv .inner .section-header .fv-lead {
  padding: 4px 32px;
  font-size: 10px;
  text-align: center;
  color: #1b6ab6;
  background: #fff;
  border-radius: 50vh;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (min-width: 1024px) {
  .section.fv .inner .section-header .fv-lead {
    width: 100%;
    padding: 2px auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.fv .inner .section-header .fv-lead {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .section.fv .inner .section-header .fv-lead {
    font-size: 16px;
  }
}
.section.fv .inner .section-header img {
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .section.fv .inner .section-header img {
    margin-bottom: 32px;
  }
}
.section.fv .inner .section-header p.fv-text {
  font-size: 12px;
  line-height: 24px;
  font-weight: bold;
  line-height: 1.8em;
  text-align: left;
}
@media (min-width: 768px) {
  .section.fv .inner .section-header p.fv-text {
    line-height: 24px;
    font-size: 14px;
    text-align: left;
  }
}
.section.fv .inner .section-header p.fv-text span {
  display: none;
}
@media (min-width: 768px) {
  .section.fv .inner .section-header p.fv-text span {
    display: block;
    line-height: 24px;
    font-size: 14px;
    line-height: 1.8em;
    text-align: left;
  }
}
.section.fv .inner .section-body {
  position: relative;
}
.section.fv .inner .section-body .badge {
  position: absolute;
  display: flex;
  gap: 0;
  bottom: 24px;
  right: 16px;
}
.section.fv .inner .section-body .badge .badge-item {
  display: flex;
  width: 90px;
  height: 90px;
  margin-right: -4px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 1.4em;
  border-radius: 50vh;
  color: #fff;
}
.section.fv .inner .section-body .badge .badge-item.is-blue {
  background-color: #52c7c2;
}
.section.fv .inner .section-body .badge .badge-item.is-pink {
  background-color: #f59f9f;
}
@media (min-width: 1024px) {
  .section.fv .inner .section-body .badge .badge-item.is-pink {
    margin-right: unset;
  }
}
@media (min-width: 768px) {
  .section.fv .inner .section-body .badge .badge-item {
    width: 140px;
    height: 140px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .section.fv .inner .section-body .badge {
    gap: 8px;
    top: -48px;
    right: 24px;
  }
}
.section.fv .inner .section-body img.is-sp {
  height: 460px;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.fv .inner .section-body img.is-sp {
    height: unset;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.fv .inner {
    gap: 70px;
  }
}
@media (min-width: 1024px) {
  .section.fv .inner {
    flex-direction: unset;
  }
}
.section.fv .fv-cta {
  position: relative;
}
.section.fv .fv-cta .deco-circle.deco-circle-sm {
  top: 52px;
  right: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.fv .fv-cta .deco-circle.deco-circle-sm {
    top: 40px;
    right: 32px;
  }
}
.section.fv .fv-cta .fv-cta-lead {
  position: relative;
  width: 100%;
  padding: 6px 0;
  margin: 0 auto 46px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color: #1b6ab6;
  background-color: #fff200;
  border-radius: 50vh;
}
.section.fv .fv-cta .fv-cta-lead:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 40px;
  height: 40px;
  background-image: url("../img/deco_lights.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (min-width: 768px) {
  .section.fv .fv-cta .fv-cta-lead {
    width: 512px;
  }
}
.section.fv .fv-cta .fv-cta-btn-list {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  z-index: 1;
}
.section.fv .fv-cta .fv-cta-btn-list a {
  width: 100%;
  height: 80px;
  display: flex;
  padding: 18px 24px 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 2px;
}
.section.fv .fv-cta .fv-cta-btn-list a.fv-simulation-btn {
  gap: 16px;
  background-color: #1b6ab6;
}
.section.fv .fv-cta .fv-cta-btn-list a.fv-simulation-btn > div {
  width: 100%;
  text-align: center;
}
.section.fv .fv-cta .fv-cta-btn-list a.fv-simulation-btn img {
  width: 38px;
}
.section.fv .fv-cta .fv-cta-btn-list a.fv-simulation-btn .fv-cta-sub {
  margin-bottom: 2px;
  font-size: 10px;
  color: #1b6ab6;
  background-color: #fff200;
  border-radius: 50vh;
}
.section.fv .fv-cta .fv-cta-btn-list a.fv-simulation-btn .fv-cta-title {
  font-size: 18px;
}
.section.fv .fv-cta .fv-cta-btn-list a.fv-apply-btn {
  height: 60px;
  flex-direction: unset;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #84c3ff;
}
.section.fv .fv-cta .fv-cta-btn-list a.fv-apply-btn img {
  width: 45px;
}
@media (min-width: 768px) {
  .section.fv .fv-cta .fv-cta-btn-list a.fv-simulation-btn {
    width: 320px;
  }
  .section.fv .fv-cta .fv-cta-btn-list a.fv-apply-btn {
    width: 184px;
    height: 80px;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .section.fv .fv-cta .fv-cta-btn-list a.fv-apply-btn {
    gap: 0;
  }
}
@media (min-width: 768px) {
  .section.fv .fv-cta .fv-cta-btn-list {
    flex-direction: unset;
  }
}
@media (max-width: 1023px) {
  .section.fv .fv-cta {
    flex-direction: column;
    padding: 0 16px;
    margin: -50px 0 0;
  }
}
.section.fv .fv-cta .fv-desc-wrap {
  position: relative;
  padding: 16px 16px 60px;
  margin-bottom: 40px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color: #1b6ab6;
  background-color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (min-width: 768px) {
  .section.fv .fv-cta .fv-desc-wrap {
    padding: 16px;
    margin-bottom: 24px;
  }
}
.section.fv .fv-cta .fv-desc-wrap:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #1b6ab6;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.section.fv .fv-cta .fv-desc-wrap .num {
  padding: 4px;
  font-size: 24px;
}
.section.fv .fv-cta .fv-desc-wrap .badge,
.section.fv .fv-cta .fv-desc-wrap .fv-deco-person {
  position: absolute;
}
.section.fv .fv-cta .fv-desc-wrap .badge {
  right: -10px;
  bottom: -36px;
  width: 88px;
  height: 88px;
  color: #1b6ab6;
  background-color: #fff200;
}
@media (min-width: 768px) {
  .section.fv .fv-cta .fv-desc-wrap .badge {
    top: 50%;
    bottom: unset;
    left: 20px;
    right: unset;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
.section.fv .fv-cta .fv-desc-wrap .badge .badge-text {
  padding-top: 40px;
  font-size: 12px;
  line-height: 1.4em;
}
.section.fv .fv-cta .fv-desc-wrap .badge img {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 32px;
  height: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.section.fv .fv-cta .fv-desc-wrap .fv-deco-person {
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (min-width: 768px) {
  .section.fv .fv-cta .fv-desc-wrap .fv-deco-person {
    top: 50%;
    bottom: unset;
    left: unset;
    right: 20px;
    transform: unset;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
.section.fv .fv-cta .fv-desc-wrap .fv-deco-person img {
  width: 60px;
}
@media (min-width: 768px) {
  .section.fv .fv-cta .fv-desc-wrap .fv-deco-person img {
    width: 70px;
  }
}

/* おトク額シミュレーション */
.section.simulation,
.section.simulation-form-wrap {
  padding: 100px 16px 40px;
  background-color: #fff769;
}
.section.simulation:before,
.section.simulation-form-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 0;
  border-left: 45vw solid transparent;
  border-right: 45vw solid transparent;
  border-top: 80px solid #fffef7;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.section.simulation .section-header,
.section.simulation-form-wrap .section-header {
  margin-top: 40px;
}
.section.simulation .section-catch,
.section.simulation-form-wrap .section-catch {
  position: relative;
  width: fit-content;
  padding: 6px 46px;
  color: #fff;
  background: #1b6ab6;
  border-radius: 3vh;
}
@media (min-width: 768px) {
  .section.simulation .section-catch,
  .section.simulation-form-wrap .section-catch {
    padding: 6px 40px;
    border-radius: 2px;
  }
}
.section.simulation .section-catch:before,
.section.simulation-form-wrap .section-catch:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 56px;
  height: 80px;
  background-image: url("../img/deco_women_discover.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (min-width: 768px) {
  .section.simulation .section-catch:before,
  .section.simulation-form-wrap .section-catch:before {
    left: -37.5px;
    width: 70px;
    height: 99px;
  }
}
.section.simulation .section-catch .balloon,
.section.simulation-form-wrap .section-catch .balloon {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  top: 50%;
  right: -24px;
  width: 68px;
  height: 68px;
  letter-spacing: 0;
  line-height: 22px;
  background-color: #f38e10;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border-radius: 50vh;
}
@media (min-width: 768px) {
  .section.simulation .section-catch .balloon,
  .section.simulation-form-wrap .section-catch .balloon {
    right: -48px;
    width: 75px;
    height: 75px;
  }
}
.section.simulation .section-catch .balloon .num,
.section.simulation-form-wrap .section-catch .balloon .num {
  padding-right: 3px;
  font-size: 24px;
  line-height: 0.1em;
}
.section.simulation .card,
.section.simulation-form-wrap .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 46px;
  margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.simulation .card,
  .section.simulation-form-wrap .card {
    flex-direction: unset;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .section.simulation .card,
  .section.simulation-form-wrap .card {
    flex-direction: unset;
  }
}
.section.simulation .card .card-item,
.section.simulation-form-wrap .card .card-item {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.simulation .card .card-item,
  .section.simulation-form-wrap .card .card-item {
    width: calc(33.3333333333% - 48px);
  }
}
@media (min-width: 1024px) {
  .section.simulation .card .card-item,
  .section.simulation-form-wrap .card .card-item {
    width: calc(33.3333333333% - 92px);
  }
}
.section.simulation .card .card-item:not(:last-child):before,
.section.simulation-form-wrap .card .card-item:not(:last-child):before {
  position: absolute;
  bottom: -34px;
  right: 50%;
  content: "";
  display: inline-block;
  width: 22px;
  height: 24px;
  background-color: #1b6ab6;
  -webkit-mask: url("../img/arrow.svg") no-repeat center/contain;
  mask: url("../img/arrow.svg") no-repeat center/contain;
  -webkit-transform: translateX(50%) rotate(90deg);
  -ms-transform: translateX(50%) rotate(90deg);
  transform: translateX(50%) rotate(90deg);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.simulation .card .card-item:not(:last-child):before,
  .section.simulation-form-wrap .card .card-item:not(:last-child):before {
    top: 50%;
    bottom: unset;
    right: -25px;
    transform: unset;
  }
}
@media (min-width: 1024px) {
  .section.simulation .card .card-item:not(:last-child):before,
  .section.simulation-form-wrap .card .card-item:not(:last-child):before {
    top: 50%;
    bottom: unset;
    right: -34px;
    transform: unset;
  }
}
.section.simulation .card .card-item .item-body,
.section.simulation-form-wrap .card .card-item .item-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 16px;
  background-color: #fff;
  border-radius: 50vh;
}
.section.simulation .card .card-item .item-body p,
.section.simulation-form-wrap .card .card-item .item-body p {
  margin-bottom: 0;
}
.section.simulation .card .card-item .item-body img,
.section.simulation-form-wrap .card .card-item .item-body img {
  width: auto;
  height: 90px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.simulation .card .card-item .item-body img,
  .section.simulation-form-wrap .card .card-item .item-body img {
    height: 60px;
  }
}
.section.simulation .card .card-item .item-body .item-title,
.section.simulation-form-wrap .card .card-item .item-body .item-title {
  position: absolute;
  top: 0;
  left: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #1b6ab6;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (min-width: 768px) {
  .section.simulation .card .card-item .item-body .item-title,
  .section.simulation-form-wrap .card .card-item .item-body .item-title {
    position: unset;
    top: unset;
    left: unset;
  }
}
@media (min-width: 768px) {
  .section.simulation .card .card-item .item-body,
  .section.simulation-form-wrap .card .card-item .item-body {
    height: unset;
    aspect-ratio: 1/1;
  }
}

/* 対応エリア */
.section.area {
  background-color: #fff;
}
.section.area .inner .section-header h2:before {
  width: 40px;
  height: 40px;
  left: -32px;
  background-image: url("../img/deco_house.png");
}
.section.area .inner .section-header h2:after {
  width: 20px;
  height: 40px;
  right: -42px;
  background-image: url("../img/deco_map_marker.png");
}
.section.area .inner .section-body .area-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid #383838;
  margin-bottom: 40px;
}
.section.area .inner .section-body .area-table th,
.section.area .inner .section-body .area-table td {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid #383838;
}
.section.area .inner .section-body .area-table th {
  background: #eaf2ff;
  color: #1b6ab6;
  font-weight: 700;
  text-align: center;
}
.section.area .inner .section-body .area-table td {
  color: #383838;
  background: #fff;
}
.section.area .inner .section-body .area-table tr:last-child td {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .section.area .inner .section-body .area-table th,
  .section.area .inner .section-body .area-table td {
    display: table-cell;
    padding: 14px 28px;
    vertical-align: middle;
  }
  .section.area .inner .section-body .area-table th {
    width: 275px;
    text-align: center;
    border-right: 1px solid #383838;
    font-size: 18px;
  }
  .section.area .inner .section-body .area-table tr:last-child th,
  .section.area .inner .section-body .area-table tr:last-child td {
    border-bottom: none;
  }
  .section.area .inner .section-body .area-table tr:nth-child(even) td {
    background-color: #f7f9fc;
  }
}

/* 東京電力エナジーパートナーとの料金比較 */
.section.comparison {
  background: repeating-linear-gradient(45deg, #1b6ab6, #1b6ab6 10px, #2671bb 10px, #2671bb 20px);
  color: #fff;
}
.section.comparison .section-catch h3 {
  font-size: 14px;
}

/* 乗り換えもカンタン */
.section.switch {
  background-color: #fff769;
}
.section.switch .inner .section-header h2:before {
  width: 40px;
  height: 54px;
  left: -24px;
  background-image: url("../img/deco_women_pointing.png");
}
@media (min-width: 1024px) {
  .section.switch .inner .section-header h2:before {
    width: 53px;
    height: 70px;
    left: -36px;
  }
}
.section.switch .inner .section-header h2:after {
  width: 24px;
  height: 24px;
  right: -42px;
  background-image: url("../img/deco_check_bule.png");
}
@media (min-width: 1024px) {
  .section.switch .inner .section-header h2:after {
    right: -46px;
  }
}
.section.switch .inner .card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.switch .inner .card {
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .section.switch .inner .card {
    gap: 46px;
  }
}
@media (min-width: 768px) {
  .section.switch .inner .card {
    flex-direction: unset;
    justify-content: center;
  }
}
.section.switch .inner .card .card-item {
  display: flex;
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.switch .inner .card .card-item {
    width: calc(33.3333333333% - 48px);
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .section.switch .inner .card .card-item {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .section.switch .inner .card .card-item {
    flex-direction: column;
  }
}
.section.switch .inner .card .card-item:not(:last-child) .item-body:before {
  display: none;
  position: absolute;
  content: "";
  width: 22px;
  height: 24px;
  background-color: #1b6ab6;
  -webkit-mask: url("../img/arrow.svg") no-repeat center/contain;
  mask: url("../img/arrow.svg") no-repeat center/contain;
  -webkit-transform: translateX(50%) rotate(90deg);
  -ms-transform: translateX(50%) rotate(90deg);
  transform: translateX(50%) rotate(90deg);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.switch .inner .card .card-item:not(:last-child) .item-body:before {
    display: block;
    top: 50%;
    bottom: unset;
    right: -25px;
    transform: unset;
  }
}
@media (min-width: 1024px) {
  .section.switch .inner .card .card-item:not(:last-child) .item-body:before {
    display: block;
    top: 50%;
    bottom: unset;
    right: -34px;
    transform: unset;
  }
}
.section.switch .inner .card .card-item .item-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .section.switch .inner .card .card-item .item-body {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 768px) {
  .section.switch .inner .card .card-item .item-title,
  .section.switch .inner .card .card-item .item-text {
    text-align: center;
  }
}
.section.switch .inner .card .card-item .item-title {
  margin-bottom: 8px;
  line-height: 1.4em;
  color: #1b6ab6;
}
.section.switch .inner .card .card-item .item-text {
  font-weight: 500;
}
.section.switch .inner .card .card-item img {
  width: 48px;
}
@media (min-width: 768px) {
  .section.switch .inner .card .card-item img {
    width: 125px;
    height: auto;
  }
}

/* ホームタウンエナジーの特徴 */
.section.feature {
  padding: 40px 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .section.feature {
    margin: 0 40px;
  }
}
.section.feature .section-body .feature-block {
  position: relative;
}
.section.feature .section-body .feature-block .deco-circle {
  z-index: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.feature .section-body .feature-block .deco-circle {
    display: none;
  }
}
.section.feature .section-body .feature-block .feature-item {
  position: relative;
  padding: 64px 16px 40px;
  border-width: 4px 0;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block .feature-item {
    border-width: 4px;
    padding: 64px 40px 40px;
  }
}
.section.feature .section-body .feature-block .feature-item:not(:last-child) {
  margin: 0 0 72px;
}
.section.feature .section-body .feature-block .feature-item:last-child {
  margin: 0 0 32px;
}
.section.feature .section-body .feature-block .feature-item .balloon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -26px;
  left: 50%;
  width: 52px;
  height: 52px;
  font-size: 24px;
  background-color: #fff200;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.section.feature .section-body .feature-block .feature-catch h4 {
  position: relative;
  width: 100%;
  padding: 6px 16px;
  margin: 0 auto 32px;
  font-size: 16px;
  text-align: center;
  color: #1b6ab6;
  background: #fff200;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block .feature-catch h4 {
    min-width: 430px;
    width: fit-content;
    padding: 6px 46px;
    font-size: 18px;
  }
}
.section.feature .section-body .feature-block .feature-catch p {
  margin-bottom: 40px;
  text-align: center;
}
.section.feature .section-body .feature-block .feature-item {
  z-index: 1;
}
.section.feature .section-body .feature-block:nth-child(1) .deco-circle:nth-of-type(1) {
  top: -32px;
  left: -70px;
}
.section.feature .section-body .feature-block:nth-child(1) .deco-circle:nth-child(2) {
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.section.feature .section-body .feature-block:nth-child(1) .deco-circle:nth-child(3) {
  bottom: 40px;
  left: -70px;
}
.section.feature .section-body .feature-block:nth-child(1) .result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block:nth-child(1) .result {
    flex-direction: unset;
    gap: 48px;
    padding: 32px 40px;
  }
}
.section.feature .section-body .feature-block:nth-child(1) .result .result-title {
  padding: 6px 40px;
  height: 36px;
  font-size: 16px;
  text-align: center;
  line-height: normal;
  color: #fff;
  background-color: #1b6ab6;
  border-radius: 50vh;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block:nth-child(1) .result .result-title {
    height: 40px;
    min-width: 200px;
    font-size: 18px;
  }
}
.section.feature .section-body .feature-block:nth-child(1) .result .result-item {
  list-style-type: disc;
  margin-bottom: 8px;
}
.section.feature .section-body .feature-block:nth-child(1) .result .result-item:last-child {
  margin-bottom: 0;
}
.section.feature .section-body .feature-block:nth-child(1) .media {
  display: flex;
  gap: 8px;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block:nth-child(1) .media {
    gap: 24px;
  }
}
.section.feature .section-body .feature-block:nth-child(1) .media .media-item {
  border-radius: 2px;
}
.section.feature .section-body .feature-block:nth-child(1) .media .media-item img {
  width: 100%;
  margin: auto;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block:nth-child(1) .media .media-item img {
    width: 50%;
  }
}
.section.feature .section-body .feature-block:nth-child(2) {
  padding: 64px 0 40px;
}
.section.feature .section-body .feature-block:nth-child(2) .deco-circle:nth-of-type(1) {
  top: 20px;
  right: -70px;
}
.section.feature .section-body .feature-block:nth-child(2) .deco-circle:nth-child(2) {
  bottom: 100px;
  left: -70px;
}
.section.feature .section-body .feature-block:nth-child(2) .feature-catch h4 {
  width: calc(100% - 32px);
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block:nth-child(2) .feature-catch h4 {
    min-width: 430px;
    width: fit-content;
    padding: 6px 46px;
    font-size: 18px;
  }
}
.section.feature .section-body .feature-block:nth-child(2) .feature-header {
  position: relative;
}
.section.feature .section-body .feature-block:nth-child(2) .feature-header h3:before {
  width: 60px;
  height: 71px;
  left: -65px;
  background-image: url("../img/deco_women_overview.png");
}
@media (min-width: 768px) {
  .section.feature .section-body .feature-block:nth-child(2) .feature-header h3:before {
    left: -98px;
  }
}
.section.feature .section-body .feature-block:nth-child(2) .feature-header h3:after {
  width: 48px;
  height: 48px;
  right: -110px;
  background-image: url("../img/deco_phone_right.png");
}
@media (min-width: 768px) {
  .section.feature .section-body .feature-block:nth-child(2) .feature-header h3:after {
    right: -150px;
  }
}
.section.feature .section-body .feature-block:nth-child(2) .plan {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 48px 16px 32px;
  margin: -52px 0 32px;
  background-color: #eaf2ff;
}
@media (min-width: 768px) {
  .section.feature .section-body .feature-block:nth-child(2) .plan {
    padding: 48px 40px 32px;
  }
}
.section.feature .section-body .feature-block:nth-child(2) .plan .plan-item {
  width: 100%;
}
@media (min-width: 768px) {
  .section.feature .section-body .feature-block:nth-child(2) .plan .plan-item {
    width: calc(50% - 8px);
  }
}
.section.feature .section-body .feature-block:nth-child(2) .plan .plan-item img {
  border-radius: 4px;
}
.section.feature .section-body .feature-block:nth-child(2) p {
  padding: 16px 0;
  margin: 0 16px;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block:nth-child(2) p {
    margin: 0 40px;
  }
}
.section.feature .section-body .feature-block:nth-child(2) p:first-child {
  margin-bottom: 16px;
}
.section.feature .section-body .feature-block:nth-child(2) p.line-under {
  border-bottom: 1px solid #383838;
}
.section.feature .section-body .feature-block:nth-child(3) .deco-circle:nth-of-type(1) {
  top: -32px;
  left: -70px;
}
.section.feature .section-body .feature-block:nth-child(3) .deco-circle:nth-child(2) {
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.section.feature .section-body .feature-block:nth-child(3) .deco-circle:nth-child(3) {
  bottom: 40px;
  left: -70px;
}
.section.feature .section-body .feature-block:nth-child(3) .section-body {
  position: relative;
  margin-top: 116px;
}
.section.feature .section-body .feature-block:nth-child(3) .section-body:before {
  position: absolute;
  content: "";
  top: -49px;
  left: 50%;
  width: 60px;
  height: 100px;
  background-image: url("../img/deco_women_fist_pump.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.section.feature .section-body .feature-block:nth-child(3) .section-body .frame {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block:nth-child(3) .section-body p {
    text-align: center;
  }
}
.section.feature .section-body .feature-block:nth-child(3) .section-body p small {
  color: #9d9d9d;
}
.section.feature .section-body .feature-block .cta {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .section.feature .section-body .feature-block .cta {
    margin-bottom: 80px;
  }
}

/* こんな方にピッタリ */
.section.target {
  background-color: #1b6ab6;
}
.section.target .section-header {
  color: #fff;
}
.section.target .section-header h2:before {
  width: 24px;
  height: 24px;
  left: -20px;
  background-image: url("../img/deco_check_yellow.png");
}
.section.target .section-header h2:after {
  width: 52px;
  height: 80px;
  top: 14px;
  right: -76px;
  background-image: url("../img/deco_women_surprise.png");
}
@media (min-width: 1024px) {
  .section.target .section-header h2:after {
    width: 64px;
    right: -100px;
  }
}
.section.target .section-body .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .section.target .section-body .card {
    flex-direction: row;
    gap: 0;
  }
}
.section.target .section-body .card .card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) {
  .section.target .section-body .card .card-item {
    width: 50%;
  }
}
.section.target .section-body .card .card-item .item-body {
  position: relative;
  max-width: 245px;
  margin-bottom: 16px;
}
.section.target .section-body .card .card-item .item-body:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 38px;
  top: 8px;
  right: -4px;
  background-image: url("../img/accent.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.section.target .section-body .card .card-item .item-body img {
  border-radius: 50vh;
  overflow: hidden;
}
.section.target .section-body .card .card-item h3 {
  margin-bottom: 16px;
}

/* 安心のサポート体制 */
.section.support {
  padding: 40px 10% 0;
}
.section.support .section-header {
  color: #1b6ab6;
}
.section.support .section-header h2:before {
  width: 40px;
  height: 40px;
  left: -28px;
  background-image: url("../img/deco_phone_left.png");
}
.section.support .section-header h2:after {
  width: 40px;
  height: 40px;
  right: -66px;
  background-image: url("../img/deco_heart.png");
}
@media (min-width: 1024px) {
  .section.support .section-header h2:before, .section.support .section-header h2:after {
    width: 48px;
    height: 48px;
  }
  .section.support .section-header h2:before {
    left: -40px;
  }
  .section.support .section-header h2:after {
    right: -90px;
  }
}
.section.support .section-catch p {
  text-align: left;
}
@media (min-width: 1024px) {
  .section.support .section-catch p {
    text-align: center;
  }
}
.section.support .section-body {
  position: relative;
  margin-top: 64px;
}
.section.support .section-body .comment {
  width: max-content;
  position: absolute;
  top: -44px;
  right: 50%;
  padding: 8px 26px;
  text-align: center;
  color: #fff200;
  background: #1b6ab6;
  border-radius: 50vh;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
}
.section.support .section-body .comment:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #1b6ab6;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.section.support .section-body img {
  position: relative;
}
@media (min-width: 1024px) {
  .section.support .section-body img {
    margin-top: 68px;
  }
}

/* お申し込みはWEBで入力するだけ */
.section.apply {
  background-color: #fff769;
}
.section.apply .section-header h2:before {
  width: 48px;
  height: 54px;
  left: -24px;
  background-image: url("../img/deco_exchange_left.png");
}
@media (min-width: 1024px) {
  .section.apply .section-header h2:before {
    width: 64px;
    height: 68px;
    left: -35px;
  }
}
.section.apply .section-header h2:after {
  width: 36px;
  height: 62px;
  right: -60px;
  background-image: url("../img/deco_exchange_right.png");
}
@media (min-width: 1024px) {
  .section.apply .section-header h2:after {
    width: 44px;
    height: 74px;
    right: -74px;
  }
}
.section.apply .section-body .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.apply .section-body .card {
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .section.apply .section-body .card {
    flex-direction: row;
  }
}
.section.apply .section-body .card .card-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.apply .section-body .card .card-item {
    width: calc(33.3333333333% - 48px);
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .section.apply .section-body .card .card-item {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
}
.section.apply .section-body .card .card-item .item-body {
  position: relative;
  width: 90px;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.apply .section-body .card .card-item .item-body {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .section.apply .section-body .card .card-item .item-body {
    width: 100%;
  }
}
.section.apply .section-body .card .card-item .item-body .frame {
  border-radius: 50vh;
}
.section.apply .section-body .card .card-item .item-body .balloon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  top: -10px;
  right: -16px;
  padding-bottom: 4px;
  font-size: 30px;
  color: #1b6ab6;
  background: #fff200;
  border: 3px solid #fff;
}
@media (min-width: 768px) {
  .section.apply .section-body .card .card-item .item-body .balloon {
    width: 70px;
    height: 70px;
    font-size: 40px;
    top: 0;
    right: -10px;
    padding-bottom: 8px;
  }
}
.section.apply .section-body .card .card-item .item-title {
  color: #1b6ab6;
}
.section.apply .section-body .card .card-item:not(:last-child) .item-body:before {
  position: absolute;
  bottom: -30px;
  right: 50%;
  content: "";
  display: inline-block;
  width: 22px;
  height: 24px;
  background-color: #1b6ab6;
  -webkit-mask: url("../img/arrow.svg") no-repeat center/contain;
  mask: url("../img/arrow.svg") no-repeat center/contain;
  -webkit-transform: translateX(50%) rotate(90deg);
  -ms-transform: translateX(50%) rotate(90deg);
  transform: translateX(50%) rotate(90deg);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section.apply .section-body .card .card-item:not(:last-child) .item-body:before {
    top: 50%;
    bottom: unset;
    right: -25px;
    transform: unset;
  }
}
@media (min-width: 1024px) {
  .section.apply .section-body .card .card-item:not(:last-child) .item-body:before {
    top: 50%;
    bottom: unset;
    right: -34px;
    transform: unset;
  }
}

/* 事前のお願い */
.section.notice {
  margin: 0 16px;
  color: #ed4b49;
  background-color: #fff;
  border: 3px solid #ed4b49;
}
@media (min-width: 768px) {
  .section.notice {
    margin: 40px 10%;
    padding: 40px 5%;
  }
}
.section.notice .inner .section-header h2 {
  padding: 6px 24px;
  font-size: 14px;
  color: #fff;
  background-color: #ed4b49;
  border-radius: 50vh;
}
@media (min-width: 768px) {
  .section.notice .inner .section-header h2 {
    padding: 6px 46px;
    font-size: 18px;
  }
}

/* よくあるご質問 */
.section.guide .section-header h2:before {
  width: 64px;
  height: 68px;
  left: -28px;
  background-image: url("../img/deco_women_question.png");
}
.section.guide .section-header h2:after {
  width: 64px;
  height: 68px;
  right: -100px;
  background-image: url("../img/deco_women_giveup.png");
}
.section.guide .faq {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.8s ease;
}
.section.guide .faq-title {
  position: relative;
  padding: 10px 38px 10px 24px;
  margin-bottom: 8px;
  color: #fff;
  background-color: #1b6ab6;
  cursor: pointer;
}
.section.guide .faq-title:before, .section.guide .faq-title:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 16px;
  height: 3px;
  border-radius: 50vh;
  background: #fff;
  transition: 0.4s;
}
.section.guide .faq-title:before {
  transform: translateY(-50%);
}
.section.guide .faq-title:after {
  transform: translateY(-50%) rotate(90deg);
}
.section.guide .faq-title.is-open:after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.section.guide .faq-title i {
  color: #fff200;
}
.section.guide .faq-item {
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #1b6ab6;
  background-color: #fff;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .section.guide .faq-item {
    padding: 16px 32px;
  }
}
.section.guide .faq-item h4.faq-question {
  padding: 0 0 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #1b6ab6;
}
.section.guide .faq-item h4.faq-question button {
  padding: 0;
  text-align: left;
  color: #1b6ab6;
}
.section.guide .faq-item h4.faq-question button:before {
  content: "Q";
  font-size: 20px;
  margin-right: 6px;
  font-family: "Zen Maru Gothic", sans-serif;
}

/* シミュレーションページ */
@media (max-width: 1023px) {
  #SimulationForm .deco-circle {
    display: none;
  }
}
#SimulationForm {
  position: relative;
  font-size: 14px;
}
#SimulationForm h1, #SimulationForm h2, #SimulationForm h3, #SimulationForm h4, #SimulationForm h5, #SimulationForm h6 {
  margin: 0;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
#SimulationForm h2, #SimulationForm h3 {
  font-weight: bold;
}
#SimulationForm h3 {
  font-size: 1.17em;
}
#SimulationForm .section.simulation-form-wrap {
  position: relative;
  background-color: unset;
}
#SimulationForm .section.simulation-form-wrap > .deco-circle:nth-of-type(1) {
  top: -90px;
  left: 36px;
}
#SimulationForm .section.simulation-form-wrap:before {
  display: none;
}
#SimulationForm .section.simulation-form-wrap .inner .section-catch {
  margin: auto auto 80px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-catch:after {
  position: absolute;
  display: inline-block;
  content: "";
  right: 50%;
  bottom: -60px;
  width: 54px;
  height: 60px;
  background: url("../img/deco_lights.png") no-repeat center/contain;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-content-select {
  order: 1;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-content-select .price-box {
  position: relative;
  display: inline-block;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-content-select .price-box input {
  padding-right: 40px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-content-select .price-box .unit {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: 14px;
  color: #383838;
}
@media (min-width: 1024px) {
  #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-content-select .price-box .unit {
    bottom: 0;
    right: 14px;
    transform: translateY(-50%);
  }
}
@media (min-width: 1024px) {
  #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-content-select, #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-company-select {
    width: calc((100% - 24px) / 2);
  }
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-company-select {
  order: 2;
}
@media (min-width: 1024px) {
  #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-company-select .form-field .form-item .form-error-text {
    top: calc(50% - 50px);
  }
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select {
  order: 3;
  position: relative;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > .deco-circle:nth-of-type(1) {
  bottom: 24px;
  left: -70px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > .deco-circle:nth-child(2) {
  top: 70px;
  right: -70px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > div {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > div {
    flex-direction: row;
    align-items: center;
  }
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > div > div {
  flex: 1;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > div .meter-guide {
  text-align: center;
  z-index: 1;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > div .meter-guide img {
  border: 6px solid #fff;
  border-radius: 4px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-type-select > div .meter-guide h5 {
  font-size: 16px;
  font-weight: bold;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-membership-select {
  order: 4;
  position: relative;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-membership-select > .deco-circle:nth-of-type(1) {
  bottom: -60px;
  left: -70px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form.power-membership-select p {
  margin-bottom: 16px;
  font-weight: bold;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form h4 {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
  color: #1b6ab6;
  z-index: 1;
}
@media (min-width: 1024px) {
  #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form h4 {
    font-size: 24px;
  }
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form h4 .required {
  padding: 0 20px;
  margin-left: 8px;
  font-size: 14px;
  color: #fff;
  background-color: #ed4b49;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 50vh;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 24px 16px;
  background-color: #f5efde;
  border-radius: 4px;
  z-index: 1;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field .form-item {
  position: relative;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field .form-item:not(:last-child) {
  margin-bottom: 20px;
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field .form-item label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field .form-item label {
    font-size: 16px;
  }
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field .form-item .form-error-text {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  color: #ed4b49;
}
@media (min-width: 1024px) {
  #SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field .form-item .form-error-text {
    position: absolute;
    top: calc(50% - 34px);
    right: 0;
  }
}
#SimulationForm .section.simulation-form-wrap .inner .section-body #contractPlanList .simulation-form .form-field .form-item .form-select:disabled {
  background-color: rgba(89, 89, 89, 0.1294117647);
  color: #999;
  cursor: not-allowed;
  opacity: 1;
}
#SimulationForm .section.simulation-form-wrap .company-code-box {
  display: none;
}
#SimulationForm #calcResult {
  display: none;
}
#SimulationForm .section.calc-result {
  margin-bottom: 32px;
  background-color: #fff769;
}
#SimulationForm .section.calc-result .inner .section-header h2:before {
  width: 32px;
  height: 41px;
  left: -18px;
  background-image: url("../img/deco_calculator.png");
}
@media (min-width: 1024px) {
  #SimulationForm .section.calc-result .inner .section-header h2:before {
    width: 46px;
    height: 52px;
    left: -28px;
  }
}
#SimulationForm .section.calc-result .inner .section-header h2:after {
  width: 36px;
  height: 48px;
  right: -58px;
  background-image: url("../img/deco_women_pointing.png");
}
@media (min-width: 1024px) {
  #SimulationForm .section.calc-result .inner .section-header h2:after {
    width: 50px;
    height: 64px;
    right: -80px;
  }
}
#SimulationForm .section.calc-result .inner .section-catch {
  padding: 24px 16px;
  font-size: 16px;
  color: #fff;
  background-color: #1b6ab6;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  #SimulationForm .section.calc-result .inner .section-catch {
    padding: 32px 16px;
    font-size: 14px;
  }
}
#SimulationForm .section.calc-result .inner .section-catch p.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
#SimulationForm .section.calc-result .inner .section-catch .num-off-price {
  margin: 8px;
  padding-left: 8px;
  font-size: 34px;
  line-height: 0.8em;
  border-bottom: 4px solid #fff200;
}
@media (min-width: 1024px) {
  #SimulationForm .section.calc-result .inner .section-catch .num-off-price {
    font-size: 54px;
  }
}
#SimulationForm .section.calc-result .inner .section-catch .yen {
  margin-left: 8px;
  margin-right: 8px;
  font-size: 24px;
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table {
    max-width: none;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-head {
  display: none;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-head {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-row {
  display: block;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  color: #fff;
  background: #eeae00;
  border-radius: 4px;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell {
    position: relative;
    min-height: 112px;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
  }
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell:last-child {
    border-right: none;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-label {
  min-height: 46px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  background: #f39a10;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-label {
    font-size: 20px;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value {
  position: relative;
  margin-top: 60px;
  padding-top: 24px;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value {
    margin-top: 0;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value:before {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #383838;
  background: #fff;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value:before {
    display: none;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #fff769;
  z-index: 2;
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value:nth-child(2):before {
  content: "ご利用中の電力会社";
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value:nth-child(3):before {
  content: "切り替え後";
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-value:nth-child(4):before {
  content: "年間のおトク額";
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-term {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-term {
    margin: 0 0 6px;
    font-size: 16px;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-price {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-price {
    font-size: 22px;
  }
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-price span {
  margin-left: 4px;
  font-size: 0.8em;
}
#SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-note {
  margin: 4px 0 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-cell-note {
    margin: 6px 0 0;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-head-item {
    position: relative;
    padding: 0 8px 8px;
  }
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-head-item.is-empty {
    padding: 0;
  }
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-head-item span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    background: #fff;
    border-radius: 999px;
  }
  #SimulationForm .section.calc-result .inner .section-body .simulation-result-table .simulation-result-head-item span:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #fff200;
  }
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison {
  overflow: hidden;
  background: #fff;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison .monthly-comparison-table {
  width: 100%;
  table-layout: fixed;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison .monthly-comparison-table th:nth-child(1),
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison .monthly-comparison-table td:nth-child(1) {
  width: 46px;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .monthly-comparison .monthly-comparison-table th:nth-child(1),
  #SimulationForm .section.calc-result .inner .section-body .monthly-comparison .monthly-comparison-table td:nth-child(1) {
    width: 100px;
  }
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  background: #1b6ab6;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: left;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform 0.3s;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-toggle[aria-expanded=false] .monthly-comparison-toggle-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-body {
  background: #fff;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table {
  width: 100%;
  border-collapse: collapse;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table th,
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table td {
  padding: 10px 0;
  text-align: center;
  border: 1px solid #1b6ab6;
  white-space: nowrap;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table th {
  font-size: 11px;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table td {
  font-size: 12px;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table thead th {
  background: #f7f7f7;
  font-weight: bold;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table tbody th {
  background: #f7f7f7;
  font-weight: bold;
}
#SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table tbody td {
  background: #fff;
}
@media (min-width: 768px) {
  #SimulationForm .section.calc-result .inner .section-body .monthly-comparison-toggle {
    padding: 10px 24px;
    font-size: 16px;
  }
  #SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table {
    min-width: auto;
  }
  #SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table th,
  #SimulationForm .section.calc-result .inner .section-body .monthly-comparison-table td {
    padding: 12px 16px;
    font-size: 16px;
  }
}
#SimulationForm .cta {
  order: 5;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  #SimulationForm .cta {
    gap: 16px;
    margin-bottom: 32px;
  }
}
#SimulationForm .cta .cta-btn i {
  font-size: 26px;
}
#SimulationForm .cta .cta-btn.is-outline-blue img {
  position: absolute;
  width: 34px;
  top: 0;
  left: 14px;
}
#SimulationForm .cta .cta-btn.is-outline-blue .cta-btn-text {
  font-size: 16px;
}
#SimulationForm .cta-result {
  display: none;
}
#SimulationForm .section.simulation-notice > .deco-circle {
  z-index: 0;
}
#SimulationForm .section.simulation-notice > .deco-circle:nth-of-type(1) {
  top: -24px;
  right: 0;
}
#SimulationForm .section.simulation-notice > .deco-circle:nth-child(2) {
  bottom: 0;
  left: 0;
}
#SimulationForm .section.simulation-notice .inner {
  position: relative;
  margin: 0 0 60px;
  padding: 40px 5%;
  color: #fff;
  background-color: #fff;
  border: 3px solid #ed4b49;
  z-index: 1;
}
@media (min-width: 768px) {
  #SimulationForm .section.simulation-notice .inner {
    margin: 0 16px 60px;
  }
}
#SimulationForm .section.simulation-notice .inner .section-header h2 {
  padding: 6px 24px;
  font-size: 14px;
  color: #fff;
  background-color: #ed4b49;
  border-radius: 50vh;
}
@media (min-width: 768px) {
  #SimulationForm .section.simulation-notice .inner .section-header h2 {
    padding: 6px 46px;
    font-size: 18px;
  }
}
#SimulationForm .section.simulation-notice .inner .section-body {
  color: #ed4b49;
}

/* loading */
.calc-loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
}
.calc-loading-overlay.is-active {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.calc-loading-overlay .calc-loading-inner {
  text-align: center;
}
.calc-loading-overlay .calc-loading-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 4px solid #ddd;
  border-top: 4px solid #0b8db9;
  border-radius: 50%;
  animation: calc-loading-spin 0.8s linear infinite;
}
.calc-loading-overlay .calc-loading-text {
  font-size: 14px;
  color: #383838;
  margin-bottom: 20px;
}

@keyframes calc-loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* footer */
footer {
  width: 100%;
  max-width: 1170px;
  padding-bottom: 40px;
  margin: 0 auto;
  background: #fffef7;
  overflow: hidden;
}
@media (min-width: 1024px) {
  footer {
    padding: 0 60px 40px;
  }
}
footer .inner img {
  width: 220px;
  margin: 0 auto 32px;
}
footer .inner p {
  text-align: center;
  font-weight: bold;
  color: #1b6ab6;
}

/*# sourceMappingURL=style.css.map */
