@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, main, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

:root {
  --color-txt-primary: #333;
  --color-site-orange: #FF7900;
  --color-site-beige: #FFD7B3;
  --color-site-green01: #B9D66D;
  --color-site-green02: #649504;
  --color-site-green03: #B9D66D1A;
  --color-site-green04: #F8FBF0;
  --color-site-green05: #2ECD29;
  --color-site-green06: #036916;
  --color-site-aqua01: #2599DE;
  --color-site-aqua02: #E9F1FC;
  --color-site-aqua03: #E9F5FC;
  --color-site-aqua04: #F4FBFF;
  --color-site-green: #11C60D;
  --color-site-blue: #2538DE;
  --color-site-gray01: #727171;
  --color-site-gray02: #EFEFEF;
  --color-site-gray03: #D9D9D9;
  --color-site-gray04: #979797;
  --color-site-error: #DE5D50;
}

::selection {
  color: #fff;
  background-color: var(--color-site-aqua01);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--color-txt-primary);
  background-color: var(--color-site-primary);
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
}
@media print, screen and (width > 768px) {
  body {
    padding-top: 77px;
  }
  body * {
    scroll-margin-top: 66px;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

@media only screen and (width <= 768px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (width > 768px) {
  .u-use--sp {
    display: none !important;
  }
}

.l-header {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 500;
}
@media print, screen and (width > 768px) {
  .l-header {
    width: 100%;
    height: 66px;
    background-color: #fff;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
    top: 0;
    right: 0;
  }
}

.l-footer {
  position: sticky;
  top: 100vh;
  background-color: var(--color-site-green02);
  padding: 60px 20px;
}
@media print, screen and (width > 768px) {
  .l-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.c-hd {
  width: fit-content;
  margin: 0 auto 24px;
  padding-bottom: 16px;
  text-align: center;
  border-bottom: 4px solid var(--color-site-green02);
  font-size: 24px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .c-hd {
    margin-bottom: 40px;
    font-size: 32px;
  }
}

.c-talk {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 0;
}
@media print, screen and (width > 768px) {
  .c-talk {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
@media print, screen and (width > 768px) {
  .c-talk__inner {
    text-align: center;
  }
}
.c-talk__how {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(22.222vw, 200px);
  padding: 10px;
  border-radius: 100px;
  font-size: clamp(10px, 1.25vw, 15px);
  font-weight: 600;
  line-height: 1;
}
.c-talk__how::before {
  content: "";
  width: 20px;
}
@media only screen and (width <= 768px) {
  .c-talk__how {
    display: none;
  }
}
.c-talk__item {
  width: 100%;
  padding: 12px 0;
  border: 1px solid;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  gap: 12px;
}
@media print, screen and (width > 768px) {
  .c-talk__item {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: min(1.66vw, 20px) 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}
@media only screen and (width <= 768px) {
  .c-talk__item::before {
    width: 40px;
    content: "";
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-position: center;
  }
}
.c-talk__item--phone {
  border-color: var(--color-site-orange);
  background-color: var(--color-site-orange);
}
.c-talk__item--phone .c-talk__how {
  color: var(--color-site-orange);
  background-color: #fff;
}
.c-talk__item--phone .c-talk__how::before {
  height: min(1.66vw, 20px);
  background: url(../images/icon_phone.svg) no-repeat left top;
  background-size: min(1.66vw, 20px) min(1.66vw, 20px);
}
.c-talk__item--phone .c-talk__time {
  color: #fff;
}
@media print, screen and (width > 768px) {
  .c-talk__item--phone {
    width: 54.99%;
  }
}
@media only screen and (width <= 768px) {
  .c-talk__item--phone::before {
    height: 40px;
    -webkit-mask-image: url(../images/icon_phone.svg);
    -webkit-mask-size: 40px 40px;
    mask-image: url(../images/icon_phone.svg);
    mask-size: 40px 40px;
    background-color: #fff;
  }
}
.c-talk__item--web {
  border-color: var(--color-site-gray03);
  background-color: #fff;
}
.c-talk__item--web .c-talk__how {
  color: #fff;
  background-color: var(--color-site-green02);
}
.c-talk__item--web .c-talk__how::before {
  height: min(1.16vw, 14px);
  background: url(../images/icon_mail.svg) no-repeat left top;
  background-size: min(1.66vw, 20px) min(1.16vw, 14px);
}
.c-talk__item--web .c-talk__time {
  color: var(--color-site-green02);
}
@media print, screen and (width > 768px) {
  .c-talk__item--web {
    border-color: #fff;
    width: 41.838%;
  }
}
@media only screen and (width <= 768px) {
  .c-talk__item--web::before {
    height: 40px;
    -webkit-mask-image: url(../images/icon_mail.svg);
    -webkit-mask-size: 40px 28px;
    mask-image: url(../images/icon_mail.svg);
    mask-size: 40px 28px;
    background-color: var(--color-site-green02);
  }
}
.c-talk__tel {
  color: #fff !important;
  line-height: 1;
  font-size: 32px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .c-talk__tel {
    font-size: clamp(28px, 2.83vw, 34px);
    pointer-events: none;
  }
}
.c-talk__mail {
  color: var(--color-site-green02);
  line-height: 1.6;
  font-size: 20px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .c-talk__mail {
    font-size: clamp(13px, 1.666vw, 20px);
  }
}
.c-talk__time {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media print, screen and (width > 768px) {
  .c-talk__time {
    margin-top: 12px;
    font-size: clamp(10px, 1.25vw, 15px);
  }
}

.c-list {
  display: grid;
  gap: 8px;
}
@media print, screen and (width > 768px) {
  .c-list {
    gap: 12px;
  }
}
.c-list__item {
  padding-left: 16px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}
.c-list__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media print, screen and (width > 768px) {
  .c-list__item {
    padding-left: 18px;
    font-size: 18px;
  }
}

@media only screen and (width <= 768px) {
  .p-gnav.is_open .p-gnav__open {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .p-gnav.is_open .p-gnav__list {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
  }
}
.p-gnav__open, .p-gnav__close {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
}
@media print, screen and (width > 768px) {
  .p-gnav__open, .p-gnav__close {
    display: none;
  }
}
.p-gnav__open {
  width: 70px;
  height: 70px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 300;
}
.p-gnav__open__img {
  width: 100%;
}
.p-gnav__close {
  width: 21px;
  height: 18px;
  position: absolute;
  top: 17px;
  right: 20px;
}
.p-gnav__close__line {
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background-color: #595656;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.p-gnav__close__line:nth-child(1) {
  rotate: 138deg;
}
.p-gnav__close__line:nth-child(2) {
  rotate: -138deg;
}
.p-gnav__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 50px 16px 16px;
  gap: 8px;
}
@media only screen and (width <= 768px) {
  .p-gnav__list {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 400;
    background: rgba(233, 245, 252, 0.9);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
  }
}
@media print, screen and (width > 768px) {
  .p-gnav__list {
    padding-top: 16px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: min(2vw, 24px);
  }
}
.p-gnav__link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #222;
  text-decoration: none !important;
}
@media print, screen and (width > 768px) {
  .p-gnav__link {
    font-size: clamp(15px, 1.5vw, 18px);
    border-bottom: 1px solid #fff;
  }
  .p-gnav__link:hover {
    color: var(--color-site-orange);
    border-bottom-color: var(--color-site-orange);
  }
  body[data-current=about] .p-gnav__item:nth-of-type(1) .p-gnav__link {
    color: var(--color-site-orange);
    border-bottom-color: var(--color-site-orange);
  }
  body[data-current=solution] .p-gnav__item:nth-of-type(2) .p-gnav__link {
    color: var(--color-site-orange);
    border-bottom-color: var(--color-site-orange);
  }
  body[data-current=flow] .p-gnav__item:nth-of-type(3) .p-gnav__link {
    color: var(--color-site-orange);
    border-bottom-color: var(--color-site-orange);
  }
  body[data-current=faq] .p-gnav__item:nth-of-type(4) .p-gnav__link {
    color: var(--color-site-orange);
    border-bottom-color: var(--color-site-orange);
  }
  body[data-current=outline] .p-gnav__item:nth-of-type(5) .p-gnav__link {
    color: var(--color-site-orange);
    border-bottom-color: var(--color-site-orange);
  }
  body[data-current=contact] .p-gnav__item:nth-of-type(6) .p-gnav__link {
    color: var(--color-site-orange);
    border-bottom-color: var(--color-site-orange);
  }
}
@media print, screen and (width > 768px) {
  .p-gnav__txt {
    pointer-events: none;
  }
}

.p-section {
  padding: 60px 10px;
}
@media print, screen and (width > 768px) {
  .p-section {
    padding: 60px 0;
  }
}
@media only screen and (width <= 768px) {
  .p-section:not(.p-section--bg) + .p-section:not(.p-section--bg) {
    padding-top: 0;
  }
}
.p-section--bg {
  background-color: var(--color-site-green03);
}
@media only screen and (width <= 768px) {
  .p-section#outline, .p-section#contact {
    scroll-margin-top: 60px;
  }
}

.p-jumbotron {
  position: relative;
  overflow: hidden;
  height: 667px;
  padding-top: 64px;
  padding-bottom: 12px;
  background-color: var(--color-site-green01);
}
@media print, screen and (width > 768px) {
  .p-jumbotron {
    height: clamp(490px, 55vw, 660px);
    padding-top: min(5.38vw, 70px);
  }
}
.p-jumbotron::before, .p-jumbotron::after {
  content: "";
  position: absolute;
}
.p-jumbotron::before {
  width: 100%;
  height: 330px;
  background-color: #fff;
  top: -1px;
  left: 50%;
  z-index: 1;
  translate: -50% 0;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
@media print, screen and (width > 768px) {
  .p-jumbotron::before {
    width: max(100%, 1440px);
    height: 360px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
}
.p-jumbotron::after {
  width: min(100%, 375px);
  height: 440px;
  background: url(../images/bg_mv_sp.png) no-repeat center bottom;
  background-size: 100% auto;
  z-index: 2;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
}
@media print, screen and (width > 768px) {
  .p-jumbotron::after {
    width: min(110%, 1440px);
    height: 100%;
    background-image: url(../images/bg_mv_pc.png);
    background-position: left bottom;
    background-size: max(1200px, 100%) auto;
  }
}
.p-jumbotron__inner {
  width: 100%;
  margin: 0 auto 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 3;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__inner {
    max-width: 1146px;
  }
}
@media print, screen and (width > 768px) {
  .p-jumbotron__inner {
    padding-left: min(42.916vw, 515px);
    gap: 30px;
  }
}
@media only screen and (width <= 768px) {
  .p-jumbotron__inner {
    width: 335px;
    height: 100%;
  }
}
.p-jumbotron__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__title {
    font-size: min(4.1666vw, 58px);
  }
}
.p-jumbotron__lead {
  font-size: 16px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__lead {
    font-size: min(2.333vw, 28px);
    line-height: 1;
    color: #fff;
  }
}
.p-jumbotron__lead__inner {
  display: block;
}
.p-jumbotron__lead__inner:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (width <= 768px) {
  .p-jumbotron__lead__inner:not(:last-child) {
    margin-bottom: 5px;
  }
}
@media only screen and (width <= 768px) {
  .p-jumbotron .c-talk {
    margin-top: auto;
  }
}

.p-tab {
  width: 100%;
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-tab {
    max-width: 1200px;
  }
}
.p-tab__select {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: 24px;
  position: relative;
}
.p-tab__select::after {
  content: "";
  width: 11px;
  height: 8px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  pointer-events: none;
}
@media print, screen and (width > 768px) {
  .p-tab__select {
    display: none;
  }
}
.p-tab__select__inner {
  width: 100%;
  height: 100%;
  border: none;
  appearance: none;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.p-tab__select__inner[data-bg="0"] {
  background-color: var(--color-site-aqua01);
}
.p-tab__select__inner[data-bg="1"] {
  background-color: var(--color-site-green);
}
.p-tab__select__inner[data-bg="2"] {
  background-color: var(--color-site-blue);
}
.p-tab__select::-ms-expand {
  display: none;
}
.p-tab__list {
  height: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (width <= 768px) {
  .p-tab__list {
    scroll-margin-top: 20px;
  }
}
@media print, screen and (width > 768px) {
  .p-tab__list {
    height: 76px;
    gap: 2%;
  }
}
.p-tab__list__item {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
}
.p-tab__list__item:nth-child(1) {
  background-color: var(--color-site-green05);
}
.p-tab__list__item:nth-child(2) {
  background-color: var(--color-site-aqua01);
}
.p-tab__list__item:nth-child(3) {
  background-color: var(--color-site-green06);
}
@media print, screen and (width > 768px) {
  .p-tab__list__item {
    border-radius: 20px 20px 0 0;
    font-size: 28px;
  }
}
.p-tab__list__link {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  text-decoration: none !important;
  padding: 16px 0;
}
@media print, screen and (width > 768px) {
  .p-tab__list__link {
    padding: 24px 0;
  }
}
.p-tab__content {
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 10px;
}
.p-tab__item {
  height: fit-content;
  padding: 10px;
}
.p-tab__item--voluntary {
  background-color: var(--color-site-green05);
}
.p-tab__item--renewable {
  background-color: var(--color-site-aqua01);
}
.p-tab__item--bankruptcy {
  background-color: var(--color-site-green06);
}
@media print, screen and (width > 768px) {
  .p-tab__item {
    padding: 20px;
  }
}
@media only screen and (width <= 768px) {
  .p-tab__item {
    grid-column: 1/2;
    grid-row: 1/2;
    pointer-events: none;
    display: none;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .p-tab__item.is_current {
    display: block;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.4s;
  }
}

.p-about__head {
  width: 100%;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 100%;
  place-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
@media print, screen and (width > 768px) {
  .p-about__head {
    max-width: 964px;
  }
}
@media print, screen and (width > 768px) {
  .p-about__head {
    grid-template-columns: 1fr min(21%, 200px);
    margin-bottom: 40px;
  }
}
.p-about__lead {
  font-size: 20px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-about__lead {
    font-size: 32px;
  }
}
@media only screen and (width <= 768px) {
  .p-about__lead {
    text-align: center;
  }
}
.p-about__mv {
  width: 100%;
}
@media only screen and (width <= 768px) {
  .p-about__mv {
    width: 200px;
  }
}
.p-about__voluntary {
  color: var(--color-site-green05);
}
.p-about__renewable {
  color: var(--color-site-aqua01);
}
.p-about__bankruptcy {
  color: var(--color-site-green06);
}
@media print, screen and (width > 768px) {
  .p-about__body .p-tab__list {
    display: none;
  }
}
@media print, screen and (width > 768px) {
  .p-about__body .p-tab__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(2vw, 24px);
  }
}
@media print, screen and (width > 768px) {
  .p-about__body .p-tab__item {
    border: 0;
    padding: 0;
  }
}
.p-about__body .p-tab__content {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media print, screen and (width > 768px) {
  .p-about__body .p-tab__content {
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 0;
  }
}
.p-about__content {
  scroll-margin-top: 134px;
}
.p-about__content--voluntary .p-about__hd {
  color: var(--color-site-green05);
}
.p-about__content--voluntary .p-about__btn {
  background-color: var(--color-site-green05);
}
.p-about__content--renewable .p-about__hd {
  color: var(--color-site-aqua01);
}
.p-about__content--renewable .p-about__btn {
  background-color: var(--color-site-aqua01);
}
.p-about__content--bankruptcy .p-about__hd {
  color: var(--color-site-green06);
}
.p-about__content--bankruptcy .p-about__btn {
  background-color: var(--color-site-green06);
}
.p-about__hd {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (width > 768px) {
  .p-about__hd {
    font-size: 28px;
  }
}
.p-about__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 16px;
}
.p-about__img {
  width: 100%;
  margin-bottom: 16px;
}
.p-about__accordion {
  padding-bottom: 66px;
  position: relative;
}
.p-about__accordion[open] .p-about__accordion__txt::after {
  transition: rotate 0.3s;
  rotate: 0deg;
}
.p-about__accordion__txt {
  padding-right: 30px;
  position: relative;
}
.p-about__accordion__txt::before, .p-about__accordion__txt::after {
  content: "";
  width: 14px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.p-about__accordion__txt::after {
  rotate: 90deg;
}
.p-about__accordion__btn {
  display: block;
  width: 100%;
  padding: 16px 8px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  color: #fff;
  background-color: var(--color-site-orange);
  list-style: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media print, screen and (width > 768px) {
  .p-about__accordion__btn {
    transition: opacity 0.2s;
  }
  .p-about__accordion__btn:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.p-about__accordion__btn::-webkit-details-marker {
  display: none;
}
.p-about__btn {
  display: block;
  width: 100%;
  margin: 16px auto 0;
  padding: 16px 8px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .p-about__btn {
    transition: opacity 0.2s;
  }
  .p-about__btn:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}

.p-compare {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
.p-compare__hd {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.p-compare__hd--merit {
  color: var(--color-site-aqua01);
}
.p-compare__hd--demerit {
  color: var(--color-site-orange);
}
.p-consult {
  width: 100%;
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-consult {
    max-width: 1116px;
  }
}
.p-consult__list {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: 100%;
  gap: 8px;
}
@media print, screen and (width > 768px) {
  .p-consult__list {
    margin-bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.p-consult__item {
  padding: 23px 5px;
  text-align: center;
  border: 1px solid var(--color-site-aqua01);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-consult__item {
    padding: 32px 10px;
    font-size: min(1.61vw, 18px);
  }
}
.p-consult__strong {
  color: var(--color-site-orange);
}
.p-consult__bottom {
  display: grid;
  width: fit-content;
  margin: auto;
  grid-template-columns: 100%;
  gap: 16px 12px;
  place-items: center;
}
@media print, screen and (width > 768px) {
  .p-consult__bottom {
    grid-template-columns: 552px 200px;
  }
}
.p-consult__message {
  color: var(--color-site-green02);
  font-size: 24px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-consult__message {
    font-size: 32px;
  }
}
@media only screen and (width <= 768px) {
  .p-consult__message {
    text-align: center;
  }
}
.p-consult__img {
  width: 200px;
}
@media only screen and (width <= 768px) {
  .p-consult__img {
    grid-row: 1/2;
  }
}

.p-features {
  width: 100%;
  margin: 0 auto 0;
  display: grid;
  padding: 40px 10px;
  border-radius: 10px;
  background-color: var(--color-site-green03);
  grid-template-columns: 100%;
  gap: 20px;
}
@media print, screen and (width > 768px) {
  .p-features {
    max-width: 1200px;
  }
}
@media print, screen and (width > 768px) {
  .p-features {
    padding: 40px min(7.5vw, 90px);
    grid-template-columns: min(21.666vw, 260px) 1fr;
    place-items: center;
    gap: 5%;
  }
}
.p-features__list {
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
@media print, screen and (width > 768px) {
  .p-features__list {
    gap: min(2.666vw, 32px);
  }
}
.p-features__item {
  font-size: 15px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-features__item {
    font-size: min(2vw, 24px);
    line-height: 1;
  }
}
.p-features__img {
  width: 100%;
}
.p-features__illust {
  grid-row: 1/2;
}
@media only screen and (width <= 768px) {
  .p-features__illust {
    grid-row: 2/3;
    padding: 0 80px;
  }
}

@media print, screen and (width > 768px) {
  .p-solution {
    margin-top: 132px;
  }
}
.p-solution__section {
  position: relative;
  scroll-margin-top: 183px;
}
@media only screen and (width <= 768px) {
  .p-solution__section {
    scroll-margin-top: 30px;
  }
}
.p-solution__section--voluntary .p-solution__hd {
  background-color: var(--color-site-green05);
}
.p-solution__section--renewable .p-solution__hd {
  background-color: var(--color-site-aqua01);
}
.p-solution__section--bankruptcy .p-solution__hd {
  background-color: var(--color-site-green06);
}
.p-solution__hd {
  width: 384px;
  padding: 24px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 50%;
  top: -40px;
  translate: -50% -100%;
}
@media only screen and (width <= 768px) {
  .p-solution__hd {
    display: none;
  }
}
.p-solution__talk {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  grid-template-rows: repeat(2, auto);
  place-items: center;
  gap: 16px 25px;
  margin-bottom: 16px;
}
@media print, screen and (width > 768px) {
  .p-solution__talk {
    grid-template-columns: max(200px, 21.818%) 1fr max(200px, 21.818%);
    gap: 24px;
    margin-bottom: 32px;
  }
}
.p-solution__talk__people--client {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media print, screen and (width > 768px) {
  .p-solution__talk__people--client {
    grid-row: 1/3;
  }
}
.p-solution__talk__people--consultant {
  grid-column: 3/4;
  grid-row: 2/3;
}
@media print, screen and (width > 768px) {
  .p-solution__talk__people--consultant {
    grid-row: 1/3;
  }
}
.p-solution__talk__balloon {
  width: fit-content;
  display: grid;
  place-items: center start;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.p-solution__talk__balloon::before {
  width: 13px;
  height: 16px;
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media print, screen and (width > 768px) {
  .p-solution__talk__balloon {
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 500;
  }
}
.p-solution__talk__balloon--client {
  justify-self: start;
  grid-column: 2/4;
  grid-row: 1/2;
  background-color: var(--color-site-beige);
}
.p-solution__talk__balloon--client::before {
  background-color: var(--color-site-beige);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  left: -13px;
}
@media print, screen and (width > 768px) {
  .p-solution__talk__balloon--client {
    grid-column: 2/3;
    align-self: end;
  }
  .p-solution__talk__balloon--client::before {
    left: -10px;
  }
}
.p-solution__talk__balloon--consultant {
  justify-self: end;
  grid-column: 1/3;
  grid-row: 2/3;
  background-color: var(--color-site-green02);
  color: #fff;
}
.p-solution__talk__balloon--consultant::before {
  background-color: var(--color-site-green02);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -13px;
}
@media print, screen and (width > 768px) {
  .p-solution__talk__balloon--consultant {
    grid-column: 2/3;
    align-self: start;
  }
  .p-solution__talk__balloon--consultant::before {
    right: -10px;
  }
}
.p-solution__talk__img {
  width: 100%;
  height: auto;
}
.p-solution__detail {
  display: grid;
  gap: 18px;
  margin: 0 auto 16px;
  padding: 24px 10px;
  background-color: rgba(255, 121, 0, 0.1);
}
@media print, screen and (width > 768px) {
  .p-solution__detail {
    width: 90.9%;
    padding-right: 40px;
    padding-left: 40px;
    margin-bottom: 32px;
  }
}
.p-solution__detail__hd {
  padding-bottom: 5px;
  border-bottom: 1px solid;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-site-orange);
}
.p-solution__detail__lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-site-orange);
}
@media print, screen and (width > 768px) {
  .p-solution__detail__lead {
    font-size: 24px;
  }
}
.p-solution__detail__txt {
  font-size: 16px;
  font-weight: 500;
}
@media print, screen and (width > 768px) {
  .p-solution__detail__txt {
    font-size: 18px;
  }
}
.p-solution__example {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  margin: 0 auto;
}
.p-solution__example:not(:last-child) {
  margin-bottom: 24px;
}
@media print, screen and (width > 768px) {
  .p-solution__example {
    flex-direction: row;
  }
  .p-solution__example:not(:last-child) {
    margin-bottom: 80px;
  }
}
.p-solution__example__box {
  width: 100%;
  padding: 32px 7px 24px;
  background-color: #FFFFFF;
  border: 1px solid #F3F3F3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
@media print, screen and (width > 768px) {
  .p-solution__example__box {
    width: min(39.1vw, 430px);
    padding-top: 24px;
  }
}
.p-solution__example__label {
  width: fit-content;
  padding: 8px 24px;
  margin: 0 auto 16px;
  border: 1px solid;
  border-radius: 100px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-site-green02);
}
@media print, screen and (width > 768px) {
  .p-solution__example__label {
    margin-bottom: 24px;
  }
}
.p-solution__compare {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(10.666vw, 40px);
}
@media print, screen and (width > 768px) {
  .p-solution__compare {
    gap: 60px;
  }
}
.p-solution__compare__before, .p-solution__compare__after {
  width: calc(50% - min(5.333vw, 20px));
  text-align: center;
}
@media print, screen and (width > 768px) {
  .p-solution__compare__before, .p-solution__compare__after {
    width: fit-content;
  }
}
.p-solution__compare__before {
  color: #595757;
  position: relative;
}
.p-solution__compare__before::after {
  width: 23px;
  height: 26px;
  content: "";
  background: url(../images/icon_bill_arrow.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  right: -31px;
  top: 40px;
}
@media print, screen and (width > 768px) {
  .p-solution__compare__before::after {
    width: min(2.91vw, 35px);
    height: min(3.25vw, 39px);
    right: max(-3.91vw, -47px);
    top: 45px;
  }
}
.p-solution__compare__after {
  color: var(--color-site-orange);
}
.p-solution__compare__txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
@media print, screen and (width > 768px) {
  .p-solution__compare__txt {
    font-size: 20px;
  }
}
.p-solution__compare__bill {
  font-size: min(13.333vw, 50px);
  font-weight: 800;
  line-height: 1;
}
@media print, screen and (width > 768px) {
  .p-solution__compare__bill {
    font-size: min(5vw, 60px);
  }
}
.p-solution__compare__unit {
  font-size: min(4.266vw, 16px);
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-solution__compare__unit {
    font-size: min(2vw, 24px);
  }
}
.p-solution__compare__note {
  width: fit-content;
  margin: 12px auto 0;
  padding-left: 19px;
  font-size: min(4vw, 15px);
  font-weight: 600;
  text-align: left;
  position: relative;
}
.p-solution__compare__note::before {
  content: "※";
  position: absolute;
  left: 0;
}
@media print, screen and (width > 768px) {
  .p-solution__compare__note {
    font-size: clamp(10px, 1.25vw, 15px);
    padding-left: clamp(14px, 1.58vw, 19px);
  }
}
@media print, screen and (width > 768px) {
  .p-solution .p-tab__body {
    display: grid;
    grid-template-columns: 100%;
    gap: 116px 0;
  }
}
@media print, screen and (width > 768px) {
  .p-solution .p-tab__content {
    padding: 20px 30px;
  }
}

.p-worry {
  width: 100%;
  margin: 0 auto 0;
  display: grid;
  padding: 40px 10px;
  border-radius: 10px;
  background-color: var(--color-site-green03);
  grid-template-columns: 100%;
  gap: 20px;
}
@media print, screen and (width > 768px) {
  .p-worry {
    max-width: 1200px;
  }
}
@media print, screen and (width > 768px) {
  .p-worry {
    padding: 40px min(13.333vw, 160px);
    grid-template-columns: 1fr min(21.333vw, 256px);
    place-items: center;
    gap: 5%;
  }
}
.p-worry__list {
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
@media print, screen and (width > 768px) {
  .p-worry__list {
    gap: min(1.333vw, 16px);
  }
}
.p-worry__item {
  font-size: 15px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-worry__item {
    font-size: min(2vw, 24px);
  }
}
.p-worry__img {
  width: 100%;
}
@media only screen and (width <= 768px) {
  .p-worry__illust {
    grid-row: 2/3;
    padding: 0 72px;
  }
}
@media print, screen and (width > 768px) {
  .p-worry__illust {
    grid-row: 1/2;
  }
}

.p-merit {
  width: 100%;
  margin: 0 auto 0;
  display: grid;
  padding: 40px 10px;
  border-radius: 10px;
  background-color: var(--color-site-green03);
  grid-template-columns: 100%;
  gap: 20px;
}
@media print, screen and (width > 768px) {
  .p-merit {
    max-width: 1200px;
  }
}
@media print, screen and (width > 768px) {
  .p-merit {
    padding: 40px min(7.5vw, 90px);
    grid-template-columns: 42.35% 1fr;
    place-items: center;
    gap: 5%;
  }
}
.p-merit__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
@media print, screen and (width > 768px) {
  .p-merit__list {
    gap: min(2.666vw, 32px);
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.p-merit__item {
  font-size: 15px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-merit__item {
    font-size: min(2vw, 24px);
  }
}
.p-merit__img {
  width: 100%;
}
@media only screen and (width <= 768px) {
  .p-merit__illust {
    padding: 0 10px;
  }
}
@media print, screen and (width > 768px) {
  .p-merit__illust {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.p-flow {
  width: 100%;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 52px;
}
@media print, screen and (width > 768px) {
  .p-flow {
    max-width: 1064px;
  }
}
@media print, screen and (width > 768px) {
  .p-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 4.887%;
  }
}
.p-flow__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  padding: 32px 24px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  gap: 16px;
}
@media print, screen and (width > 768px) {
  .p-flow__item:nth-child(1)::after, .p-flow__item:nth-child(2)::after, .p-flow__item:nth-child(4)::after, .p-flow__item:nth-child(5)::after {
    content: "";
    width: 12px;
    height: 32px;
    background-color: var(--color-site-orange);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    right: calc(min(4.887vw, 52px) * -1);
    top: 50%;
    translate: calc((100% + 6px) * -1) -50%;
  }
}
@media only screen and (width <= 768px) {
  .p-flow__item:not(:last-child)::after {
    content: "";
    width: 32px;
    height: 12px;
    background-color: var(--color-site-orange);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    left: 50%;
    bottom: -52px;
    translate: -50% calc((100% + 6px) * -1);
  }
}
.p-flow__hd {
  position: relative;
  padding-left: 40px;
  text-align: center;
  color: var(--color-site-orange);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (width > 768px) {
  .p-flow__hd {
    font-size: clamp(15px, 1.666vw, 20px);
  }
}
.p-flow__number {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: var(--color-site-orange);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  translate: 0 -50%;
}
.p-flow__img {
  width: 100%;
}

.p-fee {
  width: 100%;
  margin: 0 auto 0;
  border-top: 2px solid #D9D9D9;
  border-right: 2px solid #D9D9D9;
  border-left: 2px solid #D9D9D9;
  border-radius: 5px;
}
@media print, screen and (width > 768px) {
  .p-fee {
    max-width: 740px;
  }
}
@media only screen and (width <= 768px) {
  .p-fee, .p-fee__body, .p-fee__tr, .p-fee__th, .p-fee__td {
    display: block;
    width: 100%;
  }
}
.p-fee__th, .p-fee__td {
  padding: 12px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}
@media print, screen and (width > 768px) {
  .p-fee__th, .p-fee__td {
    width: 50%;
    padding: 24px;
  }
}
.p-fee__th {
  font-size: 18px;
  background-color: var(--color-site-green03);
}
@media print, screen and (width > 768px) {
  .p-fee__th {
    font-size: 24px;
    border-bottom: 2px solid #D9D9D9;
  }
}
.p-fee__td {
  font-size: 22px;
  line-height: 1.3;
  background-color: #fff;
  border-bottom: 2px solid #D9D9D9;
}
@media print, screen and (width > 768px) {
  .p-fee__td {
    font-size: 30px;
  }
}
.p-fee__case {
  display: block;
  font-size: 13px;
}
@media print, screen and (width > 768px) {
  .p-fee__case {
    font-size: 16px;
  }
}
.p-fee__per {
  display: block;
  font-size: 12px;
}
@media print, screen and (width > 768px) {
  .p-fee__per {
    font-size: 15px;
  }
}
.p-fee__unit {
  margin-left: 6px;
  margin-right: 4px;
  font-size: 13px;
}
@media print, screen and (width > 768px) {
  .p-fee__unit {
    font-size: 16px;
  }
}
.p-fee__tax {
  display: block;
  font-size: 10px;
  color: #666;
}
@media print, screen and (width > 768px) {
  .p-fee__tax {
    font-size: 14px;
  }
}

.p-faq {
  width: 100%;
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-faq {
    max-width: 1000px;
  }
}
.p-faq:not(:last-child) {
  margin-bottom: 4px;
}
.p-faq[open] .p-faq__mark::before {
  transition: rotate 0.3s;
  rotate: 0deg;
}
.p-faq__question {
  position: relative;
  display: block;
  padding: 20px 36px 20px 44px;
  list-style: none;
  cursor: pointer;
  color: #fff;
  background-color: var(--color-site-green02);
  font-size: 16px;
  font-weight: 500;
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__question::before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: "Q";
  translate: 0 -50%;
}
@media print, screen and (width > 768px) {
  .p-faq__question {
    padding-right: 60px;
    padding-left: 57px;
  }
  .p-faq__question::before {
    left: 24px;
  }
}
.p-faq__mark {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 16px;
  translate: 0 -50%;
}
.p-faq__mark::before, .p-faq__mark::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #fff;
  translate: 0 -50%;
}
.p-faq__mark::before {
  transition: rotate 0.2s;
  rotate: 90deg;
}
@media print, screen and (width > 768px) {
  .p-faq__mark {
    right: 24px;
  }
}
.p-faq__answer {
  position: relative;
  padding: 12px 60px 12px 44px;
  font-size: 16px;
  font-weight: 400;
}
.p-faq__answer::before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: "A";
  color: var(--color-site-orange);
  font-weight: 600;
  translate: 0 -50%;
}
@media print, screen and (width > 768px) {
  .p-faq__answer {
    padding-left: 60px;
  }
  .p-faq__answer::before {
    top: 12px;
    left: 24px;
    translate: 0;
  }
}

.p-outline {
  width: 100%;
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-outline {
    max-width: 1000px;
  }
}
.p-outline__th, .p-outline__td {
  padding: 16px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 2px solid #fff;
  font-size: 16px;
  font-weight: 500;
}
@media print, screen and (width > 768px) {
  .p-outline__th, .p-outline__td {
    padding: 24px 40px;
    font-size: 18px;
  }
}
.p-outline__th {
  white-space: nowrap;
  color: #fff;
  background-color: var(--color-site-green02);
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-outline__th {
    width: 200px;
  }
}
.p-outline__td {
  background-color: var(--color-site-green04);
}
.p-outline__mark {
  display: inline-block;
  position: relative;
  padding-left: 16px;
}
.p-outline__mark::before {
  position: absolute;
  left: 0;
  content: "■";
}
@media print, screen and (width > 768px) {
  .p-outline__mark {
    padding-left: 18px;
  }
}
.p-outline__note {
  display: inline-block;
  position: relative;
  padding-left: 16px;
}
.p-outline__note::before {
  position: absolute;
  left: 0;
  content: "※";
}
@media print, screen and (width > 768px) {
  .p-outline__note {
    padding-left: 18px;
  }
}
@media print, screen and (width > 768px) {
  .p-outline__tel {
    pointer-events: none;
  }
}
@media only screen and (width <= 768px) {
  .p-outline__fax {
    pointer-events: none;
  }
}
.p-outline__mail {
  pointer-events: none;
}

.p-contact__textarea, .p-contact__input {
  max-width: 100%;
  border: 1px solid var(--color-site-gray04);
  font-size: 16px;
  font-weight: 500;
}
.p-contact__textarea::placeholder, .p-contact__input::placeholder {
  color: #ccc;
}
.p-contact__textarea::-ms-input-placeholder, .p-contact__input::-ms-input-placeholder {
  color: #ccc;
}
.p-contact__textarea:-ms-input-placeholder, .p-contact__input:-ms-input-placeholder {
  color: #ccc;
}
@media only screen and (width <= 768px) {
  .p-contact__textarea, .p-contact__input {
    border-radius: 4px;
  }
}

.p-contact__revision, .p-contact__submit {
  width: 300px;
  height: 52px;
  cursor: pointer;
  color: #fff;
  border: 0;
  border-radius: 80px;
  font-size: 20px;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .p-contact__revision, .p-contact__submit {
    width: 424px;
    height: 72px;
    transition: opacity 0.2s;
    font-size: 24px;
  }
  .p-contact__revision:hover, .p-contact__submit:hover {
    transition: opacity 0.3s;
    opacity: 0.7;
  }
}
.p-contact__revision:is(a, span), .p-contact__submit:is(a, span) {
  text-decoration: none !important;
  display: grid;
  place-items: center;
}

.p-contact {
  width: 100%;
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-contact {
    max-width: 1000px;
  }
}
@media only screen and (width <= 768px) {
  .p-contact {
    display: block;
  }
  .p-contact__tr, .p-contact__th, .p-contact__td {
    display: block;
    width: 100%;
  }
  .p-contact__tr:last-child .p-contact__td {
    padding-bottom: 20px;
  }
}
.p-contact__table {
  width: 100%;
}
.p-contact__th, .p-contact__td {
  text-align: left;
  vertical-align: top;
}
.p-contact__th {
  padding: 4px 0 20px 56px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media print, screen and (width > 768px) {
  .p-contact__th {
    width: 31.7%;
    padding: 10px 0 40px 68px;
    font-size: 20px;
    font-weight: 600;
  }
}
.p-contact__required, .p-contact__optional {
  width: fit-content;
  padding: 7px 8px;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .p-contact__required, .p-contact__optional {
    top: 7px;
  }
}
.p-contact__required {
  background-color: var(--color-site-orange);
}
.p-contact__optional {
  background-color: var(--color-site-gray03);
}
.p-contact__td {
  padding-bottom: 40px;
}
@media print, screen and (width > 768px) {
  .p-contact__td {
    width: 68.3%;
  }
}
.p-contact__column {
  display: grid;
  grid-template-columns: 100%;
  gap: 12px 32px;
}
@media print, screen and (width > 768px) {
  .p-contact__column {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-contact__label {
  height: fit-content;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 13px;
}
.p-contact__label .p-contact__input {
  flex: 1 0 1%;
}
.p-contact__txt {
  color: var(--color-site-gray04);
  font-size: 16px;
  font-weight: 500;
}
.p-contact__note {
  width: 100%;
  position: relative;
  margin-top: 8px;
  padding-left: 16px;
  color: var(--color-site-gray04);
  font-size: 14px;
  font-weight: 500;
}
.p-contact__note::before {
  position: absolute;
  left: 0;
  content: "※";
}
.p-contact__error {
  width: 100%;
}
.p-contact__error .error {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-site-error);
}
.p-contact__input {
  padding: 20px 12px;
}
@media print, screen and (width > 768px) {
  .p-contact__input {
    padding: 12px;
  }
}
.p-contact__select {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--color-site-gray04);
}
.p-contact__select::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 12px;
  height: 8px;
  content: "";
  background-color: var(--color-txt-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: 0 -50%;
}
@media only screen and (width <= 768px) {
  .p-contact__select {
    border-radius: 8px;
  }
}
@media print, screen and (width > 768px) {
  .p-contact__select--pref, .p-contact__select--age {
    width: 50%;
  }
}
.p-contact__select__inner {
  width: 100%;
  padding: 20px 12px;
  cursor: pointer;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  appearance: none;
}
.p-contact__select__inner::-ms-expand {
  display: none;
}
@media print, screen and (width > 768px) {
  .p-contact__select__inner {
    padding: 12px;
  }
}
@media only screen and (width <= 768px) {
  .p-contact__select__inner {
    border-radius: 8px;
  }
}
.p-contact__textarea {
  width: 100% !important;
  min-height: 157px;
  padding: 20px 12px;
}
@media print, screen and (width > 768px) {
  .p-contact__textarea {
    min-height: 300px;
    padding: 12px;
  }
}
.p-contact__policy {
  width: fit-content;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
}
.p-contact__policy__link {
  text-decoration: underline;
  color: var(--color-site-orange);
}
@media print, screen and (width > 768px) {
  .p-contact__policy .p-contact__error {
    padding-left: 32px;
  }
}
.p-contact__checkbox {
  display: grid;
  grid-template-columns: 20px auto;
  gap: 12px;
  place-items: center;
  width: fit-content;
  margin: auto;
  position: relative;
}
.p-contact__checkbox__input {
  width: 0;
  height: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.p-contact__checkbox__input:checked ~ .p-contact__checkbox__mark {
  position: relative;
  background-color: var(--color-site-orange);
}
.p-contact__checkbox__input:checked ~ .p-contact__checkbox__mark::before {
  content: "";
  width: 18px;
  height: 13px;
  background: url(../images/icon_check.svg) no-repeat left top;
  background-size: 18px 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-contact__checkbox__mark {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid var(--color-site-orange);
}
.p-contact__btn {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media print, screen and (width > 768px) {
  .p-contact__btn {
    margin-top: 40px;
    gap: 32px;
  }
}
.p-contact__submit {
  background: var(--color-site-orange);
}
.p-contact__revision {
  background: #aaa;
}
.p-contact__thanks {
  font-size: 15px;
  font-weight: 500;
}
.p-contact__thanks:not(:first-of-type) {
  margin-top: 24px;
}
@media print, screen and (width > 768px) {
  .p-contact__thanks {
    font-size: 18px;
    text-align: center;
  }
}

.p-cta {
  padding: 60px 20px;
  background: var(--color-site-green02);
}
@media print, screen and (width > 768px) {
  .p-cta {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-cta__inner {
  width: 100%;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}
@media print, screen and (width > 768px) {
  .p-cta__inner {
    max-width: 953px;
  }
}
@media print, screen and (width > 768px) {
  .p-cta__inner {
    grid-template-columns: 1fr 29.59%;
    gap: 40px 4.197%;
  }
}
.p-cta__hd {
  display: grid;
  text-align: center;
  grid-template-columns: 100%;
  gap: 20px;
}
@media print, screen and (width > 768px) {
  .p-cta__hd {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-cta__hd__txt {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-cta__hd__txt {
    font-size: clamp(25px, 2.66vw, 32px);
    line-height: 1;
  }
}
@media only screen and (width <= 768px) {
  .p-cta__illust {
    padding: 0 69px;
  }
}
@media print, screen and (width > 768px) {
  .p-cta__illust {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.p-cta__img {
  width: 100%;
}
@media print, screen and (width > 768px) {
  .p-cta__talk {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.p-floating {
  position: sticky;
  z-index: 200;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: min(3.75vw, 12px) min(2.66vw, 10px);
  transition: opacity 0.2s;
  pointer-events: none;
  opacity: 0;
  background: #FFFFFF;
  box-shadow: 0px -3px 3px rgba(0, 0, 0, 0.1);
  gap: 60px;
}
.p-floating.is_show {
  transition: opacity 0.5s;
  pointer-events: auto;
  opacity: 1;
}
@media print, screen and (width > 768px) {
  .p-floating {
    height: 97px;
  }
}
.p-floating__inner {
  width: 100%;
  margin: 0 auto 0;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
}
@media print, screen and (width > 768px) {
  .p-floating__inner {
    max-width: 1154px;
  }
}
@media only screen and (width <= 768px) {
  .p-floating__inner {
    width: 100%;
  }
}
.p-floating__txt {
  font-size: min(1.83vw, 22px);
  font-weight: 600;
  text-align: center;
}
@media only screen and (width <= 768px) {
  .p-floating__txt {
    display: none;
  }
}
.p-floating__talk {
  width: 100%;
  height: 100%;
}
@media print, screen and (width > 768px) {
  .p-floating__talk {
    width: max(530px, 55.459%);
    min-width: 530px;
  }
}
.p-floating__talk .c-talk {
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: stretch;
  gap: min(2.13vw, 8px);
}
@media print, screen and (width > 768px) {
  .p-floating__talk .c-talk {
    gap: 2.07%;
  }
}
.p-floating__talk .c-talk__item {
  width: auto;
  padding: 12px 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  gap: 12px;
}
.p-floating__talk .c-talk__item::before {
  width: 40px;
  content: "";
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media print, screen and (width > 768px) {
  .p-floating__talk .c-talk__item {
    padding: 0;
    box-shadow: none;
  }
  .p-floating__talk .c-talk__item::before {
    width: min(3.33vw, 40px);
  }
}
@media only screen and (width <= 768px) {
  .p-floating__talk .c-talk__item {
    padding: min(1.6vw, 6px);
    border-radius: 4px;
    flex: 1 0 1%;
  }
}
.p-floating__talk .c-talk__item--phone::before {
  height: min(3.33vw, 40px);
  -webkit-mask-image: url(../images/icon_phone.svg);
  -webkit-mask-size: 100%;
  mask-image: url(../images/icon_phone.svg);
  mask-size: 100%;
  background-color: #fff;
}
@media print, screen and (width > 768px) {
  .p-floating__talk .c-talk__item--phone {
    width: 50.6%;
  }
}
@media only screen and (width <= 768px) {
  .p-floating__talk .c-talk__item--phone {
    gap: min(2.13vw, 8px);
  }
  .p-floating__talk .c-talk__item--phone::before {
    width: min(8.53vw, 32px);
    height: min(8.53vw, 32px);
    -webkit-mask-size: min(8.53vw, 32px) min(8.53vw, 32px);
    mask-size: min(8.53vw, 32px) min(8.53vw, 32px);
  }
}
@media only screen and (width <= 768px) {
  .p-floating__talk .c-talk__item--phone .c-talk__time {
    text-align: left;
  }
}
.p-floating__talk .c-talk__item--web {
  border-color: var(--color-site-gray03);
}
.p-floating__talk .c-talk__item--web::before {
  height: min(3.33vw, 40px);
  -webkit-mask-image: url(../images/icon_mail.svg);
  -webkit-mask-size: 100% auto;
  mask-image: url(../images/icon_mail.svg);
  mask-size: 100% auto;
  background-color: var(--color-site-green02);
}
@media print, screen and (width > 768px) {
  .p-floating__talk .c-talk__item--web {
    width: 45.6%;
  }
}
@media only screen and (width <= 768px) {
  .p-floating__talk .c-talk__item--web::before {
    width: min(6.93vw, 26px);
    height: min(5.06vw, 19px);
    -webkit-mask-size: min(6.93vw, 26px) min(5.06vw, 19px);
    mask-size: min(6.93vw, 26px) min(5.06vw, 19px);
  }
  .p-floating__talk .c-talk__item--web .c-talk__inner {
    position: relative;
    top: -4px;
  }
}
.p-floating__talk .c-talk__tel {
  font-size: min(2.83vw, 34px);
}
@media only screen and (width <= 768px) {
  .p-floating__talk .c-talk__tel {
    font-size: min(4.26vw, 16px);
    line-height: 1;
  }
}
.p-floating__talk .c-talk__mail {
  font-size: min(1.66vw, 20px);
}
@media only screen and (width <= 768px) {
  .p-floating__talk .c-talk__mail {
    font-size: min(2.93vw, 11px);
    line-height: 1;
  }
}
.p-floating__talk .c-talk__time {
  margin-top: 0;
  font-size: min(2.66vw, 10px);
}
@media print, screen and (width > 768px) {
  .p-floating__talk .c-talk__time {
    margin-top: 4px;
    font-size: 13px;
  }
  .p-floating__talk .c-talk__time br {
    display: none;
  }
}

.p-fnav {
  width: fit-content;
}
.p-fnav__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px 40px;
}
@media print, screen and (width > 768px) {
  .p-fnav__list {
    flex-direction: row;
  }
}
.p-fnav__link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.p-copyright {
  width: fit-content;
  margin-top: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
