@charset "utf-8";
/* CSS Document */

/*==================================================
 common
==================================================*/
:root {
  --height_header: 86px;
  --height_fix_footer: 0px;
  --section: 100px;
  --calc_p: max(5%, calc((100vw - var(--base_width)) / 2));

  --base_width: 1100px;
  --base_color: var(--black);
  --base_bg: var(--white);

  --font_jp: "Noto Sans JP", sans-serif;
  --icons: "Material Symbols Outlined";

  --transition: 0.3s;

  --black: #1e1e1e;
  --white: #ffffff;

  --red: #ba0d1f;
  --navy: #0e234b;
  --lightblue: #eaf5ff;
  --skyblue: #afc0cb;
  --yellow: #ffff00;
}
.yellow {
  color: var(--yellow);
}
.red {
  color: var(--red);
}

@media (max-width: 520px) {
  :root {
    --height_header: 60px;
    --section: 50px;

    --base_width: 100%;
  }
}

html {
  scroll-padding-top: var(--height_header);
}

@media screen and (max-width: 520px) {
  body {
    font-size: 1.4rem;
  }
}

/*----------------------------------------
  base control
----------------------------------------*/

/* objedt-fit */
img {
  object-fit: cover;
}
.of_cont img,
img.of_cont {
  object-fit: contain;
}

a.logo {
  display: block;
}
a.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
  border-radius: 0px;
}
a.logo:hover img {
  scale: none;
}

/* opacity */
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*----------------------------------------
  box control
----------------------------------------*/

/* [class*="grid_"] 等分 */
[class*="grid_"] {
  --grid: 3;
  --gap: 50px;
  display: grid;
  grid-template-columns: repeat(var(--grid), 1fr);
  gap: var(--gap);
}
@media (max-width: 520px) {
  [class*="grid_"] {
    --gap: 30px;
    --grid: 1;
  }
}

/* [class*="grid_"] 等分 auto-fit*/
[class*="gridfit_"] {
  --grid: 3;
  --gap: 50px;
  --width: calc((100% - var(--gap) * (var(--grid) - 1)) / var(--grid));
  display: grid;
  grid-template-columns: repeat(auto-fit, var(--width));
  justify-content: center;
  gap: var(--gap);
}

/* .box_2c 按分 */
[class*="col_"] {
  --gap: 50px;
  --box: 30%;
  display: grid;
  grid-template-columns: var(--box) 1fr;
  align-items: flex-start;
  gap: var(--gap);
}
[class*="col_"].reverse {
  grid-template-columns: 1fr var(--box);
}
@media (min-width: 521px) {
  [class*="col_"].reverse > *:first-child {
    order: 1;
  }
}
@media (max-width: 520px) {
  [class*="col_"],
  [class*="col_"].reverse {
    --gap: 30px;
    grid-template-columns: 1fr;
  }
}

/* .tereco */
.tereco > *:nth-child(even) .box_2c {
  grid-template-columns: 1fr var(--box);
}
@media (min-width: 521px) {
  .tereco > *:nth-child(even) .box_2c > *:first-child {
    order: 1;
  }
}
@media (max-width: 520px) {
  .tereco > *:nth-child(even) .box_2c {
    grid-template-columns: 1fr;
  }
}

/* [class*="flexnum_"] 等分 */
[class*="flexnum_"] {
  --num: 3;
  --gap: 60px;
  --width: calc((100% - var(--gap) * (var(--num) - 1)) / var(--num));
  display: flex;
  flex-flow: wrap;
  gap: var(--gap);
}

[class*="flexnum_"] > * {
  width: var(--width);
}

@media screen and (max-width: 520px) {
  [class*="flexnum_"] {
    --num: 1;
    --gap: 20px;
  }
}

/*==================================================
 this site specific
==================================================*/

/*----------------------------------------
  title
----------------------------------------*/
[class*="tit_"] {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0 0 30px;
  border: none;
  border-radius: 0;
  background: none;
  color: var(--base_color);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

[class*="tit_"] i {
  display: block;
  color: var(--base_color);
  font-family: var(--font_en);
  font-size: 0.35em;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
}

/*
  _Modifier
----------------------------------------*/
.tit_A {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: 3.2rem;
  text-align: center;
}

.tit_A i {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5em;
  color: currentColor;
  font-size: 0.7em;
  font-weight: 600;
}

.tit_A i:before,
.tit_A i:after {
  color: currentColor;
  font-size: 1.2em;
}
.tit_A i:before {
  content: "＼";
}
.tit_A i:after {
  content: "／";
}
.tit_A:after {
  content: "";
  display: block;
  width: 44px;
  height: 6px;
  margin: 8px auto;
  background: var(--red);
}

.tit_B {
  flex-flow: row;
  gap: 20px;
  color: var(--navy);
  font-size: 2.8rem;
}
.tit_B:before,
.tit_B:after {
  content: "";
  display: block;
  background: url(../images/icon_coution.webp) no-repeat center / contain;
  aspect-ratio: 64/57;
  width: 64px;
  height: auto;
}

@media screen and (max-width: 520px) {
  [class*="tit_"] {
    margin: 0 0 15px;
    font-size: 2.4rem;
  }
  .tit_A {
    font-size: 2.2rem;
  }

  .tit_B {
    flex-flow: column;
    gap: 10px;
    font-size: 1.8rem;
    text-align: center;
  }
  .tit_B:after {
    display: none;
  }
}

/*----------------------------------------
  button
----------------------------------------*/
[class*="btn_"],
[class*="btnico_"],
[class*="icobtn_"],
[class*="btnsvg_"],
[class*="svgbtn_"] {
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 60px;
  padding: 10px 20px;
  border-radius: 0;
  border: var(--gray);
  background-color: var(--gray);
  color: var(--white);
  font-size: 2rem;
  text-align: center;
  transition: var(--transition);
}

[class*="btn_"] {
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
}
[class*="btn_"]:hover {
  background-color: var(--white);
  color: var(--gray);
  opacity: 1;
}

[class*="btnico_"],
[class*="icobtn_"],
[class*="btnsvg_"],
[class*="svgbtn_"] {
  display: flex;
}
[class*="btnico_"] {
  --size: 1.6rem;
}
[class*="icobtn_"] {
  --size: 1.6rem;
}
[class*="btnico_"]:after,
[class*="icobtn_"]:before {
  content: "chevron_right";
  font-family: var(--icons);
  font-size: var(--size);
  color: currentColor;
}

[class*="btnsvg_"] {
  --size: 1.5em;
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
}
[class*="svgbtn_"] {
  --size: 1.5em;
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
}
[class*="btnsvg_"]:after,
[class*="svgbtn_"]:before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: var(--size);
  height: auto;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
}

[class$="_tel"]:after,
[class$="_tel"]:before {
  aspect-ratio: 31/41;
}
[class$="_mail"]:after,
[class$="_mail"]:before {
  aspect-ratio: 17/13;
}

/*
  _Modifier
----------------------------------------*/
/* tel 01 */
.svgbtn_tel {
  --size: 1.1em;
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
  justify-content: start;
  gap: 3px 10px;
  padding: 8px 10px 8px 8px;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  align-items: center;
  text-align: left;
  line-height: 1;
}
.svgbtn_tel p {
  order: 1;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  height: 100%;
  margin: 0 10px 0 0;
  padding: 0 10px;
  background: var(--white);
  color: var(--red);
  font-size: 1.2rem;
  text-align: center;
}
.svgbtn_tel p b {
  font-size: 1.1em;
}
.svgbtn_tel p:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 0.5px);
  display: block;
  --hen: 10px;
  background: var(--white);
  height: 100%;
  width: var(--hen);
  clip-path: polygon(0 0, 100% 50%, 0 100%); /*右*/
}
.svgbtn_tel:before {
  order: 2;
}
.svgbtn_tel span {
  order: 3;
  font-size: 2.2rem;
  font-weight: 600;
}

/* mail */
.svgbtn_mail {
  --mask: url(../images/icon_mail.svg) center center / contain no-repeat;
  gap: 10px;
  border-radius: 5px;
  background: var(--navy);
  font-size: 1.6rem;
  font-weight: 600;
}

.svgbtn_mail:hover {
  box-shadow: 0 0 0 1px var(--navy);
}

/* A */
.btn_A {
  justify-content: center;
  width: min(90%, 480px);
  min-height: 90px;
  margin: 40px auto;
  border: 0 0 0 1px var(--navy);
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.btn_A:hover {
  background: #fff;
  box-shadow: 0 0 0 1px var(--navy);
  color: var(--navy);
}

@media (max-width: 520px) {
  [class*="btn_"],
  [class*="btnico_"],
  [class*="icobtn_"],
  [class*="btnsvg_"],
  [class*="svgbtn_"] {
    /*min-width: auto;*/
    width: inherit;
    min-height: inherit;
  }

  /* min_tel , mail */

  .svgbtn_min_tel,
  .svgbtn_mail {
    --size: 1.3em;
    gap: 5px;
    padding: 10px;
    border-radius: 5px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
  }

  .svgbtn_min_tel {
    --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
    background: var(--red);
  }

  .svgbtn_mail {
    --mask: url(../images/icon_mail.svg) center center / contain no-repeat;
    background: var(--navy);
  }

  .btn_A {
    width: 100%;
  }
}

/*----------------------------------------
  トグル
----------------------------------------*/
.toggle {
  display: none;
}
.toggle + .click::after {
}
.toggle + .click + .open {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.toggle:checked + .click + .open {
  /*開閉時*/
  height: auto;
  padding: 20px 50px;
  transition: var(--transition);
}
.toggle:checked + .click:after {
  transform: scale(1, -1);
}

@media screen and (max-width: 520px) {
  .toggle:checked + .click + .open {
    padding: 15px 5%;
  }
}

/*----------------------------------------
  テーブル
----------------------------------------*/
.table_basic {
  width: 100%;
  margin: 50px auto;
  font-size: 1.8rem;
}

.table_basic table {
  width: 100%;
  border-top: 1px solid var(--skyblue);
}
.table_basic th {
  width: 25%;
  color: var(--navy);
  font-weight: 600;
}

.table_basic :is(th, td) {
  padding: 30px;
  border-bottom: 1px solid var(--skyblue);
}

@media screen and (max-width: 520px) {
  .table_basic {
    margin: 30px auto;
  }
  .table_basic :is(table, tbody, tr, th, td) {
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
  .table_basic :is(th, td) {
    padding: 15px 5%;
    border-bottom: 1px solid var(--skyblue);
  }
  .table_basic th {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/*==================================================
header
==================================================*/
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "logo menu1"
    "logo nav";
  width: 100%;
  min-width: var(--base_width);
  padding: 10px 2% 15px;
  background: var(--white);
}

header .logo {
  grid-area: logo;
  display: flex;
  align-items: center;
}

header .logo img {
  width: 280px;
  height: auto;
}

header .menu_pc {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

header .menu_sp {
  display: none;
}

@media screen and (max-width: 520px) {
  header {
    align-items: center;
    padding: 10px 5px 10px;
  }

  header .logo img {
    width: 145px;
    margin: 0;
  }

  header .menu_pc {
    display: none;
  }

  header .menu_sp {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
  }
}

/*==================================================
 footer
==================================================*/
footer {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

footer .logo {
  width: 347px;
  margin: 0 auto 30px;
}

footer p {
  color: var(--navy);
  margin: 0 0 60px;
}

footer .copyright {
  font-size: 1.2rem;
  color: var(--gray);
}

@media screen and (max-width: 520px) {
  footer .logo {
    width: 200px;
  }
  footer p {
    color: var(--navy);
    margin: 0 0 40px;
  }
}

/*==================================================
 TOP
==================================================*/

/*----------------------------------------
  MV
----------------------------------------*/
.sec_mv {
  background: url(../images/mv_bg.png) repeat-x top left / auto 100%;
  text-align: center;
}

/*----------------------------------------
  CTA 01
----------------------------------------*/
.sec_cta1 {
  padding: 30px 5% 60px;
}

.cta_h {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
}
.cta_h h2 {
  font-size: 2.8rem;
  margin: 0 10px 0 0;
}
.cta_h em {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  border: 1px solid var(--navy);
  background: var(--lightblue);
  font-size: 2rem;
}
.cta_h strong {
  color: var(--red);
  font-size: 2.8rem;
}
.cta_h p {
  font-size: 2.4rem;
}

.cta_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 15px auto;
}
.cta_btn [class*="svgbtn_"] {
  --size: 1.5em;
  width: 480px;
  height: 80px;
  border-radius: 10px;
}
.cta_btn .svgbtn_tel {
  padding: 15px;
}
.cta_btn .svgbtn_tel p {
  font-size: 1.6rem;
  margin: 0 20px 0 0;
}
.cta_btn .svgbtn_tel span {
  font-size: 3.3rem;
}
.cta_btn .svgbtn_mail {
  font-size: 2.4rem;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .sec_cta1 {
    padding: 20px 5% 30px;
  }
  .cta_h {
    flex-flow: wrap;
    gap: 5px;
  }
  .cta_h h2 {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 2rem;
  }
  .cta_h em {
    padding: 2px 5px;
    font-size: 1.5rem;
  }
  .cta_h strong {
    font-size: 1.8rem;
  }
  .cta_h p {
    font-size: 1.4rem;
  }

  .cta_btn {
    flex-flow: wrap;
    gap: 10px;
    margin: 15px auto;
  }
  .cta_btn [class*="svgbtn_"] {
    --size: 1em;
    width: 100%;
    height: 60px;
    border-radius: 5px;
  }
  .cta_btn .svgbtn_tel {
    padding: 8px;
  }
  .cta_btn .svgbtn_tel p {
    font-size: 1.1rem;
    margin: 0 15px 0 0;
  }
  .cta_btn .svgbtn_tel span {
    font-size: 2.2rem;
  }
  .cta_btn .svgbtn_mail {
    font-size: 1.6rem;
  }

  .cta_btn + .t_C {
    font-size: 1rem;
  }
}

/*----------------------------------------
  実績
----------------------------------------*/
.sec_works {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--lightblue);
}

.sec_works-list {
  --num: 3;
  --gap: 5px;
  margin: 30px auto;
}

.sec_works-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--skyblue);
  color: var(--navy);
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 520px) {
  .sec_works {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .sec_works-list {
    margin: 15px auto;
  }
  .sec_works-list li {
    padding: 5px 0;
    font-size: 1.4rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 520px) {
  .splide-infinity img {
    width: 150px;
  }
}

/*----------------------------------------
  悩み
----------------------------------------*/
.sec_worries {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--navy);
  color: var(--white);
}

.sec_worries .tit_A {
  color: var(--white);
}

.sec_worries-list {
  --num: 3;
  --gap: 25px;
  margin: 50px auto;
}
.sec_worries-list li {
  background: var(--white);
}
.sec_worries-list li p {
  color: var(--black);
  padding: 20px;
}

.sec_worries-text {
  text-align: center;
}
.sec_worries-text h3 {
  font-weight: 600;
  font-size: 2.6rem;
  margin: 0 0 5px;
}

@media screen and (max-width: 767px) {
  .sec_worries {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sec_worries .tit_A {
    text-align: center;
    gap: 5px;
  }

  .sec_worries-list {
    --num: 1;
    --gap: 10px;
    margin: 20px auto;
  }
  .sec_worries-list li {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 8px;
  }
  .sec_worries-list li picture {
    background: var(--lightblue);
  }
  .sec_worries-list li p {
    padding: 5px;
  }

  .sec_worries-text h3 {
    font-size: 2.2rem;
  }
}

/*----------------------------------------
  選ばれる理由
----------------------------------------*/
.sec_choice {
  padding-top: 60px;
  padding-bottom: 60px;
}

.sec_choice-list {
  margin: 50px auto;
}

.sec_choice-list li {
  counter-increment: number;
  display: flex;
}
.sec_choice-list li + li {
  margin: 90px 0 0;
}
.sec_choice-list li picture {
  flex: none;
  width: 600px;
}
.sec_choice-list li dl {
  padding-top: 10px;
}
.sec_choice-list li dl > *,
.sec_choice-list li dl:before {
  padding-left: 45px;
  padding-right: var(--calc_p);
}
.sec_choice-list li dl:before {
  content: counter(number, decimal-leading-zero);
  display: block;
  margin: 0 0 -5px;
  color: var(--navy);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}
.sec_choice-list li dl dt {
  padding-top: 30px;
  padding-bottom: 25px;
  background: var(--navy);
  color: var(--white);
  font-size: 2.2rem;
}
.sec_choice-list li dl dd {
  padding-top: 25px;
  font-size: 1.8rem;
}

.sec_choice-list li:nth-child(even) {
  flex-flow: row-reverse;
}
.sec_choice-list li:nth-child(even) dl > *,
.sec_choice-list li:nth-child(even) dl:before {
  padding-right: 45px;
  padding-left: var(--calc_p);
}

@media screen and (max-width: 520px) {
  .sec_choice {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sec_choice-list {
    margin: 20px auto;
  }

  .sec_choice-list li {
    flex-flow: column-reverse;
  }
  .sec_choice-list li + li {
    margin: 20px 0 0;
  }
  .sec_choice-list li picture {
    flex: none;
    width: 100%;
  }
  .sec_choice-list li dl {
    padding-top: 10px;
  }
  .sec_choice-list li dl > *,
  .sec_choice-list li dl:before {
    padding-left: 0;
    padding-right: 0;
  }
  .sec_choice-list li dl:before {
    margin: 0 0 -3px;
    font-size: 3.2rem;
  }

  .sec_choice-list li:nth-child(even) {
    flex-flow: column-reverse;
  }
  .sec_choice-list li:nth-child(even) dl > *,
  .sec_choice-list li:nth-child(even) dl:before {
    padding-right: 0;
    padding-left: 0;
  }

  .sec_choice-list li dl dt,
  .sec_choice-list li:nth-child(even) dl dt {
    padding: 15px;
    font-size: 1.8rem;
  }
  .sec_choice-list li dl dd {
    padding: 15px 0;
    font-size: 1.6rem;
  }
}

/*----------------------------------------
  CTA2
----------------------------------------*/
.sec_cta2 {
  background: var(--navy);
  padding-top: 60px;
  padding-bottom: 60px;
}
.sec_cta2 picture {
  width: 1094px;
  height: 104px;
  margin: 0 auto;
}
.sec_cta2-box {
  width: var(--base_width);
  margin: 30px auto;
  padding: 30px 0;
  background: var(--white);
}

@media screen and (max-width: 520px) {
  .sec_cta2 {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .sec_cta2 picture {
    width: 90%;
    height: auto;
  }
  .sec_cta2-box {
    width: 90%;
    margin: 20px auto;
    padding: 20px 10px;
    background: var(--white);
  }
}

/*----------------------------------------
  適正化
----------------------------------------*/
.sec_opt {
  padding-top: 60px;
  padding-bottom: 60px;
}

.sec_opt-box {
  --between: 60px;
  display: flex;
  justify-content: center;
  gap: var(--between);
  margin: 50px auto 70px;
}

.sec_opt-box .check {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--skyblue);
}
.sec_opt-box .check:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  display: block;
  aspect-ratio: 60/66;
  width: var(--between);
  height: auto;
  background: url(../images/icon_arrow.webp) no-repeat center / contain;
}
.sec_opt-box .check li {
  display: flex;
  gap: 5px;
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 600;
}
.sec_opt-box .check li:before {
  content: "";
  display: block;
  aspect-ratio: 44/40;
  width: 44px;
  height: auto;
  background: url(../images/icon_check.webp) no-repeat center / contain;
}

.sec_opt-box .fig {
  flex: none;
  width: 417px;
  background: #ffffcf;
  border: 2px solid var(--navy);
}

.sec_opt-col {
  --gap: 90px;
  --box: 390px;
  grid-template-columns: 1fr var(--box);
  align-items: center;
}

@media screen and (max-width: 520px) {
  .sec_opt {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sec_opt-box {
    --between: 60px;
    flex-flow: column;
    margin: 20px auto;
  }

  .sec_opt-box .check {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 10px;
    padding: 15px;
  }
  .sec_opt-box .check:after {
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .sec_opt-box .check li {
    font-size: 1.8rem;
    gap: 10px;
  }
  .sec_opt-box .check li:before {
    flex: none;
    width: 20px;
  }

  .sec_opt-box .fig {
    width: 100%;
  }

  .sec_opt-col {
    --gap: 15px;
    --box: 100%;
    grid-template-columns: 1fr;
    align-items: center;
  }
}

/*----------------------------------------
  声
----------------------------------------*/
.sec_voice {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--lightblue);
}

.sec_voice-list {
  columns: 2;
  gap: 40px;
}

.sec_voice-list dl {
  position: relative;
  break-inside: avoid;
  margin: 0 0 40px;
  padding: 25px;
  border: 1px solid var(--skyblue);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
}
.sec_voice-list dl:after,
.sec_voice-list dl:before {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  display: block;
  --hen: 20px;
  width: var(--hen);
  height: calc(tan(60deg) * var(--hen) / 2);
  clip-path: polygon(0 0, 100% 0, 50% 100%); /*下*/
  transform: translateX(-50%);
}
.sec_voice-list dl:after {
  background: #ffffff;
}
.sec_voice-list dl:before {
  background: var(--skyblue);
  top: 100%;
}

.sec_voice-list dl dt {
  margin: 0 0 20px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 520px) {
  .sec_voice {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sec_voice-list {
    columns: 1;
    gap: 0;
  }

  .sec_voice-list dl {
    margin: 0 0 30px;
    padding: 20px;
  }

  .sec_voice-list dl dt {
    margin: 0 0 15px;
    font-size: 1.8rem;
  }
}

/*----------------------------------------
  よくあるご質問
----------------------------------------*/
.sec_faq {
  padding-top: 60px;
  padding-bottom: 100px;
}

.sec_faq-list {
  border-bottom: 1px solid var(--skyblue);
}
.sec_faq-list .click {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 30px;
  padding: 20px 50px;
  border-top: 1px solid var(--skyblue);
  color: var(--navy);
  font-size: 2rem;
  font-weight: 600;
}
.sec_faq-list .click:before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  background: var(--navy);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
}
.sec_faq-list .click:after {
  content: "keyboard_arrow_down";
  color: var(--skyblue);
  font-family: var(--icons);
  line-height: 1;
}

.sec_faq-list .open {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 30px;
  padding: 0 50px;
  background: var(--lightblue);
  font-size: 1.8rem;
  text-align: left;
}
.sec_faq-list .open:before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  background: var(--skyblue);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
}

@media screen and (max-width: 520px) {
  .sec_faq[class*="calc_"] {
    padding: 30px 0;
  }

  .sec_faq-list .click {
    grid-template-columns: 30px 1fr 15px;
    gap: 10px;
    padding: 15px 5%;
    font-size: 1.4rem;
  }
  .sec_faq-list .click:before {
    width: 30px;
    font-size: 1.4rem;
  }

  .sec_faq-list .open {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 0 5%;
    font-size: 1.4rem;
  }
  .sec_faq-list .open:before {
    width: 30px;
    font-size: 1.4rem;
  }
}

/*----------------------------------------
  会社概要
----------------------------------------*/
.sec_company {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 520px) {
  .sec_company {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

/*----------------------------------------
  お問い合わせ
----------------------------------------*/
.sec_entry {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--lightblue);
}

.sec_entry :is(h3, h4) {
  margin: 30px auto;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
}

.sec_entry h3 {
  margin-bottom: 0;
  font-size: 2.4rem;
}

.sec_entry h4 {
  margin-top: 50px;
  font-size: 1.8rem;
}

.sec_entry .table_basic tr {
  background: var(--white);
}

.sec_entry .table_basic table + table {
  margin-top: 30px;
}

.sec_entry .table_basic th {
  vertical-align: middle;
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.sec_entry .table_basic span {
  display: inline-block;
  padding: 1px 10px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: normal;
}
.sec_entry .table_basic span.require {
  background: var(--red);
  color: var(--white);
}

.flex_th {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec_entry .table_basic span.msg {
  margin: 8px 0;
  color: var(--red);
}

.sec_entry .table_basic img {
  max-width: 200px;
  height: auto;
}

.sec_entry :is(input[type="text"], textarea) {
  width: 100%;
  padding: 15px;
  border: 1px solid #b4b4b4;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  outline: none;
  line-height: 1.5;
  appearance: none;
}

.sec_entry input[type="text"].p-postal-code {
  display: inline-block;
  width: 10em;
  margin: 5px 5px 15px;
}

.sec_entry label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 8px 0;
}

.sec_entry table p {
  margin: 10px 0;
  font-size: 1.5rem;
}

/*
  ボタン
----------------------------------------*/

.sec_entry :is(button, input[type="submit"], input[type="button"]) {
  appearance: none;
  cursor: pointer;
}

.sec_entry input[type="button"].back {
  display: block;
  width: min(90%, 480px);
  margin: 20px auto;
  padding: 15px 30px;
  border: 1px solid var(--black);
  border-radius: 5px;
  background: #fff;
  color: var(--black);
  text-align: center;
  cursor: pointer;
}
.sec_entry input[type="button"].back:hover {
  box-shadow: 0 0 0 1px var(--black);
}

.sec_entry input[type="text"].w5em {
  width: 5em;
}

/*
  同意
----------------------------------------*/

.sec_entry .contact__form--policy {
  margin: 50px auto 30px;
}
.sec_entry .contact__form--policy strong {
  display: block;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.sec_entry .contact__form--policy small {
  display: block;
  text-align: center;
  margin: 0 0 30px;
}

.iframe_policy {
  padding: 1px 30px 20px;
  height: 300px;
  border: 1px solid var(--skyblue);
  background: var(--white);
  overflow-y: scroll;
  font-size: 1.4rem;
}

.iframe_policy .fw_b {
  font-size: 1.2em;
  margin: 20px 0 15px;
}

.sec_entry .contact__form--confirm label {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 30px 0;
  user-select: none;
}

@media screen and (max-width: 520px) {
  .sec_entry {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sec_entry .table_basic span {
    font-size: 1.1rem;
  }

  .sec_entry :is(h3, h4) {
    margin: 15px auto;
  }

  .sec_entry h3 {
    font-size: 1.8rem;
  }

  .sec_entry h4 {
    font-size: 1.3rem;
    font-weight: normal;
    text-align: left;
  }

  .sec_entry .table-basic :is(th, td) {
    padding: 15px 0;
  }

  .sec_entry .table_basic th {
    padding-bottom: 15px;
  }

  .sec_entry .table-basic tr:first-child th {
    border-top: none;
  }

  .sec_entry .table-basic tr {
    padding: 8px 0;
  }

  /*
  ボタン
----------------------------------------*/

  .sec_entry :is(button, input[type="submit"], input[type="button"]) {
    margin: 20px auto;
    min-height: 80px;
  }

  /*
  同意
----------------------------------------*/
  .sec_entry .contact__form--policy {
    margin: 50px auto 20px;
  }
  .sec_entry .contact__form--policy strong {
    font-size: 1.8rem;
  }
  .sec_entry .contact__form--policy small {
    margin: 0 0 20px;
  }

  .iframe_policy {
    padding: 1px 15px 15px;
    height: 60vw;
  }

  .iframe_policy .fw_b {
    margin: 20px 0 5px;
  }

  .sec_entry .contact__form--confirm label {
    padding: 20px 0;
    font-size: 1.4rem;
  }

  .sec_entry .contact__form--confirm label span.require {
    margin: 0 0 0 auto;
  }
}
