@charset "UTF-8";

/* == base ================================================ */
:root {
  --white: #ffffff;
  --black: #231815;
  --gray: #ededed;
  --yellow: #fdd000;
  --orange: #e94709;
  --red: #e8380d;

  --vw10: min(0.78vw, 10px);
  --vw11: min(0.86vw, 11px);
  --vw12: min(0.94vw, 12px);
  --vw13: min(1.02vw, 13px);
  --vw14: min(1.1vw, 14px);
  --vw15: min(1.18vw, 15px);
  --vw16: min(1.25vw, 16px);
  --vw18: min(1.41vw, 18px);
  --vw19: min(1.49vw, 19px);
  --vw20: min(1.57vw, 20px);
  --vw22: min(1.73vw, 22px);
  --vw21: min(1.65vw, 21px);
  --vw23: min(1.8vw, 23px);
  --vw24: min(1.88vw, 24px);
  --vw25: min(1.96vw, 25px);
  --vw28: min(2.2vw, 28px);
  --vw30: min(2.35vw, 30px);
  --vw32: min(2.51vw, 32px);
  --vw34: min(2.67vw, 34px);
  --vw35: min(2.75vw, 35px);
  --vw36: min(2.82vw, 36px);
  --vw38: min(2.98vw, 38px);
  --vw40: min(3.14vw, 40px);
  --vw42: min(3.29vw, 42px);
  --vw45: min(3.53vw, 45px);
  --vw48: min(3.76vw, 48px);
  --vw60: min(4.71vw, 60px);
  /* --vw10: 0.78vw;
  --vw11: 0.86vw;
  --vw12: 0.94vw;
  --vw13: 1.02vw;
  --vw14: 1.1vw;
  --vw15: 1.18vw;
  --vw16: 1.25vw;
  --vw18: 1.41vw;
  --vw19: 1.49vw;
  --vw20: 1.57vw;
  --vw21: 1.65vw;
  --vw22: 1.73vw;
  --vw24: 1.88vw;
  --vw25: 1.96vw;
  --vw28: 2.2vw;
  --vw30: 2.35vw;
  --vw32: 2.51vw;
  --vw34: 2.67vw;
  --vw35: 2.75vw;
  --vw36: 2.82vw;
  --vw38: 2.98vw;
  --vw40: 3.14vw;
  --vw42: 3.29vw;
  --vw45: 3.53vw;
  --vw48: 3.76vw;
  --vw60: 4.71vw; */

  --arrow-black: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.26 19.13"><polygon fill="%23000000" points="0 0 19.13 19.13 38.26 0 0 0"/></svg>');
  --arrow-yellow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.26 19.13"><polygon fill="%23fdd000" points="0 0 19.13 19.13 38.26 0 0 0"/></svg>');
}
html {
  font-size: 62.5%;
}
* {
  box-sizing: border-box;
}
body {
  font-optical-sizing: auto;
  -webkit-text-size-adjust: 100%;
  font-size: var(--vw18);
  line-height: 1.6;
  background-color: var(--white);
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
}
a {
  display: block;
  width: 100%;
  height: 100%;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
@media (hover: hover) {
  a:hover,
  input:hover {
    cursor: pointer;
  }
}

/* == component =========================================== */
.c-btn {
  width: max(20.08vw, 275px);
  height: max(3.92vw, 50px);
  border-radius: max(var(--vw10), 10px);
  overflow: hidden;
}
.c-btn a {
  width: 100%;
  height: 100%;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(var(--vw18), 19px);
  font-weight: 700;
  transition: 0.3s;
}
.c-title2 {
  font-size: var(--vw35);
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
.c-title3 {
  font-size: var(--vw25);
  font-weight: bold;
  text-align: center;
  border-radius: 35px;
  background-color: var(--yellow);
}
.c-desc {
  font-size: var(--vw20);
  text-align: center;
  margin: 30px auto 32px;
}
.c-list {
  position: relative;
  padding-left: var(--vw10);
}
.c-list::before {
  content: "・";
  position: absolute;
  left: min(-0.47vw, -6px);
}
.c-list--big {
  position: relative;
  padding-left: var(--vw14);
}
.c-list--big::before {
  content: "";
  position: absolute;
  top: min(0.71vw,9px);
  left: 0;
  background-color: var(--black);
  width: var(--vw10);
  height: var(--vw10);
  border-radius: 100vmax;
}
.c-list--note {
  position: relative;
  padding-left: var(--vw14);
}
.c-list--note::before {
  content: "※";
  position: absolute;
  left: 0;
}
.u-bold {
  font-weight: 700;
}
.u-orange {
  color: var(--orange);
}
.u-pc {
  display: block;
}
.u-sp {
  display: none;
}
.l-inner--1050 {
  width: min(82.35vw,1120px);
  margin: 0 auto;
}
.l-inner--935 {
  width: min(73.33vw,940px);
  margin: 0 auto;
}

/* == header ============================================== */
/* .con-link {
  padding-top: 34px;
} */
.logo-img-update {
  margin-top: 22px;
}
.con-link__item .note__text {
  margin-bottom: 10px;
}
.header-update .header-title {
  line-height: 1;
  margin-top: 8px;
  width: 296px;
}
.header-update .header-title img {
  width: 100%;
}
.header-left-sub {
  margin-top: 6px;
}
.header-left-text {
  display: flex;
  align-items: center;
  line-height: 1;
}
.header-left-text span {
  font-size: 12px;
  background-color: var(--yellow);
  border-radius: 4px;
  padding: 2px 12px;
  margin-left: 12px;
}

/* == contents ============================================ */
.p-hgMv {
  position: relative;
  margin-top: 97px;
  width: 100%;
  height: 30.43vw;
}
.p-hgMv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hgMv .c-btn {
  width: 20.08vw;
  height: 3.92vw;
  position: absolute;
  bottom: 4.71vw;
  left: 50%;
  transform: translateX(-50%);
}
.p-hgMv .c-btn a {
  font-size: 1.49vw;
}
.direction {
  margin-top: 0;
}
.direction-content-item p {
  font-size: var(--vw19);
}
.p-hgAbout img {
  width: 100%;
  height: 100%;
}
.p-hgAbout__service {
  padding-top: 100px;
  padding-bottom: 88px;
}
.p-hgAbout .contents__top {
  background-color: var(--gray);
  padding: var(--vw24) var(--vw40) var(--vw30);
}
.p-hgAbout .contents__top .title {
  text-align: center;
  border-bottom: 1px solid #231815;
  padding-bottom: 8px;
}
.p-hgAbout .contents__top .title .u-bold,
.p-hgAbout .contents__bottom .title .u-bold {
  font-size: var(--vw20);
}
.p-hgAbout .contents__top p {
  font-size: var(--vw18);
}
.p-hgAbout .contents__top__block {
  display: flex;
  align-items: center;
  gap: var(--vw20);
  margin-top: 24px;
}
.p-hgAbout .contents__top__block .desc {
  text-align: left;
}
.p-hgAbout .contents__top__block .desc__detail {
  margin-top: 16px;
  display: flex;
}
.p-hgAbout .contents__top__block .desc__detail__title {
  font-weight: 700;
  flex-shrink: 0;
}
.p-hgAbout .contents__top__block .image {
  flex-shrink: 0;
  width: min(27.45vw,350px);
}
.p-hgAbout .contents__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vw20);
  margin-top: 18px;
}
.p-hgAbout .contents__bottom__block {
  background-color: var(--gray);
  padding: var(--vw16) var(--vw24);
  text-align: center;
}
.p-hgAbout .contents__bottom__block .title {
  line-height: 1.2;
}
.p-hgAbout .contents__bottom__block .desc {
  font-size: var(--vw13);
  margin-top: 14px;
  text-align: left;
}
.p-hgAbout .contents__text {
  position: relative;
  text-align: center;
  font-size: var(--vw25);
  font-weight: 700;
  margin-top: var(--vw36);
}
.p-hgAbout .contents__text::before {
  content: "";
  background-image: url(../../img/kazai/about_deco.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: var(--vw36);
  position: absolute;
  top: -14px;
  left: 0;
}
.p-hgAbout .contents__note {
  text-align: center;
  font-size: var(--vw11);
  margin-top: 8px;
}
.p-hgAbout .c-btn {
  margin: 36px auto 0;
}
.p-hgAbout__qa {
  background-color: #f9eac1;
  padding: 74px 0 82px;
}
.p-hgAbout__qa__list {
  width: min(64.78vw,830px);
  margin: 40px auto 0;
}
.p-hgAbout__qa__list .item {
  display: flex;
  align-items: center;
  gap: var(--vw32);
}
.p-hgAbout__qa__list .item:nth-child(odd) {
  margin-top: 20px;
}
.p-hgAbout__qa__list .item--a {
  margin-left: min(2.04vw,26px);
}
.p-hgAbout__qa__list .item__icon {
  width: min(11.76vw,150px);
}
.p-hgAbout__qa__list .item__text {
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--white);
  width: min(48.63vw,620px);
}
.p-hgAbout__qa__list .item__text--q {
  gap: var(--vw30);
  padding: var(--vw20) var(--vw25);
}
.p-hgAbout__qa__list .item__text--a {
  gap: var(--vw20);
  padding: var(--vw20) var(--vw30);
}
.p-hgAbout__qa__list .item__text::before {
  content: "";
  background-image: url(../../img/kazai/speech_deco.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: min(3.06vw,39px);
  height: var(--vw23);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-hgAbout__qa__list .item__text--q::before {
  left: max(-3.06vw,-39px);
  /* left: -39px; */
}
.p-hgAbout__qa__list .item__text--a::before {
  right: max(-3.06vw,-39px);
  /* right: -39px; */
  transform: translateY(-50%) scaleX(-1);
}
.p-hgAbout__qa__list .item__text img {
  width: var(--vw30);
}
.p-hgAbout__point {
  margin-top: 105px;
}
.p-hgAbout__point__deco {
  position: relative;
  font-size: var(--vw25);
  font-weight: 700;
  display: inline-block;
  margin-top: 52px;
  left: 50%;
  transform: translateX(-50%);
}
.p-hgAbout__point__deco::before,
.p-hgAbout__point__deco::after {
  content: "";
  background-image: url(../../img/kazai/point_deco.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: min(5.25vw,67px);
  height: var(--vw40);
  position: absolute;
  bottom: 0;
}
.p-hgAbout__point__deco::before {
  left: calc(min(-5.25vw,-67px) + min(-3.29vw,-42px));
}
.p-hgAbout__point__deco::after {
  right: calc(min(-5.25vw,-67px) + min(-3.29vw,-42px));
  transform: scaleX(-1);
}
.p-hgAbout__point__wrap {
  margin: 30px auto 0;
}
.p-hgAbout__point__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vw20);
}
.pointBlock__top {
  color: var(--white);
  background-color: var(--orange);
  font-size: var(--vw20);
  font-weight: 700;
  text-align: center;
  padding: var(--vw40) 0 var(--vw18);
}
.pointBlock__bottom {
  position: relative;
  background-color: var(--white);
  border-left: 4px solid var(--yellow);
  border-right: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  padding: var(--vw48) 0 var(--vw42);
  transition: 0.3s;
}
.pointBlock__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../img/kazai/point_block_deco.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(100% + 8px);
  height: var(--vw25);
}
.pointBlock__bottom::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background-image: var(--arrow-black);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: var(--vw38);
  height: var(--vw19);
  transition: 0.3s;
}
.pointBlock__bottom__point {
  background-color: var(--black);
  width: min(10.43vw,133px);
  height: var(--vw32);
  border-radius: 100vmax;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.pointBlock__bottom__point svg {
  width: min(6.43vw,82px);
  height: var(--vw22);
}
.pointBlock__bottom__point svg g {
  transition: 0.3s;
}
.pointBlock__bottom__text {
  text-align: center;
  font-size: var(--vw28);
  font-weight: 700;
  margin-top: 20px;
}
.p-hgAbout__point__text {
  margin: 60px 0 0;
}
.p-hgAbout__point__block {
  margin-top: 67px;
}
.p-hgAbout__point__block .title {
  background-color: var(--yellow);
  display: flex;
  gap: var(--vw32);
  padding: var(--vw24) var(--vw32);
}
.p-hgAbout__point__block .title__point {
  background-color: var(--black);
  width: min(12.31vw,157px);
  height: var(--vw38);
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-hgAbout__point__block .title__point img {
  width: 80%;
  height: 80%;
}
.p-hgAbout__point__block .title__text {
  font-size: var(--vw25);
  font-weight: 700;
}
.p-hgAbout__point__block .contents {
  padding: var(--vw32) var(--vw48);
  border: 1px solid var(--yellow);
  display: flex;
  gap: var(--vw45);
}
.p-hgAbout__point__block .contents--center {
  align-items: center;
}
.p-hgAbout__point__block .contents--between {
  justify-content: space-between;
}
.p-hgAbout__point__block .contents__speech {
  position: relative;
}
.p-hgAbout__point__block .contents__speech::before {
  content: "";
  background-image: url(../../img/kazai/point_speeh_02.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: min(36.39vw,464px);
  height: min(5.2vw,66px);
  right: min(-2.2vw,-28px);
  bottom: 0;
}
.p-hgAbout__point__block .contents__flex {
  display: flex;
  gap: var(--vw30);
}
.p-hgAbout__point__block .contents__flex--03 {
  gap: var(--vw20);
}
.p-hgAbout__point__block .contents__block__img--01 {
  width: min(8.71vw,111px);
}
.p-hgAbout__point__block .contents__block__img--02 {
  width: min(8.31vw,106px);
}
.p-hgAbout__point__block .contents__block__img--03 {
  width: min(12.39vw,158px);
}
.p-hgAbout__point__block .contents p {
  margin-bottom: var(--vw24);
}
.p-hgAbout__point__block .contents__block .u-orange.u-pc {
  display: inline !important;
}
.p-hgAbout__point__block .contents__block ul {
  font-weight: 700;
}
.p-hgAbout__point__block .contents__flex .u-orange.text {
  display: inline;
  text-decoration: underline;
}
.p-hgAbout__point__block .contents__note {
  font-size: var(--vw13);
  text-align: left;
}
.p-hgAbout__point__note {
  font-size: var(--vw11);
  margin-top: var(--vw20);
}
.p-hgAbout__point__how {
  background-color: var(--gray);
  padding: var(--vw40) 0;
  margin-top: var(--vw35);
}
.p-hgAbout__point__how .block {
  margin: 0 auto;
  border: 1px solid var(--black);
  padding: var(--vw32) var(--vw35);
}
.p-hgAbout__point__how .block p {
  font-size: var(--vw15);
}
.p-hgAbout__point__how .block .c-btn {
  width: max(25.88vw, 330px);
}
.p-hgPlan {
  padding-top: 97px;
}
.p-hgPlan img {
  width: 100%;
  height: auto;
}
.p-hgPlan .p-hgPlan__table {
  margin: var(--vw60) auto 0;
}
.p-hgPlan th {
  padding: var(--vw22) 0;
  border-radius: var(--vw22) var(--vw22) 0 0;
}
.p-hgPlan th img {
  vertical-align: middle;
}
.p-hgPlan .th--01 {
  background-color: #00a0e9;
}
.p-hgPlan .th--02 {
  background-color: #45b035;
}
.p-hgPlan .th--01 img {
  width: min(14.2vw,179px);
  height: auto;
}
.p-hgPlan .th--02 img {
  width: min(10.59vw,135px);
  height: auto;
}
.p-hgPlan td {
  padding: var(--vw10) 0;
  font-size: var(--vw18);
  line-height: 1.3;
  font-weight: 700;
  width: min(22.43vw,286px);
  height: min(6.59vw,84px);
}
.p-hgPlan td span.sup {
  display: block;
  font-size: var(--vw15);
}
.p-hgPlan td span.big {
  font-size: var(--vw32);
}
.p-hgPlan td sub {
  font-size: var(--vw11);
  margin-bottom: 4px;
  vertical-align: baseline;
}
.p-hgPlan td sub.note {
  display: block;
  margin-top: 8px;
}
.p-hgPlan .circle {
  display: block;
  width: var(--vw35);
  height: var(--vw35);
  border-radius: 100vmax;
  margin: 0 auto;
}
.p-hgPlan .circle--blue {
  background-color: #00a0e9;
}
.p-hgPlan .circle--green {
  background-color: #45b035;
}
.p-hgPlan .bar {
  display: block;
  width: var(--vw38);
  height: 3px;
  background-color: var(--black);
  margin: 0 auto;
}
.p-hgPlan .tr--gray {
  color: var(--white);
  background-color: #9d9d9e;
  font-weight: 700;
}
.p-hgPlan .tr--gray td {
  font-size: var(--vw16);
}
.p-hgPlan .tr--lightgray {
  background-color: #f4f4f5;
}
.p-hgPlan .tr--beige {
  background-color: #fbfcf4;
}
.p-hgPlan .detail-content-table {
  margin-top: var(--vw22);
}
.p-hgPlan .detail-content-table .noteBox {
  max-width: 100%;
  font-size: var(--vw11);
}
.detail-content-table .btnArea .noteText {
  font-size: var(--vw14);
}
.p-hgPlan__detail {
  margin-top: 40px;
}
.p-hgPlan__detail summary {
  font-size: var(--vw16);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--vw20) var(--vw10);
  background-color: var(--yellow);
  cursor: pointer;
}
.p-hgPlan__detail summary::-webkit-details-marker {
  display: none;
}
.p-hgPlan__detail__title {
  position: relative;
}
.p-hgPlan__detail__title::before,
.p-hgPlan__detail__title::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 2px;
  height: var(--vw18);
  background-color: var(--black);
  top: 50%;
  transform: translateY(-50%);
}
.p-hgPlan__detail__title::before {
  left: -24px;
  transform: translateY(-50%) rotate(90deg);
}
.p-hgPlan__detail__title::after {
  transition: transform .3s;
  left: -24px;
}
.p-hgPlan__detail[open] .p-hgPlan__detail__title::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-hgPlan__detail__contents {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  transition: transform .5s, opacity .5s;
}
.p-hgPlan__detail[open] .p-hgPlan__detail__contents {
  transform: none;
  opacity: 1;
}
.p-hgPlan__detail__wrap {
  position: relative;
  padding: var(--vw40) var(--vw10) 38px;
}
.p-hgPlan__detail__wrap::before {
  content: "";
  background-image: url(../../img/kazai/plan_line.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}
.p-hgPlan__detail__contents .gridBox {
  display: grid;
  grid-template-columns: min(17.1vw,218px) 1fr;
  gap: var(--vw48);
}
.p-hgPlan__detail__contents .contents__title {
  font-size: var(--vw18);
}
.p-hgPlan__detail__contents .contents__title span {
  color: #ea5504;
}
.p-hgPlan__detail__contents .c-desc {
  font-size: var(--vw15);
  text-align: left;
}
.p-hgPlan__detail__contents .c-desc:last-child {
  margin-bottom: 0;
}
.p-hgPlan__detail__contents .detailImage {
  width: min(59.4vw,757px);
  margin: 32px 0 0 auto;
}
.p-hgPlan__detail__contents .note {
  font-size: var(--vw12);
}
.p-hgPlan__detail__contents .note a {
  display: inline;
  color: #004098;
  text-decoration: underline;
}
.p-hgPlan__estimate {
  padding: 100px 0 115px;
}
.p-hgPlan__estimate__wrap {
  width: min(65.88vw,840px);
  margin: 38px auto 0;
}
.p-hgPlan__estimate__contents {
  position: relative;
}
.p-hgPlan__estimate__contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(min(-2.35vw, -30px) + -10px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-hgPlan__estimate__contents--q::before {
  background-image: url(../../img/kazai/estimate_q.svg);
  width: var(--vw30);
  height: var(--vw34);
}
.p-hgPlan__estimate__contents--a::before {
  background-image: url(../../img/kazai/estimate_a.svg);
  width: var(--vw32);
  height: var(--vw32);
}
.p-hgPlan__estimate__contents .title {
  position: relative;
  font-size: var(--vw20);
  margin-bottom: 24px;
}
.p-hgPlan__estimate__contents .btn {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vw22);
  margin: 0;
}
.p-hgPlan__estimate__contents .btn__item {
  color: var(--black);
  border: 1px solid var(--yellow) !important;
  cursor: pointer;
  border: none;
  font-size: var(--vw20);
  font-weight: 700;
  transition: 0.3s;
  padding: var(--vw10) 0;
}
.p-hgPlan__estimate__contents .btn__item.is-active {
  background-color: var(--yellow);
}
.p-hgPlan__estimate__contents--q {
  margin-bottom: 50px;
}
.p-hgPlan__estimate__contents .note {
  font-size: var(--vw13);
  text-align: right;
  margin-top: 16px;
}
.p-hgPlan__estimate th,
.p-hgPlan__estimate td {
  height: var(--vw60);
}
.p-hgPlan__estimate th {
  padding: var(--vw18) 0;
}
.p-hgPlan__estimate .th--yellow {
  background-color: var(--yellow);
  border-radius: 0;
}
.p-hgHow {
  padding: 88px 0 60px;
  background-color: #f9eac1;
}
.p-hgHow__contents__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(5.33vw,68px);
}
.p-hgHow__contents__list .item {
  position: relative;
  background-color: var(--white);
  text-align: center;
  padding: var(--vw24) 0 var(--vw20);
}
.p-hgHow__contents__list .item:not(:last-child)::before {
  content: "";
  background-image: url(../../img/kazai/arrow_triangle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: min(-4.24vw,-54px);
  width: var(--vw38);
  height: var(--vw18);
  transform: translateY(-50%) rotate(-90deg);
}
.p-hgHow__contents__list .item__step {
  font-size: var(--vw22);
  margin-bottom: var(--vw28);
}
.p-hgHow__contents__list .item__img {
  margin: 0 auto 16px;
  width: min(13.41vw,171px);
  height: min(13.41vw,171px);
}
.p-hgHow__contents__list .item__img--01 {
  width: min(14.43vw,184px);
}
.p-hgHow__contents__list .item__text {
  font-size: var(--vw15);
}
.p-hgHow__contents__list .item__text--mini {
  font-size: var(--vw12);
}
.p-hgHow__contents__note {
  background-color: var(--white);
  padding: var(--vw22) var(--vw28) var(--vw30);
}
.p-hgHow__contents__note .title {
  background-color: var(--black);
  color: var(--yellow);
  font-size: var(--vw20);
  border-radius: 100vmax;
  text-align: center;
}
.p-hgHow__contents__note .contents {
  font-size: var(--vw15);
  margin-top: var(--vw24);
  padding: 0 var(--vw24);
}
.detail-content-table {
  margin-top: var(--vw40);
  padding: 0;
}
.detail-content-table .planBtn {
  width: 100%;
}
.detail-content-table .btnArea {
  width: min(65.41vw,834px);
  margin: 0 auto;
}
.detail-content-table .planBtn__text {
  font-weight: 700;
  font-size: var(--vw18);
}
.detail-content-table .planBtn__item {
  padding: var(--vw18) 10px;
}
.detail-content-table .planBtnWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vw60);
}
.detail-content-table .planBtn__item {
  width: 100%;
  height: auto;
}
.planBtn__text--mini {
  display: block;
  font-size: var(--vw14);
}
.noteText--red {
  display: flex;
  font-size: var(--vw13);
  font-weight: 700;
  color: var(--red);
  margin-top: 22px;
}
.noteText--red ul li {
  position: relative;
  padding-left: 8px;
}
.noteText--red ul li::before {
  content: "";
  display: block;
  width: min(0.24vw,3px);
  height: min(0.24vw,3px);
  background-color: var(--red);
  position: absolute;
  top: min(0.71vw,9px);
  left: 0;
  border-radius: 100vmax;
}
.noteText--red p {
  flex-shrink: 0;
}
.p-hgQA {
  padding: 97px 0;
}
.question-yellow,
.answer-black {
  font-size: var(--vw28);
  font-weight: 700;
  flex-shrink: 0;
  width: min(5.49vw,70px);
  height: min(5.49vw,70px);
  padding: 0;
  margin-right: var(--vw38);
  display: flex;
  justify-content: center;
  align-items: center;
}
.question-text--q {
  font-size: var(--vw18) !important;
  font-weight: 700;
  max-width: min(64.71vw,825px);
}
.question-text--a {
  font-size: var(--vw15) !important;
  max-width: 80%;
}
.question-text--a p {
  margin-bottom: 20px;
}
.question-text--a .image {
  margin: 0 auto;
  width: min(46.75vw,596px);
}
.question-text--a .image img {
  width: 100%;
  height: auto;
}
.detail-content-list-number,
.detail-content-answer-question {
  padding: 0;
}
.detail-content-answer-question {
  border-bottom: 1px solid;
}
.faq-link {
  display: inline;
}
.faq-content {
  padding: 40px 0;
}
.faq-box {
  width: min(78.43vw,1000px);
  height: min(9.73vw,124px);
  background-size: cover;
  margin: 0 auto;
  padding: var(--vw38) 0;
}
.faq-p {
  font-size: var(--vw15);
}
.company-item-name {
  font-size: var(--vw13);
}
.company-item-name a {
  display: inline;
  color: #004098;
  text-decoration: underline;
}
.mys20-desc {
  font-size: var(--vw12);
}
.footer-top .bnrText {
  margin-top: 40px;
}
.answer-text-small {
  font-size: var(--vw12);
}
.mys20 {
  padding-bottom: 48px;
}
.under414 {
  display: none;
}
@media only screen and (max-width: 979px) {
  .header-update {
    height: auto;
  }
  .p-hgMv {
    margin-top: 77px;
  }
}
@media (width < 768px) {
  :root {
    --vw10: max(10px, 2.56vw);
    --vw11: max(11px, 2.82vw);
    --vw12: max(12px, 3.08vw);
    --vw13: max(12px, 3.33vw);
    --vw14: max(14px, 3.59vw);
    --vw15: max(15px, 3.85vw);
    --vw16: max(14px, 4.1vw);
    --vw17: max(17px, 4.36vw);
    --vw18: max(18px, 4.62vw);
    --vw19: max(19px, 4.87vw);
    --vw20: max(20px, 5.13vw);
    --vw22: max(22px, 5.64vw);
    --vw23: max(23px, 5.9vw);
    --vw24: max(24px, 6.15vw);
    --vw25: max(25px, 6.41vw);
    --vw28: max(28px, 7.18vw);
    --vw30: max(30px, 7.69vw);
    --vw32: max(32px, 8.21vw);
    --vw40: max(40px, 10.26vw);
    --vw42: max(42px, 10.77vw);
    --vw48: max(48px, 12.31vw);
    --vw50: max(50px, 12.82vw);
    /* --vw10: max(10px,2.56vw);
    --vw11: max(11px,2.82vw);
    --vw12: 3.08vw;
    --vw13: 3.33vw;
    --vw14: 3.59vw;
    --vw15: 3.85vw;
    --vw16: 4.1vw;
    --vw17: 4.36vw;
    --vw18: 4.62vw;
    --vw19: 4.87vw;
    --vw20: 5.13vw;
    --vw22: 5.64vw;
    --vw23: max(23px,5.9vw);
    --vw24: max(24px,6.15vw);
    --vw25: 6.41vw;
    --vw28: 7.18vw;
    --vw30: 7.69vw;
    --vw32: 8.21vw;
    --vw40: 10.26vw;
    --vw42: 10.77vw;
    --vw48: 12.31vw;
    --vw50: 12.82vw; */
  }
  .l-inner--1050 {
    width: 95.38vw;
  }
  .l-inner--935 {
    width: 92.05vw;
  }
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: block;
  }
  .c-btn {
    width: 54.87vw;
    height: var(--vw42);
  }
  .c-btn a {
    font-size: var(--vw16);
  }
  .c-title2 {
    font-size: var(--vw23);
    margin-bottom: 48px;
  }
  .c-title3 {
    font-size: var(--vw19);
    padding: 6px 0;
    line-height: 1.4;
  }
  .c-desc {
    font-size: var(--vw17);
    margin: 20px 0;
  }
  .c-list::before {
    left: max(-1.03vw,-4px);
  }
  .c-list--big::before {
    top: max(1.54vw,6px);
  }
  .header-update .header-title {
    width: 192px;
    margin-top: 8px;
    height: 14px;
  }
  .header-update .header-title img {
    height: auto;
    vertical-align: top;
  }
  .header-left-text {
    margin-top: 10px;
  }
  .header-left-text span {
    font-size: 7px;
    margin-left: 4px;
  }
  .parent {
    min-width: 133px;
  }
  .logo-img-update {
    margin-top: 10px;
  }
  .con-link__item {
    font-size: 12px;
  }
  .con-link__item .note__text {
    font-size: 6px;
  }
  .header-left-sub {
    font-size: 6px;
    line-height: 1.2;
    margin-top: 10px;
  }
  /* .con-link {
    padding-top: 29px;
  } */
  .header-update {
    height: 77px;
  }
  .p-hgMv {
    height: 121.54vw;
  }
  .p-hgMv .c-btn {
    width: 54.87vw;
    height: var(--vw42);
    bottom: var(--vw50);
  }
  .p-hgMv .c-btn a {
    font-size: var(--vw16);
  }
  .direction-content-item {
    padding: 0;
  }
  .direction-content-item p {
    font-size: var(--vw14);
  }
  .p-hgAbout__service {
    padding: 77px 0 0;
  }
  .contents__top__block {
    flex-direction: column;
  }
  .p-hgAbout .contents__top {
    padding: var(--vw24) var(--vw16);
  }
  .p-hgAbout .contents__top .title,
  .p-hgAbout .contents__top p {
    font-size: var(--vw16);
  }
  .p-hgAbout .contents__top .title .u-bold,
  .p-hgAbout .contents__bottom .title .u-bold {
    font-size: var(--vw17);
  }
  .p-hgAbout .contents__top__block .desc__detail {
    display: block;
  }
  .p-hgAbout .contents__top__block .image {
    width: 76.15vw;
  }
  .p-hgAbout .contents__bottom {
    grid-template-columns: 1fr;
  }
  .p-hgAbout .contents__bottom__block {
    padding: var(--vw14) var(--vw20);
  }
  .p-hgAbout .contents__bottom__block .title {
    font-size: var(--vw15);
  }
  .p-hgAbout .contents__bottom__block .desc {
    font-size: var(--vw13);
    margin-top: 10px;
  }
  .p-hgAbout .contents__text {
    font-size: var(--vw19);
    line-height: 1.4;
    margin-top: var(--vw30);
  }
  .p-hgAbout .contents__text::before {
    background-image: url(../../img/kazai/about_deco-sp.svg);
    height: var(--vw42);
  }
  .p-hgAbout .contents__note {
    font-size: var(--vw10);
  }
  .p-hgAbout__service {
    padding-bottom: 54px;
  }
  .p-hgAbout__qa {
    padding: 64px 0;
  }
  .p-hgAbout__qa__list {
    width: 100%;
  }
  .p-hgAbout__qa__list .item:nth-child(odd) {
    margin-top: 40px;
  }
  .p-hgAbout__qa__list .item__icon {
    width: 23.08vw;
  }
  .p-hgAbout__qa__list .item__text {
    width: 63.59vw;
    font-size: var(--vw15);
    padding: var(--vw12) var(--vw10);
  }
  .p-hgAbout__qa__list .item--a {
    margin-top: var(--vw16);
  }
  .p-hgAbout__qa__list .item__text::before {
    width: var(--vw48);
    height: var(--vw24);
  }
  .p-hgAbout__qa__list .item__text--q::before {
    left: -12.31vw;
  }
  .p-hgAbout__qa__list .item__text--a::before {
    right: -12.31vw;
  }
  .p-hgAbout__qa__list .item__text img {
    width: var(--vw25);
  }
  .p-hgAbout__point {
    margin-top: 54px;
  }
  .p-hgAbout__point__deco {
    font-size: var(--vw20);
    margin-top: 30px;
  }
  .p-hgAbout__point__contents {
    grid-template-columns: 1fr;
    width: 82.56vw;
    margin: 0 auto;
  }
  .p-hgAbout__point__deco::before,
  .p-hgAbout__point__deco::after {
    width: 12.05vw;
    height: 7.18vw;
  }
  .p-hgAbout__point__deco::before {
    left: calc(-12.05vw + -3.29vw);
  }
  .p-hgAbout__point__deco::after {
    right: calc(-12.05vw + -3.29vw);
  }
  .pointBlock__top {
    font-size: var(--vw18);
    padding-bottom: 0;
    padding-top: var(--vw24);
  }
  .pointBlock__bottom {
    padding: var(--vw40) 0;
  }
  .pointBlock__bottom::before {
    background-image: url(../../img/kazai/point_block_deco-sp.svg);
    height: var(--vw28);
    top: -1px;
  }
  .pointBlock__bottom::after {
    width: 8.97vw;
    height: var(--vw18);
  }
  .pointBlock__bottom__point {
    width: 31.28vw;
  }
  .pointBlock__bottom__point svg {
    width: 18.97vw;
    height: 6.15vw;
  }
  .pointBlock__bottom__text {
    font-size: var(--vw25);
    margin-top: 14px;
  }
  .p-hgAbout__point__text {
    width: 75.64vw;
    margin: 45px auto 0;
  }
  .p-hgAbout__point__block {
    position: relative;
    margin-top: 67px;
    padding-top: var(--vw10);
  }
  .p-hgAbout__point__block .title {
    display: block;
    padding: var(--vw32) var(--vw20) var(--vw22);
  }
  .p-hgAbout__point__block .title__point {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 31.28vw;
    height: var(--vw32);
    top: calc(-4.1vw + 2.56vw);
  }
  .p-hgAbout__point__block .title__point img {
    height: 70%;
  }
  .p-hgAbout__point__block .title__text {
    font-size: var(--vw18);
  }
  .p-hgAbout__point__block .contents {
    display: block;
    padding: var(--vw20) var(--vw16);
    font-size: var(--vw15);
  }
  .p-hgAbout__point__block .contents__flex {
    flex-direction: column;
    gap: 0;
  }
  .p-hgAbout__point__block .contents__flex .u-sp {
    display: inline !important;
  }
  .p-hgAbout__point__block .contents__speech::before {
    background-image: url(../../img/kazai/point_speeh_02-sp.svg);
    right: auto;
    left: 0;
    width: 48.72vw;
    height: 27.18vw;
    bottom: -27.18vw;
  }
  .p-hgAbout__point__block .contents__block__img--01 {
    width: 19.49vw;
    margin: 0 0 0 auto;
  }
  .p-hgAbout__point__block .blockflex {
    display: flex;
    align-items: center;
    gap: var(--vw15);
  }
  .p-hgAbout__point__block .contents__block .u-orange.u-pc {
    display: none !important;
  }
  .p-hgAbout__point__block .contents__block__img--02 {
    width: 18.46vw;
    flex-shrink: 0;
  }
  .p-hgAbout__point__block .contents__block__img--03 {
    width: 26.41vw;
    flex-shrink: 0;
  }
  .p-hgAbout__point__how {
    margin-top: 40px;
    padding-top: 40px;
  }
  .p-hgAbout__point__how .block {
    padding: var(--vw20) var(--vw14);
  }
  .p-hgAbout__point__how .block p {
    font-size: var(--vw12);
  }
  .p-hgAbout__point__how .block .c-btn {
    width: 70.77vw;
    margin-top: 20px;
  }
  .p-hgPlan {
    padding-top: 80px;
  }
  .p-hgPlan th {
    padding: var(--vw18);
  }
  .p-hgPlan .th--01,
  .p-hgPlan .th--02 {
    width: 27.95vw;
  }
  .p-hgPlan .th--01 img {
    width: 20.51vw;
  }
  .p-hgPlan .th--02 img {
    width: 12.31vw;
  }
  .p-hgPlan td {
    font-size: var(--vw15);
    padding: var(--vw16) 0;
    width: 32.05vw;
  }
  .p-hgPlan td span.big {
    font-size: var(--vw22);
  }
  .p-hgPlan td span.sup {
    font-size: var(--vw12);
  }
  .p-hgPlan td sub {
    font-size: 2.31vw;
  }
  .p-hgPlan .circle {
    width: var(--vw28);
    height: var(--vw28);
  }
  .p-hgPlan .bar {
    width: 7.44vw;
  }
  .p-hgPlan .detail-content-table {
    margin-top: 12px;
  }
  .detail-content-table .btnArea {
    width: 100%;
  }
  .detail-content-table .planBtnWrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-content-table .planBtn {
    margin: 0;
  }
  .detail-content-table .planBtn__text,
  .planBtn__text--mini {
    font-size: var(--vw17);
  }
  .detail-content-table .btnArea .noteText {
    font-size: var(--vw11);
  }
  .p-hgPlan__detail {
    margin-top: 32px;
  }
  .p-hgPlan__detail__contents .gridBox {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .p-hgPlan__detail__contents .contents__title {
    font-size: var(--vw20);
  }
  .p-hgPlan__detail__contents .contents__title span {
    display: block;
  }
  .p-hgPlan__detail__contents .contents__title span.nonBlock {
    display: inline;
  }
  .p-hgPlan__detail__contents .c-desc {
    font-size: var(--vw13);
  }
  .p-hgPlan__detail__contents .detailImage {
    width: 100%;
    margin: 28px auto 0;
  }
  .p-hgPlan__estimate {
    padding-bottom: 68px;
  }
  .p-hgPlan__estimate__wrap {
    width: 92.31vw;
  }
  .p-hgPlan__estimate__contents .title {
    font-size: var(--vw16);
    padding-left: 8.72vw;
  }
  .p-hgPlan__estimate__contents .btn {
    grid-template-columns: repeat(2, 2fr);
    gap: var(--vw18);
  }
  .p-hgPlan__estimate__contents .btn__item {
    font-size: var(--vw17);
    padding: var(--vw10) 0;
  }
  .p-hgPlan__estimate__contents--q::before,
  .p-hgPlan__estimate__contents--a::before {
    width: 6.15vw;
    height: 6.15vw;
    left: 0;
  }
  .p-hgPlan th {
    font-size: var(--vw17);
    padding: var(--vw18) var(--vw10);
  }
  .p-hgPlan__estimate .th--yellow {
    height: 15.38vw;
    padding: 0;
    line-height: 1.2;
  }
  .p-hgPlan td span.big {
    font-size: var(--vw25);
  }
  .p-hgPlan .detail-content-table {
    margin-top: 30px;
  }
  .p-hgHow__contents__list {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--vw40);
    margin-bottom: 40px;
  }
  .p-hgHow__contents__list .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--vw10);
    gap: var(--vw20);
  }
  .p-hgHow__contents__list .item:not(:last-child)::before {
    transform: translateX(-50%) translateY(0) rotate(0);
    top: auto;
    right: auto;
    bottom: calc(-4.1vw + -3.08vw);
    left: 50%;
    width: 8.21vw;
    height: 4.1vw;
  }
  .p-hgHow__contents__list .item__wrap {
    text-align: left;
    width: 30.74vw;
    flex-shrink: 0;
  }
  .p-hgHow__contents__list .item__img {
    width: 33.59vw;
    height: 33.59vw;
    margin: 0;
  }
  .p-hgHow__contents__list .item__img--01 {
    width: 35.9vw;
  }
  .p-hgHow__contents__list .item__img--02 {
    height: 34.62vw;
  }
  .p-hgHow__contents__list .item__step {
    font-size: var(--vw17);
    margin-bottom: var(--vw20);
  }
  .p-hgHow__contents__list .item__text {
    font-size: var(--vw13);
    margin-bottom: 10px;
  }
  .p-hgHow__contents__note {
    margin-top: 40px;
    padding: var(--vw22) var(--vw12);
  }
  .p-hgHow__contents__note .title {
    font-size: var(--vw17);
    padding: var(--vw10);
  }
  .p-hgHow__contents__note .contents {
    padding: 0 var(--vw10);
    font-size: var(--vw11);
  }
  .question-yellow,
  .answer-black {
    width: 10.77vw;
    height: 10.77vw;
    font-size: var(--vw17);
  }
  .question-flex-right>img {
    width: var(--vw14);
  }
  .question-text--q {
    font-size: var(--vw15) !important;
  }
  .question-text--a {
    font-size: var(--vw14) !important;
  }
  .question-text--q {
    font-size: var(--vw15) !important;
  }
  .question-text--a .image {
    width: 100%;
    margin-top: 40px;
  }
  .faq-content {
    padding: 32px 0;
  }
  .faq-box {
    width: 87.18vw;
    height: 38.46vw;
  }
  .company-item-img {
    margin-bottom: 0;
  }
  .company-item-name,
  .mys20-name,
  .mys20-desc {
    font-size: var(--vw11);
  }
  .footer-top .bnrText {
    font-size: var(--vw14);
  }
  .footer-top .bnrImage {
    width: 85.9vw;
    margin: 0 auto;
  }
  .footer-top .bnrImage img {
    width: 100%;
    height: auto;
  }
}
@media (width < 414px) {
  .parent {
    width: 25vw;
    min-width: auto;
  }
  .con-link__item .note__text {
    margin-bottom: 5px;
  }
  .under414 {
    display: block;
  }
}



/* ===== 中間幅（1100px〜768px）用：ヘッダー注釈文調整（微調整版） ===== */
@media screen and (max-width: 1100px) and (min-width: 768px) {
  header.header-update .header-left-sub {
    font-size: 11px !important;   /* 指定サイズ */
    line-height: 1.35;            /* 行間をやや詰める（自然な2行） */
    max-width: 380px;
    display: block;
    margin-top: 4px;              /* 元より少し近づける（自然な余白） */
    transform: translateY(-2px);  /* ごくわずかに上げる */
    text-align: left;
    white-space: normal;
  }
}




@media (hover: hover) {
  .c-btn:hover a {
    background-color: rgb(77 77 77);
    text-decoration: none;
  }
  .p-hgAbout__point__contents .pointBlock:hover {
    text-decoration: none;
  }
  .p-hgAbout__point__contents .pointBlock:hover .pointBlock__bottom {
    /* color: var(--yellow); */
    background-color: var(--yellow);
  }
  .p-hgAbout__point__contents .pointBlock:hover .pointBlock__bottom::after {
    /* background-image: var(--arrow-yellow); */
  }
  .p-hgAbout__point__contents .pointBlock:hover .pointBlock__bottom__point {
    /* background-color: var(--yellow); */
  }
  .p-hgAbout__point__contents .pointBlock:hover .pointBlock__bottom__point svg g {
    /* fill: var(--black); */
  }
  .p-hgPlan__estimate__contents .btn__item:hover {
    background-color: var(--yellow);
  }
}