@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  background-repeat: no-repeat;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  overflow-wrap: break-word;
  /* 3 */
  -moz-tab-size: 4;
  /* 4 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 4 */
  -webkit-tap-highlight-color: transparent;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0;
  /* 1 */
  resize: vertical;
  /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

.sec-point1 .cv .txt, .sec-point3 .cv .txt, .sec-inner .cv .txt,.columnCv .cv .txt {
  margin-bottom: 0.714em;
  font-size: 14px;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, .75);
}
.sec-point1 .cv, .sec-point3 .cv {
  background: var(--insweb_Lightblue);
  padding: 3em 3em 3em 3em;
  margin: 0 -3em 0 -3em;
}
.sec-point1 .cv > a, .sec-point3 .cv > a, .sec-inner .cv > a, .columnCv  .cv > a{
  display: block;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  background: var(--insweb_orange);
}

.sec-inner .cv > a ,.columnCv .cv > a{
  width: 13.636em;
  padding: 0.681em;
  font-size: 22px;
  font-size: 2.2rem;
  background: linear-gradient(-125deg, #ff5003 0%, #ffa340 100%);
  border-radius: 1.954em;
  box-shadow: 0 0.454em 1.363em rgba(255, 155, 112, 0.3);
}

.sec-point1 .cv > a, .sec-point3 .cv > a {
  position: relative;
  display: block;
  width: 16.5em;
  padding: 0.75em 2.6em 0.75em 1.25em;
  font-size: 20px;
  font-size: 2rem;
  background: linear-gradient(125deg, #ffa340 0%, #ff5003 100%);
  border-radius: 100px;
  box-shadow: 0 0.5em 1.5em rgba(255, 155, 112, 0.2);
}
.columnCv .sec-main-wrap .cv > a{
  position: relative;
}
.sec-point1 .cv > a::after, .sec-point3 .cv > a::after,.columnCv  .cv > a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  background-image: url("/lp/img/cv-arr.svg");
  background-size: cover;
}

.sec-main-wrap .images{
  width: 100%;
  max-width: 1280px;
  margin: auto;
}
.sec-main-wrap .cv {
  margin: 2em auto;
}
.sec-main-wrap .cv > a{
  width: 17em;
  font-size: clamp(22px , 4vw, 30px);
}

/*campaign*/
.cv p:last-child{
  padding: 10px 0 0 0;
  text-align: center;
  font-size: 14px;
}

a{color: var(--insweb_blue);}
.center{text-align: center;}
.red{color:var(--insweb_LP_red);}
.blue{color: var(--insweb_blue);}
.u{text-decoration: underline;}
.indent{padding-left: 1.25em}
.indent-kome,.circle{
  position: relative;
  padding-left: 1.25em;
}
.indent-kome::before{
  position: absolute;
  content: "※";
  left: 0;
}
.circle::before{
  position: absolute;
  content: "";
  left: 0;
  top:.5em;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 100px;
}
#campaign {
  max-width: 102em;
  margin: 0 auto;
}
#campaign #frame{
  margin-bottom: 40px;
  padding: 20px 5vw;
  font-size: 15px;
  background: #fff;
}
#campaign h2{
  margin: 40px auto 0;
}
#campaign .present p ,
#campaign .present li{
  margin-bottom: 10px;
}
#campaign .present > p{
  padding-bottom: 30px;
  text-align: center;
  font-size: clamp(16px, 5vw, 24px);
}
#campaign .present > p > span{
  display: block;
  padding-top: 10px;
  font-size: 15px;
}
#campaign .present dl{
  margin: 0 0 20px;
}
#campaign .present dt{
  margin: auto -5vw 20px;
  padding: 10px;
  color: var(--insweb_navy);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: var(--insweb_Lightblue);
}
#campaign #chuijiko h3{
  margin: 20px auto 30px;
  font-size: clamp(20px, 5vw, 24px);
}
#campaign #chuijiko {
  background: #f5f5f5;
  margin: 20px -20px 0;
  padding: 20px 5vw;
}
#campaign #chuijiko dl{
  margin-bottom: 20px;
}
#campaign #chuijiko dt{
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
}
#campaign #chuijiko dd{
  font-size: 14px;
}
#campaign #chuijiko .note {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  text-align: center;
}
#campaign #chuijiko .note li{
  min-width:calc(50% - 4px);
  text-indent: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: 1;
  margin: 2px 2px 4px;
  padding: 10px;
  font-size: 14px;
  background: #fffff6;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
}
#campaign #chuijiko .note li::before{
  content: none;
}
.pr-banner {
  margin-top: 20px;
  text-align: center;
  display: block;
}
.pr-banner .pr_title {
  margin: auto;
  margin-bottom: 2px;
  padding: 2px 0;
  width: 320px;
  max-width: 100%;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  background-color: #fffc00;
}
/*//*/
@media only screen and (min-width: 768px) {
/*present*/
#campaign .present dl{
  display: flex;
  flex-wrap: wrap;
      margin: 0 0 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
#campaign .present dt{
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border-radius: 10px 0 0px 10px;
}
#campaign .present dd{
  flex:1;
  padding:10px 15px;
}

  .sec-point1 .cv, .sec-point3 .cv {
    padding: 6em 9em 8em 9em;
    margin: 0 -9em -8em -9em;
  }
  .sec-point1 .cv .txt, .sec-point3 .cv .txt {
    margin-bottom: 0.5em;
    font-size: 20px;
    font-size: 2rem;
  }
  .sec-point1 .cv > a, .sec-point3 .cv > a {
    width: 16.571em;
    padding: 0.857em 2.571em 0.857em 1.714em;
    font-size: 35px;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 0.01em;
    border-radius: 1.371em;
    box-shadow: 0 0.285em 0.857em rgba(10, 10, 10, 0.2);
  }
  .sec-point1 .cv > a::after, .sec-point3 .cv > a::after {
    right: 1.142em;
    top: 0.885em;
    width: 1em;
    height: 1em;
  }

  .pr-banner {
    display: none;
  }

}
@media only screen and (min-width: 1024px) {
  .sec-inner .cv > a, .sec-point1 .cv > a, .sec-point3 .cv > a {
    filter: brightness(100%);
    transition: filter 2s;
  }
  .sec-inner .cv > a:hover, .sec-point1 .cv > a:hover, .sec-point3 .cv > a:hover {
    filter: brightness(125%);
    transition: filter 1s;
  }
    #campaign #chuijiko .note li{
    min-width:calc(25% - 4px);
  }
}
.sec-point1, .sec-point2, .sec-point3 {
  padding: 0 2em 6em 2em;
}
.sec-point1 h2, .sec-point2 h2, .sec-point3 h2 {
  margin: 0 -0.91em 1.818em -0.91em;
  padding: 0.909em 0;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.363em;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  background: var(--insweb_navy);
  background: linear-gradient(90deg, #0067a1 0%, #00359e 100%);
}
.sec-point1 h2 .sub, .sec-point2 h2 .sub, .sec-point3 h2 .sub {
  display: block;
  padding-bottom: 0.714em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.sec-point1 h2 .em, .sec-point2 h2 .em, .sec-point3 h2 .em {
  display: block;
  font-size: 27px;
  font-size: 2.7rem;
  color: #FF7C03;
}

.sec-point1, .sec-point3 {
  position: relative;
}
.is-active.sec-point1::before, .is-active.sec-point3::before {
  z-index: -1;
}
.sec-point1::before, .sec-point3::before {
  content: "";
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media only screen and (min-width: 768px) {
  .sec-point1, .sec-point2, .sec-point3 {
    padding: 0 9em 8em 9em;
  }
  .sec-point1 h2, .sec-point2 h2, .sec-point3 h2 {
    margin: 0 -2.813em 2.5em -2.813em;
    padding: 1.093em 2.812em;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 700;
    background: var(--insweb_navy);
    background: linear-gradient(90deg, #0067a1 25%, #00359e 75%);
  }
  .sec-point1 h2 .sub, .sec-point2 h2 .sub, .sec-point3 h2 .sub {
    padding-bottom: 0.454em;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .sec-point1 h2 .em, .sec-point2 h2 .em, .sec-point3 h2 .em {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .sec-point1 h2 .em, .sec-point2 h2 .em, .sec-point3 h2 .em {
    display: inline;
  }
}
.sec-pro-ttl, .sec-voice-ttl, .sec-saving-ttl ,#chuijiko h3{
  position: relative;
  padding-bottom: 1.388em;
  margin-bottom: 1.666em;
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--insweb_navy);
  text-align: center;
}
.sec-pro-ttl::after, .sec-voice-ttl::after, .sec-saving-ttl::after,#chuijiko h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  display: block;
  height: 3px;
  width: 50px;
  background: rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
}

.sec-pro-box, .sec-voice-box, .sec-saving-box {
  padding: 3em 2em;
  margin-top: 2em;
  background: var(--insweb_Lightblue);
  background: rgba(var(--insweb_Lightblue_r), var(--insweb_Lightblue_g), var(--insweb_Lightblue_b), 0.75);
  border-radius: 0.5em;
}
.sec-pro-box .person, .sec-voice-box .person, .sec-saving-box .person {
  position: relative;
  min-height: 10em;
  padding: 0 0 2em 10em;
  margin-bottom: 2em;
  color: var(--insweb_navy);
  border-bottom: solid 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.3);
}
.sec-pro-box .person picture, .sec-voice-box .person picture, .sec-saving-box .person picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 8em;
}
.sec-pro-box .person picture img, .sec-voice-box .person picture img, .sec-saving-box .person picture img {
  border-radius: 50%;
}
.sec-pro-box .person .label, .sec-voice-box .person .label, .sec-saving-box .person .label {
  min-height: 8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec-pro-box .person .sub, .sec-voice-box .person .sub, .sec-saving-box .person .sub {
  font-size: 14px;
  font-size: 1.4rem;
}
.sec-pro-box .person .main, .sec-voice-box .person .main, .sec-saving-box .person .main {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.sec-pro-box .txt p, .sec-voice-box .txt p, .sec-saving-box .txt p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}
.sec-pro-box .txt .em, .sec-voice-box .txt .em, .sec-saving-box .txt .em {
  font-weight: 700;
  color: var(--insweb_orange);
}

@media only screen and (min-width: 768px) {
  .sec-pro-ttl, .sec-voice-ttl, .sec-saving-ttl {
    max-width: 36.428em;
    padding: 0;
    margin: 0 auto 1.071em auto;
    font-size: 28px;
    font-size: 2.8rem;
    text-align: left;
  }
  .sec-pro-ttl::after, .sec-voice-ttl::after, .sec-saving-ttl::after {
    content: normal;
  }
  .sec-pro-box, .sec-voice-box, .sec-saving-box {
    padding: 5em;
    max-width: 102em;
    margin: 2em auto 0 auto;
    display: grid;
    grid-template-columns: 18em 1fr;
    grid-column-gap: 3em;
  }
  .sec-pro-box .person, .sec-voice-box .person, .sec-saving-box .person {
    min-height: 1px;
    padding: 0 3em 0 0;
    margin: 0;
    border: 0;
    border-right: solid 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.3);
  }
  .sec-pro-box .person picture, .sec-voice-box .person picture, .sec-saving-box .person picture {
    position: relative;
    display: block;
    left: auto;
    top: auto;
    width: 15em;
    margin-bottom: 1em;
    text-align: center;
  }
  .sec-pro-box .person .label, .sec-voice-box .person .label, .sec-saving-box .person .label {
    min-height: 1px;
    text-align: center;
  }
  .sec-pro-box .txt p, .sec-voice-box .txt p, .sec-saving-box .txt p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
  .sec-pro-box .txt .em, .sec-voice-box .txt .em, .sec-saving-box .txt .em {
    font-weight: 700;
    color: var(--insweb_orange);
  }
}
:root {
  --insweb_navy: #00359e;
  --insweb_blue: #117fef;
  --insweb_Lightblue: #d7ebff;
  --insweb_orange: #ff5003;
  --insweb_yellow:#ffe408;
  --insweb_navy_r: 0;
  --insweb_navy_g: 53;
  --insweb_navy_b: 158;
  --insweb_blue_r: 17;
  --insweb_blue_g: 127;
  --insweb_blue_b: 239;
  --insweb_Lightblue_r: 215;
  --insweb_Lightblue_g: 235;
  --insweb_Lightblue_b: 255;
  --insweb_LP_red: #ee142e;
}

html {
  font-size: 100%;
  font-size: 62.5%; /*10px*/
}

body {
  font-family: "Noto Sans JP", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background-repeat: repeat;
}

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

li {
  list-style: none;
}

.br-pc {
  display: none;
}
.mt5{margin-top: 5px}
.mt10{margin-top:10px}
.mt20{margin-top:20px}
.mb5{margin-bottom: 5px}
.mb10{margin-bottom:10px}
.mb20{margin-bottom:20px}

.underline{text-decoration: underline;}
@media only screen and (min-width: 1024px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: inline;
  }
}
.header {
  background: #FFF;
  border-bottom: solid 2px #F5F5F5;
  overflow: hidden;
}
.smbc .header{
  background: #004831;
  border-bottom: 3px solid #c4d700;
}
.header .head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 120em;
  height: 4.5em;
  padding: 1em 2em;
  margin: 0 auto;
}
.smbc .header .head-wrap {
  padding: 0 1em;
}
.header img {
  max-width: 100%;
  height: auto;
}
.header .insweb {
  width: 9.4em;
}
.smbc .header .insweb {
  width: 14em;
}
.header .sbi {
  width: 8em;
}
.smbc .header .logo{
  width: clamp(100px, 100vw, 120px);
}
@media only screen and (min-width: 768px) {
  .header .head-wrap {
    height: 5em;
    padding: 0.9em 9em;
  }
  .smbc .header .head-wrap {
    padding: 0 4em;
  }
  .header .insweb {
    width: 12em;
  }
  .smbc .header .insweb {
    width: 16em;
  }
  .header .sbi {
    width: 10.5em;
  }
}

.sec-main ,
.sec-main-wrap{
  padding: 0;
  height: auto;
  background: none;
}
.sec-main-wrap{
  background: linear-gradient(180deg,rgba(225, 253, 255, 1) 0%, rgba(186, 240, 255, 1) 100%);
}
.sec-main-wrap{
  padding: 15px 2vw;
}


.sec-inner {
  position: relative;
  padding-top: 87.2%;
}
.sec-inner h1 {
  font-size: 10px;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 2.5em;
  width: 100%;
  height: 0;
  padding-top: 20.513%;
  overflow: hidden;
  background-image: url("../img/main-ttl.svg");
  background-size: cover;
}
/*insentive*/
.sec-campaign {
  margin: 4em 2em 0;
}
.sec-campaign dt {
  grid-area: 1/1/2/4;
  padding: 0.357em;
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  background: #3f3867;
}
.smbc .sec-campaign dt{
  background: #00846d;
} 
/*--//--*/
.sec-main-point {
  margin: 4em 2em;
}
.sec-main-point dt {
  padding: 0.555em;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  background: var(--insweb_navy);
  background: linear-gradient(90deg, #0067a1 0%, #00359e 100%);
}
.sec-main-point dd {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  background: #FAFAFA;
  border: solid 1px #DEDEDE;
  border-top: 0;
}
.sec-main-point dd a {
  display: block;
  display: flex;
  padding: 0.312em;
  text-decoration: none;
  position: relative;
  color: var(--insweb_navy);
}
.sec-main-point dd a:after {
  content: "";
  width: 0.937em;
  background: rgba(var(--insweb_Lightblue_r), var(--insweb_Lightblue_g), var(--insweb_Lightblue_b), 0.5);
  border-radius: 0.062em;
}
.sec-main-point dd a:before {
  content: "";
  display: block;
  position: absolute;
  right: 0.375em;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  border-right: solid 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
  border-bottom: solid 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
  transform: rotate(-45deg) translateY(-0.313em);
}
.sec-main-point dd .img {
  display: block;
  padding-left: 1.25em;
  width: 3.375em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec-main-point dd .img img {
  max-width: 100%;
  height: auto;
}
.sec-main-point dd .txt {
  padding: 0.625em 1.25em;
  width: 100%;
  line-height: 1.4;
}
.sec-main-point dd .org {
  color: var(--insweb_orange);
}
.sec-main-point dd .em {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 900;
}
.sec-main-point dd .sub {
  font-size: 13px;
  font-size: 1.3rem;
}

.sec-main-logos-wrap {
  margin: 20px 0 0 0;
  display: grid;
  grid-column: min-content;
  padding: 4em 0;
  background: var(--insweb_Lightblue);
  overflow: hidden;
}

.sec-main-logos {
  display: flex;
  min-width: 100%;
  width: -moz-min-content;
  width: min-content;
  animation: 80s linear infinite sliderAnimation;
}
.sec-main-logos li {
  width: 12em;
  height: 6em;
  font-size: 10px;
  font-size: 1rem;
  background: #FFF;
  border: solid 0.1em #CCC;
  margin: 0 1em;
  text-align: center;
  border-radius: 0.2em;
}
.sec-main-logos li img {
  max-height: 100%;
  width: auto;
}

@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
.sec-main-campaign {
  padding: 0 2em;
  margin-top: 4em;
}
.sec-main-campaign img {
  max-width: 100%;
  height: auto;
}

.sec-pro {
  padding: 4em 2em 6em 2em;
}

.sec-pro-box .person .sub {
  font-size: 11px;
  font-size: 1.1rem;
}

@media only screen and (min-width: 768px) {
  .sec-campaign {
    margin: 8em 9em 0;
  }
  .sec-main-point {
    margin: 8em 9em;
  }
  .sec-main-point dd {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .sec-main-point dd a {
    padding: 0.227em;
  }
  .sec-main-point dd a:after {
    width: 0.681em;
    border-radius: 0.045em;
  }
  .sec-main-point dd a:before {
    right: 0.272em;
    width: 0.363em;
    height: 0.363em;
    transform: rotate(-45deg) translateY(-0.228em);
  }
  .sec-main-point dd .txt {
    padding: 0.454em 0.909em;
  }
  .sec-main-point dd .em {
    font-size: 30px;
    font-size: 3rem;
  }
  .sec-main-point dd .sub {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .sec-main-logos-wrap {
    padding: 8em 0;
  }
  .sec-main-logos li {
    width: 18em;
    height: 8em;
    border: 0;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.15);
    margin: 0 0.9em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sec-main-logos li img {
    width: 12em;
    height: auto;
  }
  .sec-main-campaign {
    max-width: 120em;
    padding: 0 9em;
    margin-top: 8em;
  }
  .sec-pro {
    padding: 8em 9em;
  }
  .sec-pro-box .person .label {
    text-align: left;
  }
  .sec-pro-box .person .sub {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 0.833em;
  }
  .sec-pro-box .txt p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .sec-inner {
    grid-area: 2/1/3/2;
    max-width: 102em;
    margin: 0 auto;
    padding: 0;
  }
  .sec-inner h1 {
    position: relative;
    left: auto;
    top: auto;
    width: 51em;
    padding-top: 30em;
    margin: 0 -2em 2em auto;
    background-image: url("../img/main-ttl-pc.svg");
  }
  .sec-inner .cv {
    width: 48em;
    margin: 50px 0 0 50px;
  }
/*incentive*/
    .sec-campaign {
      max-width: 102em;
      text-align: center;
      margin: -18em auto 20px auto;
    }
    .sec-main-point.m0{
      margin: 0 auto;
    }
/*--//--*/
  .sec-main-point {
    max-width: 102em;
    margin: -17.5em auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .sec-main-point dt {
    grid-area: 1/1/2/4;
    padding: 0.357em;
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
  }
  .sec-main-point dd {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .sec-main-point dd:nth-child(2) {
    grid-area: 2/1/3/2;
    border-right: 0;
  }
  .sec-main-point dd:nth-child(3) {
    grid-area: 2/2/3/3;
    border-right: 0;
  }
  .sec-main-point dd:nth-child(4) {
    grid-area: 2/3/3/4;
  }
  .sec-main-point dd a {
    flex-direction: column;
    justify-content: space-between;
    padding: 1.454em 0.909em 0.909em 0.909em;
  }
  .sec-main-point dd a:after {
    width: 100%;
    height: 1.272em;
    border-radius: 0.136em;
    background-color: rgba(217, 228, 239, 0.5);
    transition: background-color 2s;
  }
  .sec-main-point dd a:before {
    right: 50%;
    bottom: 1.59em;
    top: auto;
    width: 0.454em;
    height: 0.454em;
    border-right: solid 2px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
    border-bottom: solid 2px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
    transform: rotate(45deg) translate(0.227em, 0);
  }
  .sec-main-point dd a:hover:after {
    background-color: rgba(var(--insweb_blue_r), var(--insweb_blue_g), var(--insweb_blue_b), 0.3);
    transition: background-color 1s;
  }
  .sec-main-point dd .img {
    padding: 0;
    width: 100%;
    height: 4.09em;
    flex-direction: row;
  }
  .sec-main-point dd .img img {
    max-height: 100%;
    width: auto;
  }
  .sec-main-point dd .txt {
    padding: 0.454em 0 0.909em 0;
    text-align: center;
  }
  .sec-main-campaign {
    padding: 0 9em 8em 9em;
    margin: 0 auto;
  }
  .sec-pro {
    background: #FFF;
  }
}
.sec-point1::before {
  background-image: url("../img/point01-bg.jpg");
}
.sec-point1-box {
  padding: 3em 2em;
  margin-bottom: 3em;
  background: #FFF;
  border: solid 1px #CCC;
  border-radius: 0.5em;
}
.sec-point1-box .ttl {
  margin-bottom: 0.833em;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
}
.sec-point1-box .ttl .em {
  color: var(--insweb_blue);
}

.sec-point1-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}
.sec-point1-logos li {
  font-size: 11px;
  font-size: 1.1rem;
  padding: 0.454em 0.909em;
  border: solid 1px #CCC;
  border-radius: 0.181em;
  text-align: center;
}
.sec-point1-logos li img {
  mix-blend-mode: multiply;
}
.sec-point1-logos .more {
  grid-area: 3/2/4/4;
  background: none;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--insweb_navy);
}

.sec-point1-flow {
  border-left: solid 2px var(--insweb_navy);
  padding-left: 2em;
  margin-top: 2em;
}
.sec-point1-flow .step {
  display: inline-block;
  margin-bottom: 0.208em;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Manrope";
  line-height: 1;
  color: var(--insweb_navy);
}
.sec-point1-flow .step span {
  display: block;
}
.sec-point1-flow .step span:first-child {
  font-size: 10px;
  font-size: 1rem;
  text-align: center;
}
.sec-point1-flow .txt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sec-point1-flow .tag {
  display: inline-block;
  padding: 0.25em 0.416em;
  vertical-align: 0.083em;
  font-size: 12px;
  font-size: 1.2rem;
  background: var(--insweb_orange);
  color: #FFF;
  border-radius: 0.25em;
}
.sec-point1-flow .list01 li {
  margin-top: 0.714em;
  padding: 0.714em 1.428em;
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--insweb_navy);
  border-radius: 0.214em;
  background: #F5F5F5;
}
.sec-point1-flow .list01 .em {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.sec-point1-flow .list02 {
  display: inline-block;
  margin-top: 1em;
  padding: 1em 2em 1em 1.5em;
  border-radius: 0.3em;
  background: #F5F5F5;
}
.sec-point1-flow .list02 li {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--insweb_navy);
}
.sec-point1-flow .list02 li:before {
  content: "・";
  position: absolute;
  left: 0;
}
.sec-point1-flow:first-child {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .sec-point1-box {
    padding: 5em 6em;
  }
  .sec-point1-box:last-child {
    margin-bottom: 8em;
  }
  .sec-point1-box .ttl {
    margin-bottom: 0.833em;
    font-size: 36px;
    font-size: 3.6rem;
  }
  .sec-point1-logos {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }
  .sec-point1-logos .more {
    font-size: 10px;
    font-size: 1rem;
    grid-area: 2/4/3/5;
    background: none;
    border: 0;
    background: var(--insweb_Lightblue);
    color: var(--insweb_navy);
  }
  .sec-point1-flow {
    position: relative;
    border-left: solid 2px var(--insweb_navy);
    padding-left: 3em;
    margin-top: 5em;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 2em;
    grid-row-gap: 0;
  }
  .sec-point1-flow::before {
    content: "";
    position: absolute;
    top: -3em;
    left: calc(50% - 2.4em);
    border-style: solid;
    border-width: 2em 2.4em 0 2.4em;
    border-color: var(--insweb_Lightblue) transparent transparent transparent;
  }
  H3 + .sec-point1-flow {
    margin-top: 0;
  }
  H3 + .sec-point1-flow::before {
    content: normal;
  }
  .sec-point1-flow .step {
    grid-area: 1/1/2/2;
    margin: 0;
    font-size: 50px;
    font-size: 5rem;
  }
  .sec-point1-flow .step span:first-child {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.15em;
  }
  .sec-point1-flow .txt {
    grid-area: 1/2/2/3;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .sec-point1-flow .tag {
    position: relative;
    margin: 0.133em 0 0 0.333em;
    padding: 0.2em 0.333em;
    font-size: 15px;
    font-size: 1.5rem;
    border-radius: 0.2em;
  }
  .sec-point1-flow .tag:before {
    content: "";
    position: absolute;
    left: -0.334em;
    top: calc(50% - 0.333em);
    border-style: solid;
    border-width: 0.333em 0.4em 0.333em 0;
    border-color: transparent var(--insweb_orange) transparent transparent;
  }
  .sec-point1-flow .list {
    grid-area: 2/1/3/3;
  }
  .sec-point1-flow .list01 li {
    display: table;
    margin-top: 0.625em;
    padding: 0.625em 1.25em;
    font-size: 16px;
    font-size: 1.6rem;
    border-radius: 0.187em;
  }
  .sec-point1-flow .list02 {
    padding: 2em;
  }
  .sec-point1-flow .list02 li {
    position: relative;
    padding-left: 1em;
    font-size: 16px;
    font-size: 1.6rem;
    color: var(--insweb_navy);
  }
  .sec-point1-flow .list02 li:before {
    content: "・";
    position: absolute;
    left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .sec-point1-wrap {
    max-width: 102em;
    margin: 0 auto;
  }
  .sec-point1-wrap .sec-point1-box {
    max-width: 73.2em;
    margin-left: auto;
  }
  .sec-point1-flow .list01 .em {
    margin-left: 0.5em;
  }
}
.sec-point2 {
  background: #FFF;
}

.sec-point2-wrap {
  max-width: 102em;
  margin: 0 auto;
}
.sec-point2-wrap p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

.sec-point2-goo {
  display: block;
  margin-top: 3em;
  text-align: center;
}

.sec-voice {
  margin-top: 4em;
}

@media only screen and (min-width: 768px) {
  .sec-point2-wrap p {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .sec-point2-goo {
    margin-top: 6em;
  }
  .sec-voice {
    margin-top: 6em;
  }
  .sec-voice-box .txt p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.sec-point3::before {
  background-image: url("../img/point03-bg.jpg");
}
.sec-point3-wrap {
  max-width: 102em;
  margin: 0 auto;
}

.sec-point3-data .txt {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.sec-point3-data .txt span {
  display: inline-block;
}

.sec-point3-graph, .sec-point3-avg {
  margin-top: 3em;
  background: #FFF;
  border: solid 1px #CCC;
  border-radius: 0.3em;
  padding: 3em 2em 4em 2em;
}
.sec-point3-graph .ttl, .sec-point3-avg .ttl {
  margin-bottom: 0.571em;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  color: #064eb9;
}
.sec-point3-graph .ttl .note, .sec-point3-avg .ttl .note {
  margin-left: 0.5em;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}

.sec-point3-avg {
  padding-bottom: 6em;
  position: relative;
}
.sec-point3-avg .price {
  padding: 0.714em 0.357em;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #064eb9;
  background: rgba(255, 162, 116, 0.15);
}
.sec-point3-avg .main {
  display: inline-block;
  margin-right: 0.076em;
  font-size: 65px;
  font-size: 6.5rem;
  font-family: "Manrope";
  letter-spacing: -0.05em;
  color: transparent;
  background: #FF5003;
  background: linear-gradient(0deg, #ffa274 0%, #ff5003 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.sec-point3-avg img {
  position: absolute;
  right: 1em;
  bottom: 2.5em;
  width: 6em;
  height: auto;
}

.sec-point3-graph .graph {
  position: relative;
  width: 10em;
  height: 10em;
  margin: 0 auto;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.sec-point3-graph .graph .nmb {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.777em;
  height: 7.777em;
  border-radius: 50%;
  background: #FFF;
  transform: translate(-49.5%, -49.5%);
}
.sec-point3-graph .graph .nmb .main {
  display: inline-block;
  margin-right: 0.056em;
  font-size: 53px;
  font-size: 5.3rem;
  font-family: "Manrope";
  letter-spacing: -0.05em;
  color: transparent;
  background: var(--insweb_orange);
  background: linear-gradient(0deg, #ffa274 0%, #ff5003 100%);
  -webkit-background-clip: text;
}
.sec-point3-graph .graph .nmb .sub {
  padding-top: 1.132em;
  color: #064eb9;
}
.sec-point3-graph .graph .pie {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: conic-gradient(#FF6621 0%, #FF9D6D 93.9% 94%, #D9D9D9 94% 100%);
  border-radius: 50%;
}

.sec-point3-note {
  margin-top: 2.5em;
}
.sec-point3-note li {
  margin-top: 0.416em;
  font-size: 12px;
  font-size: 1.2rem;
}

.sec-saving {
  padding: 4em 0 3em 0;
}

.sec-saving-bal {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  width: 16.25em;
  margin: 0 auto -1.875em auto;
  padding: 1.062em 0;
  line-height: 1;
  background: #FFD15B;
  color: var(--insweb_orange);
  text-align: center;
  height: 5em;
  border-radius: 2.5em;
}
.sec-saving-bal .em {
  display: block;
  margin-top: 0.312em;
  font-size: 24px;
  font-size: 2.4rem;
}
.sec-saving-bal::before {
  content: "";
  position: absolute;
  right: calc(50% - 6px);
  bottom: -7px;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #FFD15B transparent transparent transparent;
}

.sec-saving-box {
  border: solid 1px #CCC;
  background: #FFF;
}
.sec-saving-box .person {
  margin-bottom: 0;
}
.sec-saving-box .data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: auto 1fr;
  grid-column-gap: 1px;
  grid-row-gap: 0;
  border-bottom: solid 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
}
.sec-saving-box .data dt {
  padding: 1em 1.25em 1em 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.166;
  color: var(--insweb_navy);
  border-top: dotted 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
}
.sec-saving-box .data dd {
  padding: 0.857em 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  border-top: dotted 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
}
.sec-saving-box .data dt:nth-child(1),
.sec-saving-box .data dd:nth-child(2) {
  border: 0;
}
.sec-saving-box .price {
  position: relative;
  padding-top: 4.166em;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--insweb_LP_red);
  line-height: 1;
}
.sec-saving-box .price .main {
  font-size: 15px;
  font-size: 1.5rem;
}
.sec-saving-box .price .em {
  font-size: 30px;
  font-size: 3rem;
  font-family: "Manrope";
  letter-spacing: -0.03em;
}
.sec-saving-box .price::before {
  content: "";
  position: absolute;
  right: calc(50% - 1.833em);
  top: 1.666em;
  border-style: solid;
  border-width: 1.25em 1.833em 0 1.833em;
  border-color: var(--insweb_Lightblue) transparent transparent transparent;
}

@media only screen and (min-width: 768px) {
  .sec-point3-avg {
    padding: 4em 6em;
  }
  .sec-point3-avg img {
    bottom: 3em;
    width: 7em;
  }
  .sec-point3-graph {
    padding: 4em 6em;
  }
  .sec-saving {
    padding: 8em 0;
  }
  .sec-saving-box {
    grid-template-columns: 18em 1fr;
    grid-column-gap: 3em;
  }
  .sec-saving-box .person {
    grid-area: 1/1/2/2;
  }
  .sec-saving-box .data {
    grid-area: 1/2/2/3;
    margin: -1.2em 0;
    border-bottom: solid 1px rgba(var(--insweb_navy_r), var(--insweb_navy_g), var(--insweb_navy_b), 0.5);
    border: 0;
  }
  .sec-saving-box .price {
    grid-area: 2/1/3/3;
    padding-top: 5em;
  }
  .sec-saving-box .price::before {
    content: "";
    position: absolute;
    left: calc(50% - 1.833em);
    top: 2.5em;
    border-style: solid;
    border-width: 1.25em 1.833em 0 1.833em;
    border-color: var(--insweb_Lightblue) transparent transparent transparent;
  }
}
@media only screen and (min-width: 1024px) {
  .sec-point3-data .txt {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .sec-point3-data .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4em;
  }
  .sec-point3-graph, .sec-point3-avg {
    margin-top: 5em;
    border-radius: 0.5em;
  }
  .sec-point3-avg {
    padding-bottom: 6em;
  }
  .sec-point3-avg .ttl {
    margin-bottom: 0.714em;
  }
  .sec-point3-avg .price {
    padding: 1.166em 0.333em;
    font-size: 30px;
    font-size: 3rem;
  }
  .sec-point3-avg .main {
    margin-right: 0.06em;
    font-size: 82px;
    font-size: 8.2rem;
  }
  .sec-point3-avg img {
    right: 2em;
  }
  .sec-point3-graph {
    padding-bottom: 3.5em;
  }
  .sec-point3-note {
    margin-top: 4em;
  }
  .sec-point3-note li {
    margin-top: 0.357em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .sec-saving-box {
    grid-template-columns: 18em 1fr auto;
  }
  .sec-saving-box .person {
    grid-area: 1/1/2/2;
  }
  .sec-saving-box .data {
    grid-area: 1/2/2/3;
    padding-right: 4.3em;
    margin: 0;
    grid-template-columns: auto auto auto;
    grid-template-rows: 1fr repeat(4, auto) 1fr;
    grid-column-gap: 2em;
    grid-row-gap: 1em;
  }
  .sec-saving-box .data :nth-child(1) {
    grid-area: 2/1/3/2;
  }
  .sec-saving-box .data :nth-child(2) {
    grid-area: 3/1/4/2;
  }
  .sec-saving-box .data :nth-child(3) {
    grid-area: 4/1/5/2;
  }
  .sec-saving-box .data :nth-child(4) {
    grid-area: 5/1/6/2;
  }
  .sec-saving-box .data :nth-child(5) {
    grid-area: 2/2/3/3;
  }
  .sec-saving-box .data :nth-child(6) {
    grid-area: 3/2/4/3;
  }
  .sec-saving-box .data :nth-child(7) {
    grid-area: 4/2/5/3;
  }
  .sec-saving-box .data :nth-child(8) {
    grid-area: 5/2/6/3;
  }
  .sec-saving-box .data :nth-child(9) {
    grid-area: 2/3/3/4;
  }
  .sec-saving-box .data :nth-child(10) {
    grid-area: 3/3/4/4;
  }
  .sec-saving-box .data :nth-child(11) {
    grid-area: 4/3/5/4;
  }
  .sec-saving-box .data :nth-child(12) {
    grid-area: 5/3/6/4;
  }
  .sec-saving-box .data dt {
    padding: 0;
    line-height: 1;
    border: 0;
  }
  .sec-saving-box .data dt:nth-child(3), .sec-saving-box .data dt:nth-child(7), .sec-saving-box .data dt:nth-child(11) {
    padding-top: 1.25em;
  }
  .sec-saving-box .data dd {
    padding: 0;
    border: 0;
  }
  .sec-saving-box .price {
    grid-area: 1/3/2/4;
    padding: 0 2.083em;
    background: #FFF1EA;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sec-saving-box .price .sub {
    display: block;
    margin-bottom: 0.357em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .sec-saving-box .price .main {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .sec-saving-box .price .em {
    font-size: 48px;
    font-size: 4.8rem;
  }
  .sec-saving-box .price::before {
    left: -3.167em;
    top: calc(50% - 1.666em);
    border-width: 1.666em 0 1.666em 1.083em;
    border-color: transparent transparent transparent var(--insweb_Lightblue);
  }
  .sec-saving-bal {
    font-size: 24px;
    font-size: 2.4rem;
    width: 20.833em;
    margin: 0 auto -1.459em auto;
    padding: 0.958em 0;
    height: 2.916em;
    border-radius: 1.458em;
  }
  .sec-saving-bal .em {
    display: inline;
  }
  .sec-saving-bal::before {
    right: calc(50% - 10px);
    bottom: -11px;
    border-width: 12px 10px 0 10px;
  }
}
.footer {
  padding: 4em 2em;
  background: #FFF;
  border-top: solid 1px #DDD;
}
.footer .privacy {
  display: flex;
}
.footer .privacy figure {
  display: block;
  width: 6em;
  margin-right: 2em;
}
.footer .privacy figure + p {
  display: inline-block;
}
.footer p {
  font-size: 12px;
  font-size: 1.2rem;
}
.footer ul {
  margin: 2em -2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}
.footer ul li {
  padding: 1em 0;
  font-size: 13px;
  font-size: 1.3rem;
  background: var(--insweb_navy);
  text-align: center;
}
.footer ul a {
  color: #FFF;
  text-decoration: none;
}
.footer .copy {
  margin-top: 1em;
  font-size: 10px;
  font-size: 1rem;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .footer {
    border: 0;
    padding: 4em 0;
  }
  .footer .privacy {
    justify-content: center;
    align-items: center;
  }
  .footer .privacy figure {
    width: 7.5em;
  }
  .footer .privacy figure + p {
    line-height: 2;
  }
  .footer p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .footer nav {
    padding: 0 9em;
    background: var(--insweb_navy);
  }
  .footer ul {
    max-width: 102em;
    margin: 2em auto;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    border-right: solid 1px #FFF;
    border-left: solid 1px #FFF;
    background: #FFF;
  }
  .footer ul li {
    padding: 0.75em 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .footer nav {
    background: var(--insweb_navy);
  }
  .footer nav + p {
    text-align: center;
  }
  .footer .copy {
    margin-top: 1.428em;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
