@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900 &display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900 &display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900 &display=swap");
:root {
  --font: "Noto Sans JP","游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-min: "Noto Sans JP";
  --font-en: "Roboto", sans-serif;
  --bg-color: #fff;
  --text-color: #142e40;
  --main-color: red;
  --w:0;
  --w-pc:1400;
  --w-sp:375;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

p, li, dt, dl, dd {
  line-height: 1.8;
}

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

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

body {
  background-color: var(--bg-color);
  font-family: var(--font);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img {
  width: 100%;
}

.u-en {
  font-family: var(--font-en);
}

.u-min {
  font-family: var(--font-min);
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-td-n {
  text-decoration: none !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.c-anim {
  transition-delay: 0.2s;
  transition-duration: 0.7s;
  /* Delay Utils */
}
.c-anim.is-fade {
  opacity: 0;
}
.c-anim.is-fade.js-active {
  opacity: 1;
}
.c-anim.is-top {
  opacity: 0;
  transform: translate(0, -100px);
}
.c-anim.is-top.js-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-bottom {
  opacity: 0;
  transform: translate(0, 50px);
}
.c-anim.is-bottom.js-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-left {
  opacity: 0;
  transform: translate(-100px, 0);
}
.c-anim.is-left.js-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-right {
  opacity: 0;
  transform: translate(100px, 0);
}
.c-anim.is-right.js-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-zoom {
  opacity: 0;
  transform: scale(0.8);
}
.c-anim.is-zoom.js-active {
  opacity: 1;
  transform: scale(1);
}
.c-anim.is-zoom-out {
  opacity: 0;
  transform: scale(1.1);
}
.c-anim.is-zoom-out.js-active {
  opacity: 1;
  transform: scale(1);
}
.c-anim.is-zoom-bounce {
  opacity: 0;
  transform: scale(0.3);
}
.c-anim.is-zoom-bounce.js-active {
  opacity: 1;
  transform: scale(1);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.c-anim.is-delay-00 {
  transition-delay: 0s;
}
.c-anim.is-delay-01 {
  transition-delay: 0.1s;
}
.c-anim.is-delay-02 {
  transition-delay: 0.2s;
}
.c-anim.is-delay-03 {
  transition-delay: 0.3s;
}
.c-anim.is-delay-04 {
  transition-delay: 0.4s;
}
.c-anim.is-delay-05 {
  transition-delay: 0.5s;
}
.c-anim.is-delay-06 {
  transition-delay: 0.6s;
}
.c-anim.is-delay-07 {
  transition-delay: 0.7s;
}
.c-anim.is-delay-08 {
  transition-delay: 0.8s;
}
.c-anim.is-delay-09 {
  transition-delay: 0.9s;
}
.c-anim.is-delay-10 {
  transition-delay: 1s;
}
.c-anim.is-delay-11 {
  transition-delay: 1.1s;
}
.c-anim.is-delay-12 {
  transition-delay: 1.2s;
}
.c-anim.is-delay-13 {
  transition-delay: 1.3s;
}
.c-anim.is-delay-14 {
  transition-delay: 1.4s;
}
.c-anim.is-delay-15 {
  transition-delay: 1.5s;
}
.c-anim.is-delay-16 {
  transition-delay: 1.6s;
}
.c-anim.is-delay-17 {
  transition-delay: 1.7s;
}
.c-anim.is-delay-18 {
  transition-delay: 1.8s;
}
.c-anim.is-delay-19 {
  transition-delay: 1.9s;
}
.c-anim.is-delay-20 {
  transition-delay: 2s;
}

@media print, screen and (min-width: 768px) {
  :root {
    --w: var(--w-pc) ;
  }
  .u-sp {
    display: none;
  }
  .l-wrapper {
    overflow: clip;
  }
  .l-header-wrap {
    height: min(70px, 70 / var(--w) * 100vw);
    position: relative;
  }
  .l-header {
    background: #142E40;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: min(70px, 70 / var(--w) * 100vw);
    z-index: 100;
    padding: 0 min(15px, 15 / var(--w) * 100vw) 0 0;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
  }
  .l-header h1, .l-header h2, .l-header h3, .l-header h4, .l-header h5, .l-header h6 {
    margin: 0;
    padding: 0;
  }
  .l-header p {
    margin: 0;
  }
  .l-header ol, .l-header ul, .l-header li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-header a {
    text-decoration: none;
    color: inherit;
  }
  .l-header ._btns {
    display: flex;
    gap: min(10px, 10 / var(--w) * 100vw);
  }
  .c-head-logo {
    display: block;
    width: min(260px, 260 / var(--w) * 100vw);
  }
  .c-head-btn {
    position: relative;
    height: min(45px, 45 / var(--w) * 100vw);
    padding: 0 min(20px, 20 / var(--w) * 100vw) 0 min(55px, 55 / var(--w) * 100vw);
    border-radius: min(10px, 10 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/common/bg-btn.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    font-size: min(16px, 16 / var(--w) * 100vw);
    font-weight: bold;
    color: #142e40;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-head-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: min(15px, 15 / var(--w) * 100vw);
    margin: auto 0;
    width: min(30px, 30 / var(--w) * 100vw);
    height: min(30px, 30 / var(--w) * 100vw);
  }
  .c-head-btn:hover {
    opacity: 0.8;
  }
  .c-head-btn.is-contact::after {
    background-image: url("../images/common/icon-main.svg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .c-head-btn.is-tel::after {
    background-image: url("../images/common/icon-tel.svg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .area-footer {
    padding: min(60px, 60 / var(--w) * 100vw) 0;
    display: flex;
    flex-direction: column;
    gap: min(40px, 40 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .area-footer h1, .area-footer h2, .area-footer h3, .area-footer h4, .area-footer h5, .area-footer h6 {
    margin: 0;
    padding: 0;
  }
  .area-footer p {
    margin: 0;
  }
  .area-footer ol, .area-footer ul, .area-footer li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .area-footer a {
    text-decoration: none;
    color: inherit;
  }
  .area-footer ._logo {
    width: min(260px, 260 / var(--w) * 100vw);
  }
  .area-footer ._texts {
    display: flex;
    flex-direction: column;
    gap: min(20px, 20 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .area-footer ._name {
    font-size: min(16px, 16 / var(--w) * 100vw);
    line-height: 1;
    color: #142e40;
  }
  .area-footer ._spec {
    font-size: min(14px, 14 / var(--w) * 100vw);
    line-height: 1;
    color: #142e40;
  }
  .c-hover {
    display: inline-block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-hover:hover {
    opacity: 0.8;
  }
  .p-top-wrap h1, .p-top-wrap h2, .p-top-wrap h3, .p-top-wrap h4, .p-top-wrap h5, .p-top-wrap h6 {
    margin: 0;
    padding: 0;
  }
  .p-top-wrap p {
    margin: 0;
  }
  .p-top-main {
    position: relative;
    height: calc(800 / var(--w) * 100vw);
    background-image: url("../images/top/main/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-main ._t1 {
    position: absolute;
    top: calc(55 / var(--w) * 100vw);
    left: calc(126 / var(--w) * 100vw);
    width: calc(620 / var(--w) * 100vw);
  }
  .p-top-main ._t2 {
    position: absolute;
    top: calc(300 / var(--w) * 100vw);
    left: calc(112 / var(--w) * 100vw);
    width: calc(515 / var(--w) * 100vw);
  }
  .p-top-main ._texts {
    position: absolute;
    top: calc(400 / var(--w) * 100vw);
    left: calc(132 / var(--w) * 100vw);
  }
  .p-top-main ._t3 {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(24 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-main ._t4 {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(16 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-main ._sub {
    margin-top: calc(15 / var(--w) * 100vw);
    font-size: calc(12 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-main ._btn {
    margin-top: calc(20 / var(--w) * 100vw);
  }
  .p-top-main ._card {
    position: absolute;
    right: 0;
    bottom: calc(-100 / var(--w) * 100vw);
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-btn-contact {
    position: relative;
    height: calc(60 / var(--w) * 100vw);
    padding: 0 calc(20 / var(--w) * 100vw) 0 calc(55 / var(--w) * 100vw);
    border-radius: calc(10 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(360 / var(--w) * 100vw);
    text-decoration: none;
    background-image: url("../images/common/bg-btn.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    font-size: calc(24 / var(--w) * 100vw);
    font-weight: bold;
    color: #142e40;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-btn-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(15 / var(--w) * 100vw);
    margin: auto 0;
    width: calc(50 / var(--w) * 100vw);
    height: calc(50 / var(--w) * 100vw);
    background-image: url("../images/common/icon-main.svg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .c-btn-contact:hover {
    opacity: 0.8;
  }
  .p-top-main-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(20 / var(--w) * 100vw);
    width: calc(1200 / var(--w) * 100vw);
  }
  .p-top-main-card {
    position: relative;
    display: flex;
    gap: calc(15 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    box-shadow: 0 calc(6 / var(--w) * 100vw) calc(12 / var(--w) * 100vw) rgba(0, 0, 0, 0.12);
    height: calc(140 / var(--w) * 100vw);
    z-index: 10;
    background-image: url("../images/common/bg-btn2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-main-card ._ti {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 2;
    color: #fff;
    background: #D30F1A;
    padding: 0 calc(10 / var(--w) * 100vw);
  }
  .p-top-main-card ._num {
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
  }
  .p-top-main-card ._num b {
    font-size: calc(70 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
  }
  /* -------------------------------------------------- */
  .p-top-2027 {
    position: relative;
    padding: calc(230 / var(--w) * 100vw) 0 calc(100 / var(--w) * 100vw) 0;
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-2027 ._inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-left: calc(300 / var(--w) * 100vw);
    text-align: center;
  }
  .p-top-2027 ._bg-text {
    width: calc(400 / var(--w) * 100vw);
    position: absolute;
    top: calc(-110 / var(--w) * 100vw);
  }
  .p-top-2027 h2 {
    position: relative;
    font-size: calc(40 / var(--w) * 100vw);
    font-weight: bold;
  }
  .p-top-2027 ._t1 {
    position: relative;
    margin-top: calc(40 / var(--w) * 100vw);
    font-size: calc(24 / var(--w) * 100vw);
    line-height: 1.8;
    font-weight: bold;
  }
  .p-top-2027 ._t2 {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(24 / var(--w) * 100vw);
    line-height: 1.8;
    font-weight: bold;
    color: #fff;
    background: #D30F1A;
    padding: 0 calc(10 / var(--w) * 100vw);
  }
  .p-top-2027 ._t3 {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(24 / var(--w) * 100vw);
    line-height: 1.8;
    font-weight: bold;
  }
  .p-top-2027 ._t3 b {
    background: #D30F1A;
    padding: 0 calc(10 / var(--w) * 100vw);
    color: #fff;
    margin: 0 calc(5 / var(--w) * 100vw);
  }
  .p-top-2027 ._t3 b._bk {
    background: #000;
  }
  .p-top-2027 ._image {
    position: absolute;
    top: calc(180 / var(--w) * 100vw);
    width: calc(480 / var(--w) * 100vw);
  }
  /* -------------------------------------------------- */
  .p-top-now {
    padding: min(90px, 90 / var(--w) * 100vw) 0 min(70px, 70 / var(--w) * 100vw) 0;
  }
  .p-top-now ._inner {
    width: min(960px, 960 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-now ._cards {
    margin-top: min(60px, 60 / var(--w) * 100vw);
  }
  .p-top-now p._note {
    margin-top: min(20px, 20 / var(--w) * 100vw);
    font-size: min(14px, 14 / var(--w) * 100vw);
  }
  .p-top-title {
    text-align: center;
  }
  .p-top-title h2 {
    font-size: min(40px, 40 / var(--w) * 100vw);
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .p-top-title h2::after {
    content: "";
    display: block;
    margin: min(20px, 20 / var(--w) * 100vw) auto min(30px, 30 / var(--w) * 100vw) auto;
    width: min(200px, 200 / var(--w) * 100vw);
    height: min(20px, 20 / var(--w) * 100vw);
    background-image: url("../images/common/icon-bar.svg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-title ._lead {
    font-size: min(16px, 16 / var(--w) * 100vw);
  }
  .p-top-title.is-wh {
    color: #fff;
  }
  .p-top-title.is-wh h2::after {
    background-image: url("../images/common/icon-bar-wh.svg?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-now-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(20px, 20 / var(--w) * 100vw);
  }
  .p-top-now-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: min(80px, 80 / var(--w) * 100vw);
    background-image: url("../images/common/bg-btn3.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-now-card p {
    font-size: min(25px, 25 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  /* -------------------------------------------------- */
  .p-top-merit {
    position: relative;
    padding: min(160px, 160 / var(--w) * 100vw) 0 min(160px, 160 / var(--w) * 100vw) 0;
    background-image: url("../images/common/bg2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-merit ._inner {
    margin-left: min(500px, 500 / var(--w) * 100vw);
  }
  .p-top-merit ._cards {
    width: min(560px, 560 / var(--w) * 100vw);
    margin: 0 auto;
    margin-top: min(40px, 40 / var(--w) * 100vw);
  }
  .p-top-merit ._image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(500px, 500 / var(--w) * 100vw);
    background-image: url("../images/top/merit/p1.jpg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-merit p._copy {
    margin-top: min(50px, 50 / var(--w) * 100vw);
    text-align: center;
    font-size: min(32px, 32 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-merit-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: min(10px, 10 / var(--w) * 100vw);
  }
  .p-top-merit-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: min(80px, 80 / var(--w) * 100vw);
    background-image: url("../images/common/bg-btn2.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-merit-card p {
    font-size: min(25px, 25 / var(--w) * 100vw);
    font-weight: bold;
    color: #142E40;
  }
  /* -------------------------------------------------- */
  .p-top-worries {
    padding: min(100px, 100 / var(--w) * 100vw) 0 min(100px, 100 / var(--w) * 100vw) 0;
    background-image: url("../images/common/bg3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-worries ._inner {
    width: min(960px, 960 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-worries ._cards {
    width: min(750px, 750 / var(--w) * 100vw);
    margin: 0 auto;
    margin-top: min(60px, 60 / var(--w) * 100vw);
  }
  .p-top-worries p._copy {
    margin-top: min(40px, 40 / var(--w) * 100vw);
    text-align: center;
  }
  .p-top-worries p._copy span {
    display: inline-block;
    font-size: min(32px, 32 / var(--w) * 100vw);
    font-weight: bold;
    text-align: center;
    border-bottom: min(2px, 2 / var(--w) * 100vw) solid #142E40;
  }
  .p-top-worries-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: min(10px, 10 / var(--w) * 100vw);
  }
  .p-top-worries-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: min(80px, 80 / var(--w) * 100vw);
    background-image: url("../images/common/bg-btn3.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-worries-card p {
    font-size: min(25px, 25 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  /* -------------------------------------------------- */
  .p-top-reason {
    padding: min(100px, 100 / var(--w) * 100vw) 0 min(100px, 100 / var(--w) * 100vw) 0;
  }
  .p-top-reason ._inner {
    width: min(1200px, 1200 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-reason ._cards {
    margin-top: min(60px, 60 / var(--w) * 100vw);
  }
  .p-top-reason-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: min(20px, 20 / var(--w) * 100vw);
  }
  .p-top-reason-cards a {
    text-decoration: none;
    color: inherit;
  }
  .p-top-reason-card {
    position: relative;
    box-shadow: 0 min(6px, 6 / var(--w) * 100vw) min(12px, 12 / var(--w) * 100vw) rgba(0, 0, 0, 0.12);
  }
  .p-top-reason-card ._card-texts {
    padding: min(25px, 25 / var(--w) * 100vw);
    text-align: center;
  }
  .p-top-reason-card ._name {
    font-size: min(18px, 18 / var(--w) * 100vw);
    font-weight: bold;
  }
  .p-top-reason-card ._doc {
    font-size: min(14px, 14 / var(--w) * 100vw);
  }
  /* -------------------------------------------------- */
  .p-top-area {
    padding: min(100px, 100 / var(--w) * 100vw) 0 min(60px, 60 / var(--w) * 100vw) 0;
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-area ._inner {
    width: min(960px, 960 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-area ._cards {
    margin-top: min(60px, 60 / var(--w) * 100vw);
  }
  .p-top-area-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(20px, 20 / var(--w) * 100vw);
  }
  .p-top-area-cards a {
    text-decoration: none;
    color: inherit;
  }
  .p-top-area-card {
    position: relative;
  }
  .p-top-area-card ._card-texts {
    padding: min(15px, 15 / var(--w) * 100vw);
    text-align: center;
    background-image: url("../images/common/bg-btn3.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-area-card ._name {
    font-size: min(25px, 25 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  /* -------------------------------------------------- */
  .p-top-effect {
    padding: min(100px, 100 / var(--w) * 100vw) 0 min(140px, 140 / var(--w) * 100vw) 0;
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-effect ._inner {
    width: min(750px, 750 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-effect ._cards {
    margin-top: min(60px, 60 / var(--w) * 100vw);
  }
  .p-top-effect-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: min(20px, 20 / var(--w) * 100vw);
  }
  .p-top-effect-cards a {
    text-decoration: none;
    color: inherit;
  }
  .p-top-effect-card {
    position: relative;
    box-shadow: 0 min(6px, 6 / var(--w) * 100vw) min(12px, 12 / var(--w) * 100vw) rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 0;
  }
  .p-top-effect-card ._card-image {
    width: min(220px, 220 / var(--w) * 100vw);
  }
  .p-top-effect-card ._card-texts {
    flex: 1;
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-top-effect-card ._name {
    font-size: min(25px, 25 / var(--w) * 100vw);
    font-weight: bold;
  }
  /* -------------------------------------------------- */
  .p-top-flow {
    padding: min(170px, 170 / var(--w) * 100vw) 0 min(70px, 70 / var(--w) * 100vw) 0;
  }
  .p-top-flow ._inner {
    width: min(1040px, 1040 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-flow ._image {
    margin-top: min(70px, 70 / var(--w) * 100vw);
  }
  /* -------------------------------------------------- */
  .p-top-faq {
    padding: min(70px, 70 / var(--w) * 100vw) 0 min(120px, 120 / var(--w) * 100vw) 0;
  }
  .p-top-faq ._inner {
    width: min(740px, 740 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-faq ._faq {
    margin-top: min(60px, 60 / var(--w) * 100vw);
  }
  .c-toggle-top-faq-items {
    display: flex;
    flex-direction: column;
    gap: min(20px, 20 / var(--w) * 100vw);
  }
  .c-toggle-top-faq {
    background-image: url("../images/common/bg-btn2.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .c-toggle-top-faq ._head {
    position: relative;
    padding: min(20px, 20 / var(--w) * 100vw) min(80px, 80 / var(--w) * 100vw) min(5px, 5 / var(--w) * 100vw) min(80px, 80 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._head::before {
    content: "Q";
    font-size: min(20px, 20 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    color: #D30F1A;
    position: absolute;
    top: min(25px, 25 / var(--w) * 100vw);
    bottom: 0;
    left: min(50px, 50 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._head p {
    font-size: min(19px, 19 / var(--w) * 100vw);
    font-weight: bold;
  }
  .c-toggle-top-faq ._body {
    position: relative;
    padding: min(5px, 5 / var(--w) * 100vw) min(20px, 20 / var(--w) * 100vw) min(20px, 20 / var(--w) * 100vw) min(80px, 80 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._body::before {
    content: "A";
    font-size: min(20px, 20 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    position: absolute;
    top: min(5px, 5 / var(--w) * 100vw);
    bottom: 0;
    left: min(50px, 50 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._body p {
    font-size: min(14px, 14 / var(--w) * 100vw);
    color: #142e40;
  }
  .p-top-simulation {
    padding: min(120px, 120 / var(--w) * 100vw) 0;
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-simulation ._inner {
    width: min(960px, 960 / var(--w) * 100vw);
    margin: 0 auto;
  }
  .p-top-simulation ._subttl {
    margin-top: min(20px, 20 / var(--w) * 100vw);
    font-size: min(24px, 24 / var(--w) * 100vw);
    font-weight: bold;
    color: #1a2e40;
    text-align: center;
  }
  .p-top-simulation ._cards {
    margin-top: min(20px, 20 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: min(40px, 40 / var(--w) * 100vw);
  }
  .p-top-simulation ._notes {
    margin-top: min(30px, 30 / var(--w) * 100vw);
  }
  .p-top-simulation ._notes p {
    font-size: min(11px, 11 / var(--w) * 100vw);
    line-height: 1.8;
    color: #666;
  }
  .p-top-simulation ._banner {
    margin-top: min(40px, 40 / var(--w) * 100vw);
    text-align: center;
  }
  .p-top-simulation ._banner img {
    max-width: 100%;
  }
  .p-top-sim-card {
    border-radius: min(8px, 8 / var(--w) * 100vw);
    background: #fff;
    box-shadow: 0 min(4px, 4 / var(--w) * 100vw) min(12px, 12 / var(--w) * 100vw) rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .p-top-sim-card p {
    margin: 0;
  }
  .p-top-sim-card ._head {
    padding: min(16px, 16 / var(--w) * 100vw) min(20px, 20 / var(--w) * 100vw);
    font-size: min(24px, 24 / var(--w) * 100vw);
    font-weight: bold;
    background: #1a2e40;
    color: #fff;
    text-align: center;
    background-image: url("../images/common/bg2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-sim-card ._cols {
    display: flex;
  }
  .p-top-sim-card ._col {
    border-right: min(1px, 1 / var(--w) * 100vw) solid #e0e0e0;
    flex: 1;
    padding: min(20px, 20 / var(--w) * 100vw) min(10px, 10 / var(--w) * 100vw);
  }
  .p-top-sim-card ._col:last-child {
    border-right: none;
  }
  .p-top-sim-card ._label {
    font-size: min(24px, 24 / var(--w) * 100vw);
    font-weight: bold;
    display: flex;
    gap: min(10px, 10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-top-sim-card ._label::before {
    content: "";
    display: block;
    width: min(50px, 50 / var(--w) * 100vw);
    height: min(50px, 50 / var(--w) * 100vw);
    background: #1a2e40;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='43.689' height='52.259' viewBox='0 0 43.689 52.259'%3E %3Cpath id='Path_2188' data-name='Path 2188' d='M25.73,27.365H7L35.1,41.413V32.048h18.73L25.73,18Z' transform='translate(-19.088 37.614) rotate(-60)'/%3E %3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-top-sim-card ._label.is-2::before {
    mask-image: url("data:image/svg+xml,%3Csvg id='wb-sunny-outlinedmax(-24px, calc(-24 / var(--w) * 100vw))' xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E %3Cpath id='Path_2189' data-name='Path 2189' d='M0,0H38V38H0Z' fill='none'/%3E %3Cpath id='Path_2190' data-name='Path 2190' d='M10.12,7.343,7.27,4.508,5.038,6.741,7.872,9.575ZM1,16.3H5.75v3.167H1ZM16.833.55H20V5.221H16.833ZM29.563,4.5l2.229,2.228L28.959,9.562,26.731,7.333Zm-2.85,23.932,2.834,2.85L31.78,29.05l-2.85-2.834ZM31.083,16.3h4.75v3.167h-4.75ZM18.417,8.388a9.5,9.5,0,1,0,9.5,9.5A9.508,9.508,0,0,0,18.417,8.388Zm0,15.833a6.333,6.333,0,1,1,6.333-6.333A6.332,6.332,0,0,1,18.417,24.221Zm-1.583,6.333H20v4.671H16.833Zm-11.8-1.52L7.27,31.267l2.834-2.85L7.872,26.184Z' transform='translate(0.583 0.321)'/%3E %3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-top-sim-card ._label.is-3::before {
    mask-image: url("data:image/svg+xml,%3Csvg id='download-sharpmax(-24px, calc(-24 / var(--w) * 100vw))' xmlns='http://www.w3.org/2000/svg' width='46.185' height='46.185' viewBox='0 0 46.185 46.185'%3E %3Cpath id='Path_2184' data-name='Path 2184' d='M0,0H46.185V46.185H0Z' fill='none'/%3E %3Cpath id='Path_2185' data-name='Path 2185' d='M31.941,14.546h-7.7V3H12.7V14.546H5L18.471,28.017ZM5,31.866v3.849H31.941V31.866Z' transform='translate(4.622 2.773)'/%3E %3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-top-sim-card ._value {
    font-size: min(18px, 18 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    color: #333;
    display: flex;
    gap: min(10px, 10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-top-sim-card ._value b {
    font-size: min(70px, 70 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
  }
  .p-top-sim-card ._value b._saving-num {
    color: #FF0000;
  }
  /* -------------------------------------------------- */
  .c-cta-btns {
    position: relative;
  }
  .c-cta-btns ._tel {
    position: absolute;
    top: calc(55 / var(--w) * 100vw);
    left: calc(942 / var(--w) * 100vw);
    width: calc(360 / var(--w) * 100vw);
  }
  .c-cta-btns ._mail {
    position: absolute;
    top: calc(178 / var(--w) * 100vw);
    left: calc(933 / var(--w) * 100vw);
    width: calc(380 / var(--w) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  :root {
    --w: var(--w-sp) ;
  }
  .u-pc {
    display: none;
  }
  .l-wrapper {
    overflow: clip;
  }
  .l-header-wrap {
    height: calc(50 / var(--w) * 100vw);
    position: relative;
  }
  .l-header {
    background: #fff;
    position: fixed;
    top: 0;
    right: calc(10 / var(--w) * 100vw);
    left: calc(10 / var(--w) * 100vw);
    height: calc(50 / var(--w) * 100vw);
    z-index: 100;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
  }
  .l-header h1, .l-header h2, .l-header h3, .l-header h4, .l-header h5, .l-header h6 {
    margin: 0;
    padding: 0;
  }
  .l-header p {
    margin: 0;
  }
  .l-header ol, .l-header ul, .l-header li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-header a {
    text-decoration: none;
    color: inherit;
  }
  .c-head-logo {
    display: block;
    width: calc(130 / var(--w) * 100vw);
  }
  .c-head-btn {
    position: relative;
    height: calc(35 / var(--w) * 100vw);
    padding: 0 calc(10 / var(--w) * 100vw) 0 calc(35 / var(--w) * 100vw);
    border-radius: calc(10 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/common/bg-btn.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    font-size: calc(13 / var(--w) * 100vw);
    font-weight: bold;
    color: #142e40;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-head-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(10 / var(--w) * 100vw);
    margin: auto 0;
    width: calc(20 / var(--w) * 100vw);
    height: calc(20 / var(--w) * 100vw);
  }
  .c-head-btn:hover {
    opacity: 0.8;
  }
  .c-head-btn.is-contact::after {
    background-image: url("../images/common/icon-main.svg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .c-head-btn.is-tel {
    display: none;
  }
  .area-footer {
    padding: calc(60 / var(--w) * 100vw) 0;
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .area-footer h1, .area-footer h2, .area-footer h3, .area-footer h4, .area-footer h5, .area-footer h6 {
    margin: 0;
    padding: 0;
  }
  .area-footer p {
    margin: 0;
  }
  .area-footer ol, .area-footer ul, .area-footer li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .area-footer a {
    text-decoration: none;
    color: inherit;
  }
  .area-footer ._logo {
    width: calc(260 / var(--w) * 100vw);
  }
  .area-footer ._texts {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .area-footer ._name {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 1;
    color: #142e40;
  }
  .area-footer ._spec {
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 1;
    color: #142e40;
  }
  .p-top-wrap h1, .p-top-wrap h2, .p-top-wrap h3, .p-top-wrap h4, .p-top-wrap h5, .p-top-wrap h6 {
    margin: 0;
    padding: 0;
  }
  .p-top-wrap p {
    margin: 0;
  }
  .p-top-main {
    position: relative;
    height: calc(580 / var(--w) * 100vw);
    background-image: url("../images/top/main/sp/bg.jpg?");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-main ._t1 {
    position: absolute;
    top: calc(10 / var(--w) * 100vw);
    left: calc(20 / var(--w) * 100vw);
    width: calc(310 / var(--w) * 100vw);
  }
  .p-top-main ._t2 {
    position: absolute;
    top: calc(125 / var(--w) * 100vw);
    left: calc(12 / var(--w) * 100vw);
    width: calc(250 / var(--w) * 100vw);
  }
  .p-top-main ._texts {
    position: absolute;
    top: calc(160 / var(--w) * 100vw);
    left: calc(20 / var(--w) * 100vw);
  }
  .p-top-main ._t3 {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(16 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-main ._t4 {
    margin-top: calc(10 / var(--w) * 100vw);
    font-size: calc(11 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-main ._sub {
    margin-top: calc(15 / var(--w) * 100vw);
    font-size: calc(10 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-main ._btn {
    margin-top: calc(20 / var(--w) * 100vw);
  }
  .p-top-main ._card {
    position: absolute;
    right: 0;
    bottom: calc(-15 / var(--w) * 100vw);
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-btn-contact {
    position: relative;
    height: calc(50 / var(--w) * 100vw);
    padding: 0 calc(20 / var(--w) * 100vw) 0 calc(55 / var(--w) * 100vw);
    border-radius: calc(10 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(300 / var(--w) * 100vw);
    text-decoration: none;
    background-image: url("../images/common/bg-btn.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    font-size: calc(20 / var(--w) * 100vw);
    font-weight: bold;
    color: #142e40;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-btn-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(15 / var(--w) * 100vw);
    margin: auto 0;
    width: calc(30 / var(--w) * 100vw);
    height: calc(30 / var(--w) * 100vw);
    background-image: url("../images/common/icon-main.svg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .c-btn-contact:hover {
    opacity: 0.8;
  }
  .p-top-main-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(5 / var(--w) * 100vw);
    width: calc(360 / var(--w) * 100vw);
  }
  .p-top-main-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(5 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    box-shadow: 0 calc(6 / var(--w) * 100vw) calc(12 / var(--w) * 100vw) rgba(0, 0, 0, 0.12);
    z-index: 10;
    padding: 0 0 calc(10 / var(--w) * 100vw) 0;
    background-image: url("../images/common/bg-btn2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-main-card ._ti {
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 2;
    font-weight: bold;
    color: #fff;
    background: #D30F1A;
    padding: 0 calc(5 / var(--w) * 100vw);
  }
  .p-top-main-card ._num {
    font-size: calc(12 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
  }
  .p-top-main-card ._num b {
    font-size: calc(23 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
  }
  /* -------------------------------------------------- */
  .p-top-2027 {
    position: relative;
    padding: calc(80 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-2027 ._inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
    margin-top: calc(40 / var(--w) * 100vw);
  }
  .p-top-2027 ._bg-text {
    display: none;
  }
  .p-top-2027 h2 {
    position: relative;
    font-size: calc(24 / var(--w) * 100vw);
    font-weight: bold;
  }
  .p-top-2027 ._t1 {
    position: relative;
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 1.8;
    font-weight: bold;
  }
  .p-top-2027 ._t2 {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 1.8;
    font-weight: bold;
    color: #fff;
    background: #D30F1A;
    padding: 0 calc(10 / var(--w) * 100vw);
  }
  .p-top-2027 ._t3 {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 1.8;
    font-weight: bold;
  }
  .p-top-2027 ._t3 b {
    background: #D30F1A;
    padding: 0 calc(10 / var(--w) * 100vw);
    color: #fff;
    margin: 0 calc(5 / var(--w) * 100vw);
  }
  .p-top-2027 ._t3 b._bk {
    background: #000;
  }
  /* -------------------------------------------------- */
  .p-top-now {
    padding: calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
  }
  .p-top-now ._cards {
    margin-top: calc(20 / var(--w) * 100vw);
  }
  .p-top-now p._note {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(12 / var(--w) * 100vw);
  }
  .p-top-title {
    text-align: center;
  }
  .p-top-title h2 {
    font-size: calc(24 / var(--w) * 100vw);
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .p-top-title h2::after {
    content: "";
    display: block;
    margin: calc(20 / var(--w) * 100vw) auto calc(30 / var(--w) * 100vw) auto;
    width: calc(120 / var(--w) * 100vw);
    height: calc(20 / var(--w) * 100vw);
    background-image: url("../images/common/icon-bar.svg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-title ._lead {
    font-size: calc(14 / var(--w) * 100vw);
  }
  .p-top-title.is-wh {
    color: #fff;
  }
  .p-top-title.is-wh h2::after {
    background-image: url("../images/common/icon-bar-wh.svg?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-now-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(2 / var(--w) * 100vw);
  }
  .p-top-now-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(60 / var(--w) * 100vw);
    background-image: url("../images/common/bg-btn3.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-now-card p {
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  /* -------------------------------------------------- */
  .p-top-merit {
    position: relative;
    padding: calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/common/bg2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-merit ._image {
    display: none;
    background-image: url("../images/top/merit/p1.jpg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-merit p._copy {
    margin-top: calc(50 / var(--w) * 100vw);
    text-align: center;
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  .p-top-merit-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(2 / var(--w) * 100vw);
  }
  .p-top-merit-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(60 / var(--w) * 100vw);
    background-image: url("../images/common/bg-btn2.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-merit-card p {
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    color: #142E40;
  }
  /* -------------------------------------------------- */
  .p-top-worries {
    padding: calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/common/bg3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-worries ._cards {
    margin-top: calc(40 / var(--w) * 100vw);
  }
  .p-top-worries p._copy {
    margin-top: calc(20 / var(--w) * 100vw);
    text-align: center;
  }
  .p-top-worries p._copy span {
    display: inline-block;
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    text-align: center;
    border-bottom: calc(2 / var(--w) * 100vw) solid #142E40;
  }
  .p-top-worries-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(2 / var(--w) * 100vw);
  }
  .p-top-worries-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(10 / var(--w) * 100vw);
    text-align: center;
    background-image: url("../images/common/bg-btn3.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-worries-card p {
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  /* -------------------------------------------------- */
  .p-top-reason {
    padding: calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
  }
  .p-top-reason ._cards {
    margin-top: calc(40 / var(--w) * 100vw);
  }
  .p-top-reason-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(10 / var(--w) * 100vw);
  }
  .p-top-reason-cards a {
    text-decoration: none;
    color: inherit;
  }
  .p-top-reason-card {
    position: relative;
    box-shadow: 0 calc(4 / var(--w) * 100vw) calc(8 / var(--w) * 100vw) rgba(0, 0, 0, 0.1);
  }
  .p-top-reason-card ._card-texts {
    padding: calc(25 / var(--w) * 100vw) calc(5 / var(--w) * 100vw);
    text-align: center;
  }
  .p-top-reason-card ._name {
    font-size: calc(16 / var(--w) * 100vw);
    font-weight: bold;
  }
  .p-top-reason-card ._doc {
    font-size: calc(12 / var(--w) * 100vw);
  }
  /* -------------------------------------------------- */
  .p-top-area {
    padding: calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-area ._cards {
    margin-top: calc(40 / var(--w) * 100vw);
  }
  .p-top-area-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(2 / var(--w) * 100vw);
  }
  .p-top-area-cards a {
    text-decoration: none;
    color: inherit;
  }
  .p-top-area-card {
    position: relative;
  }
  .p-top-area-card ._card-texts {
    padding: calc(7 / var(--w) * 100vw) 0 calc(10 / var(--w) * 100vw) 0;
    text-align: center;
    background-image: url("../images/common/bg-btn3.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-top-area-card ._name {
    font-size: calc(16 / var(--w) * 100vw);
    font-weight: bold;
    color: #fff;
  }
  /* -------------------------------------------------- */
  .p-top-effect {
    padding: calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-effect ._cards {
    margin-top: calc(40 / var(--w) * 100vw);
  }
  .p-top-effect-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(2 / var(--w) * 100vw);
  }
  .p-top-effect-cards a {
    text-decoration: none;
    color: inherit;
  }
  .p-top-effect-card {
    position: relative;
    box-shadow: 0 calc(6 / var(--w) * 100vw) calc(12 / var(--w) * 100vw) rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 0;
  }
  .p-top-effect-card ._card-image {
    width: calc(120 / var(--w) * 100vw);
  }
  .p-top-effect-card ._card-texts {
    flex: 1;
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-top-effect-card ._name {
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
  }
  /* -------------------------------------------------- */
  .p-top-flow {
    padding: calc(60 / var(--w) * 100vw) calc(60 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(60 / var(--w) * 100vw);
  }
  .p-top-flow ._image {
    margin-top: calc(40 / var(--w) * 100vw);
  }
  /* -------------------------------------------------- */
  .p-top-faq {
    padding: calc(60 / var(--w) * 100vw) 0 calc(60 / var(--w) * 100vw) 0;
  }
  .p-top-faq ._faq {
    margin-top: calc(40 / var(--w) * 100vw);
  }
  .c-toggle-top-faq-items {
    display: flex;
    flex-direction: column;
    gap: calc(5 / var(--w) * 100vw);
  }
  .c-toggle-top-faq {
    background-image: url("../images/common/bg-btn2.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .c-toggle-top-faq ._head {
    position: relative;
    padding: calc(20 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(5 / var(--w) * 100vw) calc(50 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._head::before {
    content: "Q";
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    color: #D30F1A;
    position: absolute;
    top: calc(20 / var(--w) * 100vw);
    bottom: 0;
    left: calc(20 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._head p {
    font-size: calc(14 / var(--w) * 100vw);
    font-weight: bold;
  }
  .c-toggle-top-faq ._body {
    position: relative;
    padding: calc(5 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(50 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._body::before {
    content: "A";
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    position: absolute;
    top: calc(5 / var(--w) * 100vw);
    bottom: 0;
    left: calc(20 / var(--w) * 100vw);
  }
  .c-toggle-top-faq ._body p {
    font-size: calc(14 / var(--w) * 100vw);
    color: #142e40;
  }
  /* -------------------------------------------------- */
  .c-cta-btns {
    position: relative;
  }
  .c-cta-btns ._tel {
    position: absolute;
    top: calc(370 / var(--w) * 100vw);
    left: calc(30 / var(--w) * 100vw);
    width: calc(320 / var(--w) * 100vw);
  }
  .c-cta-btns ._mail {
    position: absolute;
    top: calc(475 / var(--w) * 100vw);
    left: calc(21 / var(--w) * 100vw);
    width: calc(337 / var(--w) * 100vw);
  }
  .p-top-simulation {
    padding: calc(40 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/common/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-simulation ._subttl {
    margin-top: calc(20 / var(--w) * 100vw);
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    color: #1a2e40;
    text-align: center;
  }
  .p-top-simulation ._cards {
    margin-top: calc(20 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--w) * 100vw);
  }
  .p-top-simulation ._notes {
    margin-top: calc(30 / var(--w) * 100vw);
  }
  .p-top-simulation ._notes p {
    font-size: calc(11 / var(--w) * 100vw);
    line-height: 1.8;
    color: #666;
  }
  .p-top-simulation ._banner {
    margin-top: calc(40 / var(--w) * 100vw);
    text-align: center;
  }
  .p-top-simulation ._banner img {
    max-width: 100%;
  }
  .p-top-sim-card {
    border-radius: calc(8 / var(--w) * 100vw);
    background: #fff;
    box-shadow: 0 calc(4 / var(--w) * 100vw) calc(12 / var(--w) * 100vw) rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .p-top-sim-card p {
    margin: 0;
  }
  .p-top-sim-card ._head {
    padding: calc(16 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    background: #1a2e40;
    color: #fff;
    text-align: center;
    background-image: url("../images/common/bg2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-top-sim-card ._cols {
    display: flex;
    flex-direction: column;
  }
  .p-top-sim-card ._col {
    border-bottom: calc(1 / var(--w) * 100vw) solid #e0e0e0;
    flex: 1;
    padding: calc(20 / var(--w) * 100vw) calc(10 / var(--w) * 100vw);
  }
  .p-top-sim-card ._col:last-child {
    border-bottom: none;
  }
  .p-top-sim-card ._label {
    font-size: calc(18 / var(--w) * 100vw);
    font-weight: bold;
    display: flex;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-top-sim-card ._label::before {
    content: "";
    display: block;
    width: calc(30 / var(--w) * 100vw);
    height: calc(30 / var(--w) * 100vw);
    background: #1a2e40;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='43.689' height='52.259' viewBox='0 0 43.689 52.259'%3E %3Cpath id='Path_2188' data-name='Path 2188' d='M25.73,27.365H7L35.1,41.413V32.048h18.73L25.73,18Z' transform='translate(-19.088 37.614) rotate(-60)'/%3E %3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-top-sim-card ._label.is-2::before {
    mask-image: url("data:image/svg+xml,%3Csvg id='wb-sunny-outlinedcalc(-24 / var(--w) * 100vw)' xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E %3Cpath id='Path_2189' data-name='Path 2189' d='M0,0H38V38H0Z' fill='none'/%3E %3Cpath id='Path_2190' data-name='Path 2190' d='M10.12,7.343,7.27,4.508,5.038,6.741,7.872,9.575ZM1,16.3H5.75v3.167H1ZM16.833.55H20V5.221H16.833ZM29.563,4.5l2.229,2.228L28.959,9.562,26.731,7.333Zm-2.85,23.932,2.834,2.85L31.78,29.05l-2.85-2.834ZM31.083,16.3h4.75v3.167h-4.75ZM18.417,8.388a9.5,9.5,0,1,0,9.5,9.5A9.508,9.508,0,0,0,18.417,8.388Zm0,15.833a6.333,6.333,0,1,1,6.333-6.333A6.332,6.332,0,0,1,18.417,24.221Zm-1.583,6.333H20v4.671H16.833Zm-11.8-1.52L7.27,31.267l2.834-2.85L7.872,26.184Z' transform='translate(0.583 0.321)'/%3E %3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-top-sim-card ._label.is-3::before {
    mask-image: url("data:image/svg+xml,%3Csvg id='download-sharpcalc(-24 / var(--w) * 100vw)' xmlns='http://www.w3.org/2000/svg' width='46.185' height='46.185' viewBox='0 0 46.185 46.185'%3E %3Cpath id='Path_2184' data-name='Path 2184' d='M0,0H46.185V46.185H0Z' fill='none'/%3E %3Cpath id='Path_2185' data-name='Path 2185' d='M31.941,14.546h-7.7V3H12.7V14.546H5L18.471,28.017ZM5,31.866v3.849H31.941V31.866Z' transform='translate(4.622 2.773)'/%3E %3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-top-sim-card ._value {
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    color: #333;
    display: flex;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-top-sim-card ._value b {
    font-size: calc(50 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
  }
  .p-top-sim-card ._value b._saving-num {
    color: #FF0000;
  }
}