@charset "utf-8";

/* -----------------------------------------------------------------------
 初期設定
----------------------------------------------------------------------- */
:root {
  --main-color: #363480;
  --sub-color: #1B196C;
  --accent-color: #E31119;
  --accent-color2: #FF4D00;
  --menu-color: #123FAE;
  --btn-color: #E31119;
  --bgcolor: #DDF1FF;
  --bgcolor2: #F3F3F3;
  --bdr-color: #D9D9D9;
  --txt-color: #333;
  --num-font: "Lato";
  --radius-pc: 10px;
  --radius-sp: 2.5641vw;

  --header-h: 70px;
  --section-pad-pc: 80px;
  --section-pad-sp: 13.3333vw; /* 52px at 390px */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-btn: 0 4px 12px rgba(227, 17, 25, 0.35);

  --white: #fff;
}

html {
  font-size: 62.5%;
}
body {
  background-color: #fff;
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","HiraKakuProN-W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif, serif;
  color: var(--txt-color);
}
html, body, h1, h2, h3, h4, h5, h6, p, figure, dl, dt, dd, ul, ol, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, ol, li {
  list-style: none;
}
em {
  font-style: normal;
}
header, footer, main, nav, article, aside, section, div, p {
  display: block;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: bold;
}
a {
  outline: none;
  text-decoration: none;
  transition: opacity .3s ease;
  color: var(--main-color);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.5897vw; /* 14px at 390px width */
  }
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
  a {
    transition: opacity .3s ease;
  }
  a:hover {
    opacity: .7;
  }
}


/* -----------------------------------------------------------------------
 基本設定
----------------------------------------------------------------------- */
.sec {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.sec.bdr {
  border-top: solid 1px var(--accent-color2);
}
.inner {
  margin: auto;
  max-width: 1140px;
  width: 89.2308%;
}
.flx {
  display: flex;
}
.ttl {
  position: relative;
  display: block;
  margin-bottom: 1em;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  color: var(--txt-color);
}
.subttl {
  display: block;
  line-height: 1.3;
  font-weight: 700;
}
.em {
	background: linear-gradient(transparent 68%, #FFEC80 0%);
}
.em-red {
  color: var(--accent-color);
}
.em-cream {
  color: #FFEC80;
}
.sec-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-color: var(--accent-color2);
  font-family: var(--num-font);
  font-weight: 900;
  text-align: center;
  color: #fff;
}
.sec__lead {
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
  .sec {
    padding: var(--section-pad-sp) 0;
  }
  .ttl {
    font-size: 7.6923vw;
  }
  .subttl {
    font-size: 5.3846vw;
  }
  .sec-label {
    width: 30.7692vw;
    border-radius: 0 0 var(--radius-sp) var(--radius-sp);
    font-size: 3.0769vw;
  }
}
@media screen and (min-width: 768px), print {
  .only-sp {
    display: none;
  }
  [href^="tel:"] {
    pointer-events: none;
  }
  .sec {
    padding: var(--section-pad-pc) 0;
  }
  .ttl {
    font-size: 3.9rem;
  }
  .subttl {
    font-size: 2.4rem;
  }
  .sec-label {
    width: 120px;
    padding: .3em 0;
    border-radius: 0 0 var(--radius-pc) var(--radius-pc);
    font-size: 1.4rem;
  }
}


/* -----------------------------------------------------------------------
 共通パーツ
----------------------------------------------------------------------- */

/* ボタン */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid;
  transition: opacity .3s ease;
  line-height: 1.3;
  text-align: center;
  box-sizing: border-box;
  padding: 1em;
  transition: all .3s ease-in;
}
.btn::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1;
  transition: all .3s ease-in;
}
.btn--red {
  background: var(--btn-color);
  border-color: var(--btn-color);
  color: #fff;
  /* padding: 14px 28px; */
}
.btn--red::before {
  /* background-image: url(../img/icon_mail.svg); */
  background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M21.4629%206.15625C21.9287%205.85974%2022.5471%205.99715%2022.8438%206.46289C23.1403%206.92867%2023.0029%207.54709%2022.5371%207.84375L13.5459%2013.5703C13.5346%2013.5775%2013.5234%2013.585%2013.5117%2013.5918C13.0542%2013.8576%2012.534%2013.997%2012.0049%2013.9971C11.4758%2013.9971%2010.9557%2013.8575%2010.4981%2013.5918C10.4864%2013.585%2010.4743%2013.5776%2010.4629%2013.5703L1.46292%207.84375C0.997088%207.54721%200.859811%206.92879%201.15628%206.46289C1.45281%205.99706%202.07124%205.85978%202.53714%206.15625L11.5078%2011.8652C11.6591%2011.9518%2011.8306%2011.9971%2012.0049%2011.9971C12.1788%2011.997%2012.3491%2011.9514%2012.5%2011.8652L21.4629%206.15625Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M21%206C21%205.44772%2020.5523%205%2020%205H4C3.44772%205%203%205.44772%203%206V18C3%2018.5523%203.44772%2019%204%2019H20C20.5523%2019%2021%2018.5523%2021%2018V6ZM23%2018C23%2019.6569%2021.6569%2021%2020%2021H4C2.34315%2021%201%2019.6569%201%2018V6C1%204.34315%202.34315%203%204%203H20C21.6569%203%2023%204.34315%2023%206V18Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E');
}
.btn--outline {
  background: #fff;
  color: var(--main-color);
  border-color: var(--main-color);
  /* padding: 10px 18px; */
}
.btn--outline::before {
  /* background-image: url(../img/icon_download.svg); */
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11%2015V3C11%202.44772%2011.4477%202%2012%202C12.5523%202%2013%202.44772%2013%203V15C13%2015.5523%2012.5523%2016%2012%2016C11.4477%2016%2011%2015.5523%2011%2015Z%22%20fill%3D%22%23363480%22%2F%3E%3Cpath%20d%3D%22M2%2019V15C2%2014.4477%202.44772%2014%203%2014C3.55228%2014%204%2014.4477%204%2015V19C4%2019.2652%204.10543%2019.5195%204.29297%2019.707C4.48051%2019.8946%204.73478%2020%205%2020H19C19.2652%2020%2019.5195%2019.8946%2019.707%2019.707C19.8946%2019.5195%2020%2019.2652%2020%2019V15C20%2014.4477%2020.4477%2014%2021%2014C21.5523%2014%2022%2014.4477%2022%2015V19C22%2019.7957%2021.6837%2020.5585%2021.1211%2021.1211C20.5585%2021.6837%2019.7957%2022%2019%2022H5C4.20435%2022%203.44151%2021.6837%202.87891%2021.1211C2.3163%2020.5585%202%2019.7956%202%2019Z%22%20fill%3D%22%23363480%22%2F%3E%3Cpath%20d%3D%22M16.293%209.29297C16.6835%208.90245%2017.3165%208.90245%2017.707%209.29297C18.0975%209.68349%2018.0975%2010.3165%2017.707%2010.707L12.707%2015.707C12.3165%2016.0976%2011.6835%2016.0976%2011.293%2015.707L6.29295%2010.707C5.90243%2010.3165%205.90243%209.68349%206.29295%209.29297C6.68348%208.90245%207.31649%208.90245%207.70702%209.29297L12%2013.5859L16.293%209.29297Z%22%20fill%3D%22%23363480%22%2F%3E%3C%2Fsvg%3E');
}
@media screen and (max-width: 767px) {
  .btn {
    width: 61.5385vw;
    border-radius: var(--radius-sp);
    font-size: 4.1026vw;
  }
}
@media screen and (min-width: 768px), print {
  .btn {
    width: 240px;
    border-radius: var(--radius-pc);
    font-size: 16px;
  }
  .btn:hover {
    opacity: 1;
  }
  .btn--red:hover {
    background: #fff;
    color: var(--btn-color);
  }
  .btn--red:hover::before {
    background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M21.4629%206.15625C21.9287%205.85974%2022.5471%205.99715%2022.8438%206.46289C23.1403%206.92867%2023.0029%207.54709%2022.5371%207.84375L13.5459%2013.5703C13.5346%2013.5775%2013.5234%2013.585%2013.5117%2013.5918C13.0542%2013.8576%2012.534%2013.997%2012.0049%2013.9971C11.4758%2013.9971%2010.9557%2013.8575%2010.4981%2013.5918C10.4864%2013.585%2010.4743%2013.5776%2010.4629%2013.5703L1.46292%207.84375C0.997088%207.54721%200.859811%206.92879%201.15628%206.46289C1.45281%205.99706%202.07124%205.85978%202.53714%206.15625L11.5078%2011.8652C11.6591%2011.9518%2011.8306%2011.9971%2012.0049%2011.9971C12.1788%2011.997%2012.3491%2011.9514%2012.5%2011.8652L21.4629%206.15625Z%22%20fill%3D%22%23E31119%22%2F%3E%3Cpath%20d%3D%22M21%206C21%205.44772%2020.5523%205%2020%205H4C3.44772%205%203%205.44772%203%206V18C3%2018.5523%203.44772%2019%204%2019H20C20.5523%2019%2021%2018.5523%2021%2018V6ZM23%2018C23%2019.6569%2021.6569%2021%2020%2021H4C2.34315%2021%201%2019.6569%201%2018V6C1%204.34315%202.34315%203%204%203H20C21.6569%203%2023%204.34315%2023%206V18Z%22%20fill%3D%22%23E31119%22%2F%3E%3C%2Fsvg%3E');
  }
  .btn--outline:hover {
    background: var(--main-color);
    color: #fff;
  }
  .btn--outline:hover::before {
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11%2015V3C11%202.44772%2011.4477%202%2012%202C12.5523%202%2013%202.44772%2013%203V15C13%2015.5523%2012.5523%2016%2012%2016C11.4477%2016%2011%2015.5523%2011%2015Z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M2%2019V15C2%2014.4477%202.44772%2014%203%2014C3.55228%2014%204%2014.4477%204%2015V19C4%2019.2652%204.10543%2019.5195%204.29297%2019.707C4.48051%2019.8946%204.73478%2020%205%2020H19C19.2652%2020%2019.5195%2019.8946%2019.707%2019.707C19.8946%2019.5195%2020%2019.2652%2020%2019V15C20%2014.4477%2020.4477%2014%2021%2014C21.5523%2014%2022%2014.4477%2022%2015V19C22%2019.7957%2021.6837%2020.5585%2021.1211%2021.1211C20.5585%2021.6837%2019.7957%2022%2019%2022H5C4.20435%2022%203.44151%2021.6837%202.87891%2021.1211C2.3163%2020.5585%202%2019.7956%202%2019Z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M16.293%209.29297C16.6835%208.90245%2017.3165%208.90245%2017.707%209.29297C18.0975%209.68349%2018.0975%2010.3165%2017.707%2010.707L12.707%2015.707C12.3165%2016.0976%2011.6835%2016.0976%2011.293%2015.707L6.29295%2010.707C5.90243%2010.3165%205.90243%209.68349%206.29295%209.29297C6.68348%208.90245%207.31649%208.90245%207.70702%209.29297L12%2013.5859L16.293%209.29297Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E%0D%0A');
  }
}


/* -----------------------------------------------------------------------
 ヘッダー
----------------------------------------------------------------------- */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 15.3846vw;
    justify-content: center;
  }
  .header__logo img {
    width: 42.3077vw;
  }
}
@media screen and (min-width: 768px), print {
  .header:not(.no-fixed) {
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header__inner {
    height: 80px;
    column-gap: 10px;
  }
  .header__logo img {
    width: 200px;
  }
  .header__btns {
    display: flex;
    gap: 12px;
  }
}


/* -----------------------------------------------------------------------
 ファーストビュー
----------------------------------------------------------------------- */
.fv {
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
}
.fv__label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: .3em;
  background-color: var(--main-color);
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv__catch {
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
}
.fv__stat {
  position: relative;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: auto;
  gap: 2em;
  overflow: hidden;
  z-index: 0;
}
.fv__stat::before {
  content: "";
  position: absolute;
  left: -2em;
  display: block;
  width: 10em;
  height: 10em;
  background-color: #DDF1FF;
  border-radius: 50%;
  z-index: -1;
}
.fv__stat-num {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.fv__stat-pct {
  font-family: var(--num-font), sans-serif;
  color: var(--accent-color);
  display: flex;
  align-items: baseline;
  gap: 0;
  font-style: italic;
  font-weight: 900;
  color: #000AC4;
}
.fv__stat-big {
  font-weight: 900;
  line-height: 1;
}
.fv__stat-text {
  font-weight: 700;
  color: var(--txt-color);
}
.fv__stat-note {
  color: #777;
}
.fv__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.fv__badges {
  background: var(--main-color);
  position: relative;
  z-index: 1;
  color: #fff;
}
.fv__badge-list {
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.fv__badge-item {
  font-weight: 700;
  position: relative;
}
.fv__badge-item::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7647%203L6.82366%209.941L2.23534%205.353L0%207.588L4.58831%2012.1763L6.82366%2014.4117L9.05869%2012.1763L16%205.23538L13.7647%203Z%22%20fill%3D%22%23FFEC80%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .fv {
    background-image: url(../img/hero_bg_sp.jpg);
  }
  .fv__label {
    max-width: 79.7436vw;
    border-radius: 0 0 var(--radius-sp) var(--radius-sp);
    font-size: 3.0769vw;
  }
  .fv__inner {
    flex-direction: column;
    padding-top: 14.8718vw;
    padding-bottom: 8.2051vw;
    min-height: auto;
  }
  .fv__content {
    width: 100%;
  }
  .fv__catch {
    font-size: 11.5385vw;
    margin-bottom: .5em;
  }
  .fv__stat {
    padding: 2.5vw;
    margin-bottom: 5.1282vw;
    width: 100%;
    border-radius: var(--radius-sp);
  }
  .fv__stat::before {
    left: -3.8462vw;
    width: 31.2821vw;
    height: 31.2821vw;
  }
  .fv__stat-big {
    font-size: 13.0769vw;
  }
  .fv__stat-pct {
    font-size: 7.6923vw;
  }
  .fv__stat-text {
    font-size: 4.1026vw;
  }
  .fv__stat-note {
    font-size: 2.5641vw;
    margin-top: 1.5385vw;
  }
  .fv__btns {
    flex-direction: column;
    gap: 3.0769vw;
    width: 100%;
  }
  .fv__badges {
    padding: 3.0769vw;
  }
  .fv__badge-list {
    align-items: stretch;
    justify-content: space-between;
    gap: .5em;
    flex-wrap: nowrap;
    /* flex-direction: column;
    align-items: center;
    gap: 1.0256vw; */
  }
  .fv__badge-item {
    font-size: 3.0769vw;
    padding-left: 1.5em;
    line-height: 1.2;
  }
  .fv__badge-item::before {
    position: absolute;
    left: 0;
    top: .2em;
    display: block;
  }
}
@media screen and (min-width: 768px), print {
  .fv {
    height: 620px;
    background-image: url(../img/hero_bg_pc.jpg);
    /* background-position: center -80px; */
  }
  .fv__label {
    max-width: 378px;
    border-radius: 0 0 var(--radius-pc) var(--radius-pc);
    font-size: 14px;
  }
  .fv__inner {
    min-height: 420px;
    padding-top: 90px;
    padding-bottom: 60px;
  }
  /* .fv__content {
    max-width: 580px;
  } */
  .fv__catch {
    font-size: 6rem;
    margin-bottom: .75em;
  }
  .fv__stat {
    max-width: 530px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: var(--radius-pc);
  }
  .fv__stat::before {
    left: -23px;
    width: 230px;
    height: 230px;
  }
  .fv__stat-big {
    font-size: 9.6rem;
  }
  .fv__stat-pct {
    font-size: 6rem;
  }
  .fv__stat-dtl {
    font-size: 2.1rem;
  }
  .fv__stat-text {
    margin-top: 4px;
  }
  .fv__stat-note {
    font-size: 1.3rem;
    margin-top: 6px;
  }
  .fv__btns {
    gap: 16px;
  }
  .fv__badges {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 614px;
    margin: auto;
    border-radius: var(--radius-pc) var(--radius-pc) 0 0;
  }
  .fv__badge-list {
    justify-content: space-evenly;
  }
  .fv__badge-item {
    font-size: 1.4rem;
    padding: .35em;
  }
  .fv__badge-item::before {
    display: inline-block;
    margin-right: .5em;
    vertical-align: middle;
  }
}


/* -----------------------------------------------------------------------
 ページ内ナビ
----------------------------------------------------------------------- */
.pagenav {
}
.pagenav__list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
}
.pagenav__list li a {
  display: block;
  background-color: var(--menu-color);
  color: #fff;
  font-weight: 700;
  transition: background-color .2s ease;
}
.pagenav__list li a:hover {
  background-color: var(--main-color);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .pagenav {
    padding: 7.6923vw 0;
  }
  .pagenav__list {
    flex-direction: column;
    justify-content: flex-start;
    border-radius: var(--radius-sp);
  }
  .pagenav__list li:not(:last-of-type) {
    border-bottom: solid 1px #8A99C2;
  }
  .pagenav__list li a {
    font-size: 4.6154vw;
    padding: 5.1282vw 7.6923vw;
  }
  .pagenav__icon {
    display: inline-block;
    margin-right: 1em;
  }
  .pagenav__icon img {
    width: 5.1282vw;
  }
  
}
@media screen and (min-width: 768px), print {
  .pagenav {
    padding: 50px 0;
  }
  .pagenav__list {
    flex-wrap: nowrap;
    border-radius: var(--radius-pc);
  }
  .pagenav__list li {
    width: 20%;
    text-align: center;
  }
  .pagenav__list li:not(:last-of-type) {
    border-right: solid 1px #8A99C2;
  }
  .pagenav__list li a {
    font-size: 1.6rem;
    padding: 16px;
  }
  .pagenav__icon,
  .pagenav__icon img {
    display: block;
    margin: 0 auto .5em;
    width: 20px;
  }
}


/* -----------------------------------------------------------------------
 CHECK セクション
----------------------------------------------------------------------- */
.check {
  background: var(--bgcolor);
}
.check__list {
  flex-wrap: wrap;
  margin-top: 4em;
}
.check__item {
  position: relative;
  background-color: #fff;
  border: solid 1px #B5DEFF;
}
.check__item-icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 50%;
}
.check__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.check__item-ttl {
  margin-bottom: 1em;
}
.check__item > p {
  padding: 1em;
  background-color: var(--bgcolor2);
}
.check__alert {
  border: solid #FBAC00;
  background-color: #FFF2A9;
  overflow: hidden;
}
.check__alert-ttl {
  font-weight: 700;
  background-color: #FFC919;
  line-height: 1.3;
}
.check__alert-btn {
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .check__lead {
    margin-bottom: 6.1538vw;
  }
  .check__list {
		flex-direction: column; 
		gap: 17.9487vw; 
		width: 100%;
    margin-bottom: 8.2051vw;
  }
  .check__item {
    padding: 13.8462vw 7.6923vw 7.6923vw;
    border-radius: var(--radius-sp);
  }
  .check__item-icon {
    top: -10.2564vw;
    width: 20.5128vw;
    height: 20.5128vw;
  }
  .check__item-icon img {
    width: 10.2564vw;
  }
  .check__item-ttl {
    font-size: 5.3846vw;
  }
  .check__item > p {
    border-radius: var(--radius-sp);
  }
  .check__alert {
    border-width: .7692vw;
    border-radius: var(--radius-sp);
  }
  .check__alert-ttl {
    font-size: 6.1538vw;
    text-align: center;
    padding: 5.1282vw;
  }
  .check__alert p {
    text-align: left;
    padding: 5.1282vw;
  }
  .check__alert-btn {
    padding: 5.1282vw;
  }
}
@media screen and (min-width: 768px), print {
  .check__lead {
    margin-bottom: 40px;
  }
  .check__list {
		flex-direction: row; 
		gap: min(48px,4.1vw); 
		align-items: stretch; 
		width: 100%; 
    margin-bottom: 48px;
  }
  .check__item {
    flex: 1;
    min-width: 240px;
    padding: 60px 30px 40px;
    border-radius: var(--radius-pc);
  }
  .check__item-icon {
    top: -40px;
    width: 80px;
    height: 80px;
  }
  .check__item-icon img {
    width: 40px;
  }
  .check__item > p {
    border-radius: var(--radius-pc);
  }
  .check__item-ttl {
    font-size: 2.4rem;
  }
  .check__alert {
    border-width: 3px;
    border-radius: var(--radius-pc);
    max-width: 940px;
    margin: auto;
  }
  .check__alert-ttl {
    font-size: 3rem;
    padding: 20px 40px;
  }
  .check__alert p {
    padding: 20px 40px;
    line-height: 1.8;
  }
  .check__alert-btn {
    padding: 1em 0;
  }
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .grid__item--1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .grid__item--2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .grid__item--3 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
  .grid__item--4 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
}


/* -----------------------------------------------------------------------
 ANSWER セクション
----------------------------------------------------------------------- */
.answer {
  background-color: #1246CC;
  color: #fff;
}
.answer__ttl {
  color: #fff;
}
.answer p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .answer {
    text-align: left;
  }
}
@media screen and (min-width: 768px), print {
  .answer {
    text-align: center;
  }
  /* .answer__lead {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  } */
}


/* -----------------------------------------------------------------------
 VIDEO セクション
----------------------------------------------------------------------- */
.video {
  background-color:#fff;
  color: var(--txt-color);
  border: solid var(--main-color);
}
.video-label {
  background-color: var(--main-color);
}
.video__wrap {
  margin: 0 auto;
}
.video__player {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .video {
    text-align: left;
    border-width: .7692vw;
    border-radius: var(--radius-sp);
    padding-left: 5.1282vw;
    padding-right: 5.1282vw;
    padding-bottom: 2em;
  }
  .video__lead {
    margin-bottom: 6.1538vw;
  }
  .video__ttl {
    font-size: 6.9231vw;
  }
  .video__caption {
    margin-top: 1em;
    text-align: center;
  }
}
@media screen and (min-width: 768px), print {
  .video {
    margin: 3em auto 0;
    text-align: center;
    max-width: 900px;
    padding: 50px 75px;
    border-width: 3px;
    border-radius: var(--radius-pc);
  }
  .video__lead {
    max-width: 700px;
    margin: 0 auto 36px;
  }
  .video-label {
    top: -3px;
  }
  .video__ttl {
    font-size: 3.3rem;
  }
  .video__wrap {
    max-width: 800px;
  }
  .video__caption {
    margin-top: 2em;
  }
}


/* -----------------------------------------------------------------------
 ABOUT（調査内容）セクション
----------------------------------------------------------------------- */
.about {
  background: #fff;
}
.about__item {
  border: solid 1px var(--bdr-color);
  overflow: hidden;
}
.about__item-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
}
.about__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__item-ttl {
  text-align: center;
  margin-bottom: 1em;
}
.about__check-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: .5em;
}
.about__check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25em;
  height: 1.25em;
  background: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7647%203L6.82366%209.941L2.23534%205.353L0%207.588L4.58831%2012.1763L6.82366%2014.4117L9.05869%2012.1763L16%205.23538L13.7647%203Z%22%20fill%3D%22%23FF4D00%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
  background-size: contain;
  display: block;
}
.about__option {
  position: relative;
  border: solid #FFC919;
  text-align: center;
}
.option-label {
  background-color: #FFC919;
}
.about__option-label {
  font-weight: 700;
  border-bottom: solid 1px var(--bdr-color);
  margin-bottom: 1em;
  padding-bottom: .5em;
}
@media screen and (max-width: 767px) {
  .about__list {
    flex-direction: column;
    gap: 6.1538vw;
    margin-bottom: 8.2051vw;
  }
  .about__item {
    border-radius: var(--radius-sp);
  }
  .about__item-txt {
    padding: 7.6923vw 7.6923vw 5.1282vw;
  }
  .about__option {
    padding: 7.6923vw 4.1026vw;
    border-width: .7692vw;
    border-radius: var(--radius-sp);
  }
  .about__option-label {
    font-size: 5.3846vw;
  }
  .about__option p {
    margin-bottom: 4.1026vw;
    text-align: left;
  }
}
@media screen and (min-width: 768px), print {
  .about__ttl {
    text-align: center;
  }
  .about__lead {
    margin-bottom: 40px;
  }
  .about__list {
		flex-direction: row; 
    flex-wrap: wrap;
		gap: min(48px,4.1vw); 
		align-items: stretch; 
		width: 100%; 
    margin-bottom: 48px;
  }
  .about__item {
    flex: 1;
    min-width: 240px;
    border-radius: var(--radius-pc);
  }
  .about__item-txt {
    padding: 30px;
  }
  .about__option {
    padding: 40px 36px;
    border-width: 3px;
    border-radius: var(--radius-pc);
    max-width: 940px;
    margin: auto;
  }
  .about__option-label {
    font-size: 2.4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .about__option p {
    margin-bottom: 20px;
  }
}


/* -----------------------------------------------------------------------
 MERIT セクション
----------------------------------------------------------------------- */
.merit {
  background-color: var(--bgcolor);
  text-align: center;
}
.merit__list {
  flex-wrap: wrap;
}
.merit__item {
  background-color: #fff;
  overflow: hidden;
}
.merit__item-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  z-index: 0;
}
.merit__item-icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: var(--sub-color);
  z-index: -1;
}
.merit__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.merit__item-ttl {
  margin-bottom: 1em;
  line-height: 1.5;
}
.merit__item-txt p {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .merit__list {
    flex-direction: column;
    gap: 6.1538vw;
  }
  .merit__item {
    border-radius: var(--radius-sp);
    /* padding: 5.1282vw 4.6154vw; */
  }
  .merit__item-icon {
    height: 23.0769vw;
  }
  .merit__item-icon img {
    width: 13.3333vw;
    height: 13.3333vw;
  }
  .merit__item-txt {
    padding: 7.6923vw 7.6923vw 5.1282vw;
  }
}
@media screen and (min-width: 768px), print {
  .merit__list {
		flex-direction: row; 
		gap: min(48px,4.1vw); 
		align-items: stretch; 
		width: 100%; 
  }
  .merit__item {
    flex: 1;
    min-width: 240px;
    border-radius: var(--radius-pc);
  }
  .merit__item-icon {
    height: 174px;
  }
  .merit__item-icon img {
    width: 80px;
    height: 80px;
  }
  .merit__item-txt {
    padding: 30px;
  }
}


/* -----------------------------------------------------------------------
 WHY US セクション
----------------------------------------------------------------------- */
.why {
}
.why__ttl {
}
.why__list {
  display: flex;
  flex-direction: column;
}
.why__item {
  align-items: flex-start;
  overflow: hidden;
}
.why__item-img {
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4/3;
}
.why__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__item-body {
  border: solid 1px var(--bdr-color);
}
.why__item-ttl {
  background-color: var(--main-color);
  color: #fff;
}
.why__detail-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: .5em;
}
.why__detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25em;
  height: 1.25em;
  background: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7647%203L6.82366%209.941L2.23534%205.353L0%207.588L4.58831%2012.1763L6.82366%2014.4117L9.05869%2012.1763L16%205.23538L13.7647%203Z%22%20fill%3D%22%23FF4D00%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .why__ttl {
    text-align: left;
    margin-bottom: 6.1538vw;
  }
  .why__list {
    gap: 8.2051vw;
  }
  .why__item {
    flex-direction: column;
    border-radius: var(--radius-sp);
  }
  .why__item-img {
    width: 100%;
  }
  .why__item-body {
    border-top: none;
    border-radius: 0 0 var(--radius-sp) var(--radius-sp);
  }
  .why__item-ttl {
    padding: 2.5641vw 7.6923vw;
  }
  .why__detail-list {
    padding: 5.1282vw 7.6923vw 5.1282vw;
  }
  .why__detail-list li {
    margin-bottom: 2.0513vw;
  }
}
@media screen and (min-width: 768px), print {
  .why__ttl {
    text-align: center;
    margin-bottom: 40px;
  }
  .why__list {
    gap: 32px;
  }
  .why__item {
    flex-wrap: nowrap;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: var(--radius-pc);
  }
  .why__item-img {
    flex-shrink: 0;
    max-width: 470px;
    width: 34%;
    min-height: 296px;
  }
  .why__item-body {
    width: 66%;
    border-left: none;
    border-radius: 0 var(--radius-pc) var(--radius-pc) 0;
  }
  .why__item-ttl {
    padding: 25px 40px;
  }
  .why__detail-list {
    padding: 30px 40px;
  }
  .why__detail-list li {
    margin-bottom: 1em;
  }
}


/* -----------------------------------------------------------------------
 PLAN セクション
----------------------------------------------------------------------- */
/* .plan {
  background: var(--bgcolor2);
}
.plan__box {
  background-color: #FFEC80;
  margin: 0 auto;
  border: solid #FFC919;
}
.plan__box-type {
  font-weight: 700;
  color: var(--main-color);
}
.plan__box-note {
  color: #666;
}
.plan__price {
  line-height: 1;
}
.plan__price em {
  font-family: var(--num-font), sans-serif;
  font-weight: 900;
  color: var(--accent-color);
}
.plan__price-unit {
  font-weight: 700;
  color: var(--txt-color);
}
.plan__price-note {
  color: #777;
}
@media screen and (max-width: 767px) {
  .plan {
    text-align: left;
  }
  .plan__lead {
    margin-bottom: 5.1282vw;
  }
  .plan__box {
    padding: 7.6923vw 5.1282vw;
    text-align: center;
    border-width: .7692vw;
    border-radius: var(--radius-sp);
  }
  .plan__box-type {
    font-size: 4.1026vw;
    margin-bottom: 1.0256vw;
  }
  .plan__box-note {
    font-size: 3.0769vw;
    margin-bottom: 4.1026vw;
  }
  .plan__price {
    margin-bottom: 1.0256vw;
  }
  .plan__price em {
    font-size: 16.9231vw;
  }
  .plan__price-unit {
    font-size: 4.1026vw;
  }
  .plan__price-note {
    font-size: 3.0769vw;
    margin-bottom: 5.1282vw;
  }
}
@media screen and (min-width: 768px), print {
  .plan {
    text-align: center;
  }
  .plan__lead {
    margin-bottom: 32px;
  }
  .plan__box {
    padding: 48px 40px;
    border-width: 3px;
    border-radius: var(--radius-pc);
    max-width: 940px;
  }
  .plan__box-type {
    font-size: 2rem;
    margin-bottom: 4px;
  }
  .plan__box-note {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .plan__price {
    margin-bottom: 4px;
  }
  .plan__price em {
    font-size: 7.2rem;
  }
  .plan__price-unit {
    font-size: 2rem;
  }
  .plan__price-note {
    font-size: 1.3rem;
    margin-bottom: 28px;
  }
}
 */

 /* -----------------------------------------------------------------------
 PLAN セクション
----------------------------------------------------------------------- */
.plan {
  background: var(--bgcolor2);
}
.plan__box {
  background-color: #FFEC80;
  margin: 0 auto;
  border: solid #FFC919;
}
.plan__box-main {
  display: flex;
  align-items: center;
}
.plan__box-type {
  font-weight: 700;
  color: #fff;
  background: var(--main-color);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.plan__price em {
  font-style: italic;
}
.plan__price-wrap {
  flex: 1;
}
.plan__price {
  line-height: 1;
}
.plan__price em {
  font-family: var(--num-font), sans-serif;
  font-weight: 900;
  color: var(--btn-color);
}
.plan__price-unit {
  font-weight: 900;
}
.plan__price-note {
  color: #999;
}
.plan__box-note {
  background: #FFF5BA;
  text-align: center;
}
.plan__btn {
  display: flex;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .plan {
    text-align: left;
  }
  .plan__lead {
    margin-bottom: 5.1282vw;
  }
  .plan__box {
    padding: 5.1282vw;
    text-align: center;
    border-width: .7692vw;
    border-radius: var(--radius-sp);
    margin-bottom: 6.1538vw;
  }
  .plan__box-main {
    flex-direction: column;
    align-items: center;
    gap: 3.0769vw;
    margin-bottom: 4.1026vw;
  }
  .plan__box-type {
    font-size: 4.6154vw;
    padding: .1em 1em;
    border-radius: var(--radius-sp);
    margin-left: auto;
    margin-right: auto;
  }
  .plan__price em {
    font-size: 14.6154vw;
  }
  .plan__price-unit {
    font-size: 4.6154vw;
  }
  .plan__price-note {
    margin-top: 1.5385vw;
    text-align: right;
  }
  .plan__box-note {
    padding: 3.0769vw 4.1026vw;
    border-radius: var(--radius-sp);
  }
}
@media screen and (min-width: 768px), print {
  .plan {
    text-align: center;
  }
  .plan__lead {
    margin-bottom: 40px;
  }
  .plan__box {
    padding: 34px 40px;
    border-width: 3px;
    border-radius: var(--radius-pc);
    max-width: 940px;
    margin-bottom: 40px;
  }
  .plan__box-main {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    justify-content: center;
    max-width: 708px;
  }
  .plan__box-type {
    font-size: 2.4rem;
    padding: .2em 1em;
    border-radius: var(--radius-pc);
    margin-bottom: 10px;
  }
  .plan__price em {
    font-size: 8.1rem;
  }
  .plan__price-unit {
    font-size: 2.2rem;
  }
  .plan__price-note {
    font-size: 1.3rem;
    margin-top: 4px;
    text-align: right;
  }
  .plan__box-note {
    font-size: 1.4rem;
    padding: 14px 24px;
    border-radius: var(--radius-pc);
  }
  .plan__btn {
    width: fit-content;
    padding: 18px 48px;
    font-size: 1.8rem;
  }
}


/* -----------------------------------------------------------------------
 FLOW セクション
----------------------------------------------------------------------- */
.flow {
  background: #fff;
}
.flow__inner {
  max-width: 800px;
}
.flow__notes {
  position: relative;
  background-color: #FFC919;
  padding: 1.5em 5.5em 1.5em 1.5em;
  margin-bottom: 3em;
}
.flow__notes::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  display: block;
  width: 4em;
  height: 4em;
  margin: auto;
  background: url('../img/icon_flow.svg') no-repeat center;
  background-size: contain;
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.flow__item {
  /* display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--bdr-color);
  border-radius: var(--radius-md); */
  position: relative;
}
.flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3px;
  background-color: #E1E0F0;
}
/* .flow__item + .flow__item::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: var(--main-color) transparent transparent transparent;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
} */
.flow__item-num {
  position: absolute;
  top: 0;
  left: 0;
  /* flex-shrink: 0; */
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__item-num span {
  font-family: var(--num-font), sans-serif;
  font-weight: 900;
  color: #fff;
}
.flow__item-body {
  border: solid 1px var(--bdr-color);
  margin-left: auto;
  margin-right: 0;
}
.flow__item-ttl {
}
.flow__item-days {
  position: absolute;
  top: 0;
  right: 0;
  /* flex-shrink: 0; */
  background: var(--bgcolor);
  color: #1246CC;
  font-weight: 700;
  align-self: center;
  white-space: nowrap;
}
.flow__item-notes {
  margin-top: 1em;
  padding: 1em 1em 1em 2em;
  background-color: #FFF9D4;
  color: #BA6E03;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .flow__ttl {
    margin-bottom: 3.0769vw;
  }
  .flow__lead {
    margin-bottom: 6.1538vw;
  }
  .flow__notes {
    border-radius: var(--radius-sp);
  }
  .flow__notes::after {
    right: 5.1282vw;
    width: 12.8205vw;
    height: 12.8205vw;
  }
  .flow__list {
    margin: 0 auto;
    /* gap: 7.6923vw; */
  }
  .flow__item {
    /* flex-wrap: wrap;
    gap: 3.0769vw;
    padding: 4.6154vw 4.1026vw; */
    margin-bottom: 7.6923vw;
  }
  .flow__item:not(:last-child)::before {
    left: 5vw;
    height: calc(100% + 7.6923vw);
  }
  .flow__item-num {
    width: 10.2564vw;
    height: 10.2564vw;
  }
  .flow__item-num span {
    font-size: 5.3846vw;
  }
  .flow__item-body {
    /* flex: none; */
    width: 74.3590vw;
    padding: 5.1282vw;
    border-radius: var(--radius-sp);
  }
  .flow__item-ttl {
    font-size: 4.6154vw;
    width: 41.0256vw;
    margin-bottom: 2.0513vw;
  }
  .flow__item-days {
    width: 28.2051vw;
    text-align: center;
    font-size: 2.8205vw;
    padding: 1.0256vw 3.0769vw;
    border-radius: 0 var(--radius-sp) 0 0;
  }
  .flow__item-notes {
    border-radius: var(--radius-sp);
    font-size: 3.0769vw;
  }
}
@media screen and (min-width: 768px), print {
  .flow__ttl {
    text-align: center;
    margin-bottom: 16px;
  }
  .flow__lead {
    margin-bottom: 40px;
  }
  .flow__notes {
    border-radius: var(--radius-pc);
    padding-right: 5em;
  }
  .flow__notes::after {
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .flow__list {
    margin: 0 auto;
    /* gap: 30px; */
  }
  .flow__item {
    /* gap: 24px;
    padding: 28px 32px; */
    margin-bottom: 30px;
  }
  .flow__item:not(:last-child)::before {
    left: 34px;
    height: calc(100% + 30px);
  }
  .flow__item-body {
    max-width: 680px;
    width: 88%;
    border-radius: var(--radius-pc);
    padding: 40px 140px 40px 40px;
  }
  .flow__item-num {
    width: 70px;
    height: 70px;
  }
  .flow__item-num span {
    font-size: 3.6rem;
  }
  .flow__item-ttl {
    margin-bottom: .5em;
  }
  .flow__item-days {
    width: 130px;
    font-size: 1.4rem;
    padding: .6em 1em;
    border-radius: 0 var(--radius-pc) 0 0;
  }
  .flow__item-notes {
    border-radius: var(--radius-pc);
    font-size: 1.4rem;
  }
}


/* -----------------------------------------------------------------------
 FAQ セクション
----------------------------------------------------------------------- */
.faq {
  background-color: var(--bgcolor2);
}
.faq__list {
	display: flex;
	flex-direction: column;
}

.faq__item {
	background-color: var(--white);
	border-radius: var(--radius-md);
	/* box-shadow: var(--shadow-card); */
	overflow: hidden;
}

.faq__question {
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background-color .2s;
}
.faq__q-icon {
	color: #1246CC;
	font-family: var(--num-font);
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}
.faq__q-text {
	flex: 1;
	font-weight: 700;
	line-height: 1.5;
}

.faq__toggle-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: transform .3s;
}
.faq__toggle-icon::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--main-color);
	border-bottom: 2px solid var(--main-color);
	transform: rotate(45deg) translateY(-3px);
	transition: transform .3s;
}
/* open時は上向き */
.faq__item.is-open .faq__toggle-icon::before {
	transform: rotate(-135deg) translateY(-3px);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .5s ease;
}
.faq__answer-inner {
	display: flex;
	align-items: flex-start;
}

.faq__a-icon {
	color: var(--accent-color);
	font-family: var(--num-font);
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

.faq__answer p {
	color: var(--main-text-color);
	line-height: 1.7;
	flex: 1;
}

/* SP */
@media (max-width: 767px) {
	.faq__list     { gap: 5.1282vw; }
	.faq__item {
		border-radius: var(--radius-sp);
	}
	.faq__question { padding: 4.10vw; gap: 3.08vw; 
		align-items: flex-start;
	}
	.faq__q-icon   { width: 7.6923vw; height: 7.6923vw; font-size: 5.3846vw; }
	.faq__q-text {
		font-size: 4.1026vw;
	}
	.faq__toggle-icon { width: 6.15vw; height: 6.15vw; }
	.faq__answer-inner { padding: 4.10vw; gap: 3.08vw; }
	.faq__a-icon   { width: 7.6923vw; height: 7.6923vw; font-size: 5.3846vw; }
}

/* PC */
@media (min-width: 768px) {
	.faq__inner    { max-width: 800px; display: flex; flex-direction: column; gap: 40px; }
	.faq__list     { gap: 16px; margin: 0 auto; width: 100%; }
	.faq__item {
		border-radius: var(--radius-pc);
	}
	.faq__question { padding: 29px 30px; gap: 20px; }
	.faq__q-icon   { width: 30px; height: 30px; font-size: 2.4rem; }
	.faq__q-text {
		font-size: 1.8rem;
	}
	.faq__toggle-icon { width: 32px; height: 32px; }
	.faq__answer-inner { padding: 24px 28px; gap: 20px; }
	.faq__a-icon   { width: 30px; height: 30px; font-size: 2.4rem; }
}

/* .faq {
  background: var(--bgcolor2);
}
.faq__ttl {
  color: var(--main-color);
}
.faq__list {
	display: flex;
	flex-direction: column;
}

.faq__item {
	background-color: #fff;
	overflow: hidden;
}
.faq__q {
  padding: 0;
}
.faq__q-btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
  color: var(--txt-color);
  text-align: left;
  line-height: 1.5;
}
.faq__q-btn::before {
  content: 'Q.';
  color: var(--main-color);
  font-family: var(--num-font), sans-serif;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1.4;
}
.faq__q-btn::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--main-color);
  border-radius: 50%;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100%;
  transition: transform .3s ease;
  align-self: center;
}
.faq__q-btn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  line-height: 1.8;
  color: #555;
  position: relative;
}
.faq__a::before {
  content: 'A.';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-family: var(--num-font), sans-serif;
  font-weight: 900;
  line-height: 1.4;
}
.faq__item.is-open .faq__a {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .faq__ttl {
    margin-bottom: 5.1282vw;
  }
	.faq__item {
		border-radius: var(--radius-sp);
	}
  .faq__q-btn {
    padding: 4.1026vw 0;
    gap: 3.0769vw;
  }
  .faq__q-btn::before {
    font-size: 4.1026vw;
  }
  .faq__a {
    padding-left: 6.1538vw;
  }
  .faq__a::before {
    font-size: 4.1026vw;
  }
  .faq__item.is-open .faq__a {
    padding-bottom: 4.1026vw;
  }
}
@media screen and (min-width: 768px), print {
  .faq__inner {
    max-width: 800px;
  }
  .faq__ttl {
    margin-bottom: 32px;
  }
	.faq__item {
		border-radius: var(--radius-pc);
	}
  .faq__q-btn {
    padding: 20px 0;
    gap: 16px;
  }
  .faq__q-btn::before {
    font-size: 1.8rem;
  }
  .faq__a {
    padding-left: 2.2em;
  }
  .faq__a::before {
    font-size: 1.8rem;
  }
  .faq__item.is-open .faq__a {
    padding-bottom: 20px;
  }
} */


/* -----------------------------------------------------------------------
 NEXT STEP セクション
----------------------------------------------------------------------- */
.nextstep {
  background-color: #FFF2DD;
  text-align: center;
}
.nextstep__ttl {
}
.nextstep__tags {
  flex-wrap: wrap;
}
.nextstep__tag {
  background-color: #fff;
  border: solid 1px #FFC7AF;
  font-weight: 700;
  border-radius: 2em;
  text-align: center;
}
.nextstep__tag::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.7647%203L6.82366%209.941L2.23534%205.353L0%207.588L4.58831%2012.1763L6.82366%2014.4117L9.05869%2012.1763L16%205.23538L13.7647%203Z%22%20fill%3D%22%23FF4D00%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
  background-size: contain;
  display: inline-block;
  margin-right: .5em;
  vertical-align: middle;
}
.nextstep__flow {
  margin-top: 2em;
  align-items: center;
  flex-wrap: wrap;
}
.nextstep__flow-step {
  position: relative;
  background-color: #4341A4;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
}
.nextstep__flow-step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  background-color: #fff;
}
.nextstep__flow-passed {
  position: absolute;
}
.nextstep__flow-step:last-of-type {
  background-color: #fff;
  color: var(--main-color);
}
/* .nextstep__flow-step--accent {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
} */
.nextstep__group {
  background-color: var(--main-color);
  margin: 0 auto;
  color: #fff;
}
.nextstep__group-ttl {
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .nextstep__ttl {
    margin-bottom: 4.1026vw;
  }
  .nextstep__lead {
    margin-bottom: 7.6923vw;
  }
  .nextstep__tags {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5641vw;
    margin-bottom: 7.6923vw;
  }
  .nextstep__tag {
    font-size: 4.1026vw;
    padding: 1.5385vw 4.1026vw;
    width: 64.1026vw;
  }
  .nextstep__flow {
    flex-direction: column;
    gap: 10.2564vw;
    margin-bottom: 6.1538vw;
  }
  .nextstep__flow-step {
    font-size: 4.6154vw;
    padding: 4.1026vw 3.0769vw;
    border-radius: var(--radius-sp);
    width: 57.9487vw;
  }
  .nextstep__flow-step:not(:last-of-type)::after {
    bottom: -1.5em;
    left: 0;
    right: 0;
    height: .8em;
    margin: auto;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
  .nextstep__flow-passed {
    bottom: -2.2em;
    right: -4.5em;
    left: 0;
    margin: auto;
    font-size: 3.5897vw;
  }
  .nextstep__group {
    padding: 5.1282vw 4.1026vw;
    border-radius: var(--radius-sp);
  }
  .nextstep__group-ttl {
    font-size: 6.1538vw;
    margin-bottom: 2.5641vw;
  }
}
@media screen and (min-width: 768px), print {
  .nextstep__ttl {
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 808px;
  }
  .nextstep__lead {
    margin-bottom: 24px;
  }
  .nextstep__tags {
    justify-content: center;
    gap: 40px;
    margin-bottom: 36px;
  }
  .nextstep__tag {
    font-size: 1.8rem;
    padding: 14px 20px;
    width: 300px;
  }
  .nextstep__flow {
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: min(70px, 6%);
  }
  .nextstep__flow-step {
    max-width: 226px;
    width: 30%;
    font-size: 1.8rem;
    padding: 34px 16px;
    border-radius: var(--radius-pc);
  }
  .nextstep__flow-step:not(:last-of-type)::after {
    top: 0;
    bottom: 0;
    right: -16%;
    width: .8em;
    margin: auto;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
  }
  .nextstep__flow-passed {
    top: 1em;
    right: -18%;
    font-size: 1.4rem;
  }
  .nextstep__group {
    padding: 28px 36px;
    max-width: 940px;
    border-radius: var(--radius-pc);
  }
  .nextstep__group-ttl {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .nextstep__group-lead {
    max-width: 655px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* -----------------------------------------------------------------------
 DOWNLOAD セクション
----------------------------------------------------------------------- */
.download {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.download::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: var(--main-color);
  z-index: -1;
}
.download__flx {
  align-items: center;
}
.download__img img {
  width: 100%;
}
.download__body {
  flex: 1;
}
.download__label {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  border-radius: 1em;
  padding: .1em 1em;
  margin-bottom: 1em;
}
.download__ttl {
  margin-bottom: .25em;
  text-align: left;
}
.download__sub {
  color: var(--main-color);
  margin-bottom: 1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .download::after {
    right: 0;
    width: 94.8718vw;
    height: 94.8718vw;
  }
  .download__inner {
    width: 84.8718%;
  }
  .download__flx {
    flex-direction: column;
    gap: 6.1538vw;
  }
  .download__ttl {
    font-size: 6.9231vw;
  }
  .download__sub {
    font-size: 4.1026vw;
  }
  .download__img {
    width: 53.8462vw;
    margin: 0 auto;
  }
  .download__body p:not(.download__label):not(.download__sub) {
    margin-bottom: 5.1282vw;
  }
  .download__btn {
    text-align: center;
  }
}
@media screen and (min-width: 768px), print {
  .download::after {
    right: 0;
    width: 370px;
    height: 370px;
  }
  .download__flx {
    gap: 40px;
  }
  .download__sub {
    font-size: 1.8rem;
  }
  .download__img {
    flex-shrink: 0;
    width: 220px;
  }
  .download__body p:not(.download__label):not(.download__sub) {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .download::after {
    left: 910px;
    right: 0;
    margin: auto;
    width: 370px;
    height: 370px;
  }
}


/* -----------------------------------------------------------------------
 CTA セクション
----------------------------------------------------------------------- */
.cta {
  background: var(--sub-color);
  text-align: center;
  color: #fff;
}
.cta__ttl {
  color: #fff;
  margin-bottom: 12px;
}
.cta__btn {
  position: relative;
  gap: 4px;
  margin-bottom: 16px;
  max-width: 500px;
  width: auto;
  background-color: var(--btn-color);
  border: none;
  color: #fff;
  overflow: hidden;
  z-index: 0;
  text-align: left;
  gap: 1em;
}
.cta__btn::before {
  content: none;
}
.cta__btn::after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #BE1A20;
  z-index: -1;
}
.cta__btn-note {
  padding: .25em .5em;
  background-color: #FFC919;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  /* .cta__lead {
    margin-bottom: 6.1538vw;
  } */
  .cta__btn {
    padding: 6.1538vw;
    width: 100%;
    margin-bottom: 4.1026vw;
  }
  .cta__btn::after {
    width: 50.5128vw;
    height: 50.5128vw;
  }
  .cta__btn-note {
    border-radius: 1.2821vw;
    font-size: 3.0769vw;
  }
  /* .cta__hours {
    font-size: 3.0769vw;
    margin-bottom: 4.1026vw;
  } */
}
@media screen and (min-width: 768px), print {
  .cta__ttl {
    font-size: 3.6rem;
  }
  .cta__btn {
    max-width: 650px;
    width: 90%;
    font-size: 3rem;
  }
  .cta__btn::after {
    bottom: 0;
    width: 197px;
    height: 197px;
  }
  .cta__btn-note {
    border-radius: 5px;
    font-size: 1.6rem;
    transition: all .3s ease-in;
  }
  .cta__hours {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  .cta__btn:hover {
    background: #BE1A20;
    /* color: var(--btn-color); */
  }
  .cta__btn:hover .cta__btn-note {
    background-color: var(--accent-color2);
  }
  /* .cta__btn:hover::after {
    background-color: var(--btn-color);
  } */
}


/* -----------------------------------------------------------------------
 フッター
----------------------------------------------------------------------- */
.footer__inner {
  position: relative;
}
.footer__group {
  position: absolute;
  top: 0;
  left: 0;
  padding: .4em .6em;
  background-color: var(--bgcolor2);
}
.footer__nav ul {
  flex-wrap: wrap;
  gap: 0;
}
.footer__nav ul li a {
  display: block;
  color: var(--txt-color);
}
.footer__copy {
  display: block;
  font-family: var(--num-font);
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 17.9487vw 0 24.6154vw;
  }
  .footer__group {
    right: 0;
    margin: auto;
    border-radius: 0 0 var(--radius-sp) var(--radius-sp);
    font-size: 3.0769vw;
  }
  .footer_flx {
    flex-direction: column;
    gap: 1em;
  }
  .footer__logo {
    margin-bottom: 3.0769vw;
  }
  .footer__logo img {
    width: 42.3077vw;
  }
  .footer__address {
    font-size: 3.5897vw;
  }
  .footer__nav ul {
    flex-direction: column;
    margin-bottom: 4.1026vw;
  }
  .footer__nav ul li a {
    font-size: 4.6154vw;
    padding: 1.5385vw 0;
  }
  .footer__copy {
    font-size: 4.1026vw;
  }
}
@media screen and (min-width: 768px), print {
  .footer__inner {
    padding: 50px 0 20px;
  }
  .footer__group {
    border-radius: 0 0 var(--radius-pc) var(--radius-pc);
    font-size: 12px;
  }
  .footer_flx {
    align-items: center;
    justify-content: space-between;
  }
  .footer__logo {
    margin-bottom: 16px;
  }
  .footer__logo img {
    width: 200px;
  }
  .footer__address {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .footer__nav ul {
    justify-content: flex-end;
    margin-bottom: 24px;
  }
  .footer__nav ul li a {
    line-height: 1.1;
    font-size: 1.4rem;
  }
  .footer__nav ul li + li {
    padding-left: 1em;
    margin-left: 1em;
    border-left: solid 1px var(--bdr-color);
  }
  .footer__copy {
    text-align: right;
    font-size: 1.4rem;
  }
}

/* -----------------------------------------------------------------------
SP固定メニュー
----------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .fixed-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    height: 15.3846vw;
  }
  .fixed-menu .btn {
    border-radius: 0;
    font-size: 3.5897vw;
  }
}


/* -----------------------------------------------------------------------
 form
----------------------------------------------------------------------- */
.form {
  background-color: var(--bgcolor);
}
.form__inner {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .form__frame iframe {
    border-radius: var(--radius-sp);
  }
}
@media screen and (min-width: 768px), print {
  .form__frame iframe {
    border-radius: var(--radius-pc);
  }
}

