@charset "UTF-8";
:root {
  --text: #333;
  --main: #00154B;
  --bg: #E6EAF5;
  --ac1: #FFFF00;
  --ac2: #2174DF;
  --gothic: "Noto Sans JP", Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --maru: "M PLUS 2", Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --ls: 0;
  --lh: 1.4;
  --innerWidth: calc(100% - 30px);
  --innerMax: 600px;
  --speed: 0.3s;
  --icon: "";
}
@media screen and (min-width: 768px) {
  :root {
    --innerMax: 1200px;
  }
}

* {
  letter-spacing: var(--ls);
  line-height: var(--lh);
}

html {
  margin: 0 !important;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-family: var(--gothic);
  font-weight: 400;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
a:hover {
  outline-width: 0;
  text-decoration: none;
  opacity: 0.8;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
a.disabled {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  object-fit: contain;
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

/* === common class === */
.inner {
  width: var(--innerWidth);
  max-width: var(--innerMax);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.block {
  width: 100%;
  display: block;
}

.fit {
  position: relative;
  overflow: hidden;
}
.fit__item {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.maru {
  font-family: var(--maru);
}

.disp_none {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .disp_xs {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_tab, .disp_pc, .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp, .disp_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}

/* === header === */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
}
.header__navWrap {
  width: calc(100% - 40px);
  max-width: 637px;
  height: 100vh;
  padding: 70px 20px;
  background-color: var(--main);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: var(--headerHeight);
  right: 0;
  overflow-y: scroll;
  transition: var(--speed);
  opacity: 0;
  transform: scale(0, 1);
  transform-origin: right;
  pointer-events: none;
}
.header__navWrap.visible {
  transform: scale(1, 1);
  opacity: 1;
  pointer-events: auto;
}
.header__navWrap .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 23px;
}
.header__navWrap .menu a {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__navWrap {
    padding: 80px;
    align-items: flex-start;
  }
  .header__navWrap .menu {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .header__navWrap {
    padding: 125px 80px 80px;
  }
  .header__navWrap .menu {
    font-size: 20px;
  }
}
.header__btnWrap {
  width: 100%;
  max-width: 275px;
  margin-top: 40px;
  display: grid;
  grid-gap: 16px;
}
.header__btnWrap .btn {
  width: 100%;
  height: 67px;
  background: #00154B;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header__btnWrap .btn__mainTxt {
  font-size: 22px;
  --ls: -0.04em;
  display: flex;
  align-items: center;
}
.header__btnWrap .btn__mainTxt::before {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--icon) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
  transform: translateX(-40%);
}
.header__btnWrap .btn__subTxt {
  font-size: 12px;
}
.header__btnWrap .btn--mail {
  background: linear-gradient(180deg, #5A9CEB 0%, #336FCC 51.44%, #0E44AF 100%);
  --icon: url(../images/icon-mail.svg);
}
.header__btnWrap .btn--tel {
  background: linear-gradient(180deg, #F4A6A6 0%, #E00000 100%);
  --icon: url(../images/icon-tel.svg);
}
@media screen and (min-width: 1024px) {
  .header__btnWrap {
    margin-top: 50px;
  }
}
.header__toggler {
  width: 69px;
  height: 69px;
  padding: 0;
  background-color: #E00000;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5.633px 5.633px 0 rgba(60, 115, 199, 0.41);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 6px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(14.492%, -15.942%);
}
.header__toggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__toggler span {
  width: 21px;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
  display: block;
  transition: var(--speed);
}
.header__toggler.open span {
  width: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.header__toggler.open span + span {
  transform: rotate(-45deg);
}
.header__toggler.open span + span + span {
  transform: scale(0);
}
@media screen and (min-width: 1024px) {
  .header__toggler {
    width: 103px;
    height: 103px;
    border-width: 2px;
    box-shadow: 0 8.449px 8.449px 0 rgba(60, 115, 199, 0.41);
    grid-gap: 9px;
    transform: translate(19.417%, -19.417%);
  }
  .header__toggler span {
    width: 31px;
    height: 3px;
  }
  .header__toggler.open span {
    width: 50px;
  }
}

/* === main === */
.secTtl {
  width: 100%;
  padding: 16px 10px;
  background: linear-gradient(180deg, #FFFFAD 33.02%, #FFFB00 100%);
  border-top: 7px solid var(--main);
  border-bottom: 7px solid var(--main);
  color: var(--main);
  font-size: 24px;
  font-family: var(--maru);
  font-weight: 700;
  --lh: 1.3;
  text-align: center;
}
.secTtl:has(strong) {
  --lh: 1.2;
}
.secTtl strong {
  font-size: 133.33%;
}
.secTtl.pageTtl {
  padding: 16px 10px 20px;
  border-top-width: 20px;
}
@media screen and (min-width: 768px) {
  .secTtl {
    font-size: 32px;
  }
  .secTtl.pagaeTtl {
    padding: 16px 10px 18px;
    border-top-width: 24px;
  }
}

.secMV__topBlk {
  padding: 15px 0 0;
  margin-bottom: -43px;
  background: url(../images/top_mv_bgtop-sp.jpg) center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .secMV__topBlk {
    padding-top: 40px;
    margin-bottom: -118px;
    background-image: url(../images/top_mv_bgtop-pc.jpg);
  }
}
@media screen and (min-width: 1024px) {
  .secMV__topBlk {
    padding-top: 80px;
    margin-bottom: -185px;
  }
}
.secMV__topBlk_inner::before {
  content: "";
  width: 100%;
  height: calc(100% - 43px);
  background-color: #6EB6E3;
  border-radius: 20px 20px 0 0;
  mix-blend-mode: multiply;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .secMV__topBlk_inner {
    width: calc(100% - 80px);
    max-width: 1160px;
  }
  .secMV__topBlk_inner::before {
    height: calc(100% - 118px);
  }
}
@media screen and (min-width: 1024px) {
  .secMV__topBlk_inner {
    width: calc(100% - 120px);
  }
  .secMV__topBlk_inner::before {
    height: calc(100% - 185px);
  }
}
.secMV__topBlk_ttl {
  width: calc(100% + 30px);
  margin: 0 -15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  transform: translateY(-15px);
}
.secMV__topBlk_ttl img {
  width: 768px;
  max-width: 768px;
}
@media screen and (min-width: 405px) {
  .secMV__topBlk_ttl {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .secMV__topBlk_ttl {
    width: calc(100% + 80px);
    margin: 0 -40px;
    transform: translateY(-50px);
  }
  .secMV__topBlk_ttl img {
    width: 1024px;
    max-width: 1024px;
  }
}
@media screen and (min-width: 1024px) {
  .secMV__topBlk_ttl {
    width: calc(100% + 120px);
    margin: 0 -60px;
    transform: translateY(-100px);
  }
  .secMV__topBlk_ttl img {
    width: 1283px;
    max-width: 1283px;
  }
}
.secMV__mdlBlk {
  padding-bottom: 8px;
  border-top: 7px solid var(--main);
  border-bottom: 7px solid var(--main);
  background: linear-gradient(180deg, #FFFFAD 33.02%, #FFFB00 100%);
}
.secMV__mdlBlk_inner {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.secMV__mdlBlk_txt1 {
  width: 100%;
  max-width: 506px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.secMV__mdlBlk_txt2 {
  width: 100%;
  max-width: 600px;
  padding-top: 8px;
  border-top: 2px dashed var(--main);
  font-size: 14px;
}
.secMV__mdlBlk_img1 {
  width: 80px;
  position: absolute;
  top: -4px;
  left: -4px;
}
.secMV__mdlBlk_img2 {
  width: 70px;
  position: absolute;
  top: -36px;
  right: 3px;
}
@media screen and (min-width: 768px) {
  .secMV__mdlBlk {
    padding-bottom: 24px;
  }
  .secMV__mdlBlk_inner {
    padding-top: 5px;
  }
  .secMV__mdlBlk_txt1 {
    margin-bottom: 14px;
  }
  .secMV__mdlBlk_txt2 {
    width: 100%;
    max-width: 600px;
    padding-top: 10px;
    border-top: 2px dashed var(--main);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }
  .secMV__mdlBlk_img1 {
    width: 140px;
    top: -24px;
    left: -5px;
  }
  .secMV__mdlBlk_img2 {
    width: 118px;
    top: -128px;
    right: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .secMV__mdlBlk_img1 {
    width: 198px;
    top: -32px;
    left: -10px;
  }
  .secMV__mdlBlk_img2 {
    width: 158px;
    top: -178px;
    right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__mdlBlk_img1 {
    left: 24px;
  }
  .secMV__mdlBlk_img2 {
    top: -178px;
    right: 85px;
  }
}
.secMV__btmBlk {
  padding: 0 0 5px;
  background: url(../images/top_mv_bgbtm-sp.jpg) center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .secMV__btmBlk {
    padding: 10px 0 5px;
    background-image: url(../images/top_mv_bgbtm-pc.jpg);
  }
}
.secMV__btmBlk_feature {
  width: 100%;
  max-width: 332px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .secMV__btmBlk_feature {
    max-width: 532px;
  }
}

.secExample {
  padding: 24px 0 20px;
  background-color: var(--main);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .secExample {
    padding: 64px 0;
  }
}
.secExample__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 16px;
}
@media screen and (min-width: 768px) {
  .secExample__inner {
    max-width: 800px;
    grid-gap: 32px;
  }
}
.secExample__ttl {
  font-size: 20px;
  font-weight: 700;
  --lh: 0.8;
}
@media screen and (min-width: 768px) {
  .secExample__ttl {
    font-size: 32px;
  }
}
.secExample__txt {
  width: 100%;
  --lh: 1.5;
}
.secExample__videoWrap {
  width: 100%;
  padding-top: 56.25%;
  background-color: #B4B4B4;
}
@media screen and (min-width: 768px) {
  .secExample__videoWrap {
    padding-top: min(56.25%, 450px);
  }
}
.secExample__btnWrap {
  width: 100%;
  text-align: center;
}
.secExample__btnWrap .btn {
  width: 100%;
  max-width: 295px;
  height: 48px;
  background: var(--Linear, linear-gradient(180deg, #FFFEB7 0%, #FFF200 100%));
  border-radius: 5px;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.25) inset;
  color: #004186;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.secExample__btnWrap .btn::after {
  content: "";
  width: 7px;
  height: 8px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="7" viewBox="0 0 6 7" fill="none"><path d="M5.48057 2.4091C6.15239 2.79299 6.15239 3.76169 5.48057 4.14559L1.49614 6.42241C0.829482 6.80335 4.21927e-08 6.32199 7.61031e-08 5.55416L2.77212e-07 1.00052C3.11122e-07 0.232701 0.829482 -0.248666 1.49614 0.13228L5.48057 2.4091Z" fill="%23004186"/></svg>') center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .secExample__btnWrap {
    text-align: left;
  }
  .secExample__btnWrap .btn {
    height: 46px;
  }
}

.secForm {
  padding: 30px 0 25px;
  background-color: #E6EAF5;
}
@media screen and (min-width: 768px) {
  .secForm {
    padding: 52px 0 65px;
  }
}
@media screen and (min-width: 768px) {
  .secForm__inner {
    max-width: 800px;
  }
}
.secForm__ttl {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secForm__ttl {
    margin-bottom: 22px;
    font-size: 32px;
  }
}
.secForm__formWeap {
  width: 100%;
}
.secForm__inputWrap:not(:last-child) {
  margin-bottom: 15px;
}
.secForm__inputWrap_label {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4375;
}
.secForm__inputWrap_label .required {
  padding: 2px 6px;
  margin-left: 10px;
  background-color: #D80000;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-block;
  transform: translateY(-2px);
}
.secForm__inputWrap input[type=text], .secForm__inputWrap [type=email], .secForm__inputWrap textarea {
  width: 100%;
  height: 40px;
  padding: 10px;
  background-color: #F8F8F8;
}
.secForm__inputWrap textarea {
  height: 155px;
  line-height: 1.6;
}
.secForm__inputWrap .policyTxt {
  font-size: 14px;
  --lh: 1.4;
}
.secForm__inputWrap--policy {
  background-color: #F3F4F8;
  border-radius: 5px;
}
.secForm__inputWrap--policy p {
  width: 100%;
  padding: 10px 0 10px 22px;
  margin: -5px 0 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4667;
  position: relative;
}
.secForm__inputWrap--policy input[type=checkbox] {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #B3B3B3;
  border-radius: 2px;
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -13px;
}
.secForm__inputWrap--policy input[type=checkbox]:checked {
  background: #fff url('data:image/svg+xml;charset=utf8,<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.6635 0.251789C12.0767 0.618201 12.1146 1.25023 11.7482 1.66346L4.79311 9.50729L0.251789 4.38568C-0.114623 3.97245 -0.0766688 3.34042 0.336563 2.97401C0.749795 2.6076 1.38182 2.64555 1.74823 3.05879L4.79311 6.49273L10.2518 0.336563C10.6182 -0.0766688 11.2502 -0.114623 11.6635 0.251789Z" fill="%2300154B"/></svg>') center/12px no-repeat;
}
.secForm__btnWrap {
  width: 295px;
  margin: 0 auto;
  position: relative;
}
.secForm__btnWrap::after {
  content: "";
  width: 7px;
  height: 8px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="7" viewBox="0 0 6 7" fill="none"><path d="M5.48057 2.4091C6.15239 2.79299 6.15239 3.76169 5.48057 4.14559L1.49614 6.42241C0.829482 6.80335 4.21927e-08 6.32199 7.61031e-08 5.55416L2.77212e-07 1.00052C3.11122e-07 0.232701 0.829482 -0.248666 1.49614 0.13228L5.48057 2.4091Z" fill="%23004186"/></svg>') center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.secForm__btnWrap p {
  display: contents;
}
.secForm__btnWrap input[type=submit] {
  width: 100%;
  height: 49px;
  background: linear-gradient(180deg, #FFFEB7 0%, #FFF200 100%);
  border-radius: 5px;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.25) inset;
  color: #004186;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--speed);
}
.secForm__btnWrap input[type=submit]:hover {
  background-color: #fff;
  color: #00154B;
}
.secForm__btnWrap .wpcf7-spinner {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.secProblem {
  padding: 0 0 24px;
  background: #fff url(../images/bg-check.png) left top/19px repeat;
}
@media screen and (min-width: 768px) {
  .secProblem {
    padding-bottom: 70px;
  }
}
.secProblem__ttl {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .secProblem__ttl {
    margin-bottom: 63px;
  }
}
@media screen and (min-width: 768px) {
  .secProblem__inner {
    max-width: 1084px;
  }
}
.secProblem__list {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 23px;
  display: grid;
  grid-gap: 22px;
}
.secProblem__list .listItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secProblem__list .listItem__txtWrap {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.secProblem__list .listItem__txtWrap_txt {
  width: 100%;
  max-width: 300px;
  margin-right: auto;
  display: block;
}
.secProblem__list .listItem__txtWrap_txt--2 {
  margin-right: 0;
  margin-left: auto;
}
.secProblem__list .listItem__txtWrap_txt--3 {
  max-width: 340px;
}
.secProblem__list .listItem__img {
  width: 150px;
  margin-top: -20px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .secProblem__list {
    max-width: 100%;
    margin-bottom: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .secProblem__list .listItem {
    justify-content: flex-end;
  }
  .secProblem__list .listItem__txtWrap_txt {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .secProblem__list .listItem__img {
    width: 200px;
  }
}
.secProblem__solution {
  display: flex;
  align-items: center;
  justify-content: center;
}
.secProblem__solution_txt {
  width: calc(100% + 20px);
  max-width: 500px;
  margin: 0 -10px;
}
@media screen and (min-width: 768px) {
  .secProblem__solution_txt {
    max-width: 550px;
  }
}

.secStep {
  padding: 0 0 25px;
}
@media screen and (min-width: 768px) {
  .secStep {
    padding-bottom: 65px;
  }
}
.secStep__ttl {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .secStep__ttl {
    margin-bottom: 65px;
  }
}
.secStep__inner {
  width: calc(100% - 20px);
}
@media screen and (min-width: 768px) {
  .secStep__inner {
    width: var(--innerWidth);
  }
}
.secStep__stepWrap {
  display: grid;
  grid-gap: 20px;
}
@media screen and (min-width: 768px) {
  .secStep__stepWrap {
    grid-gap: 32px;
  }
}
.secStep__stepBlk {
  width: 100%;
}
.secStep__stepBlk_ttl {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 3px;
  box-shadow: 8px 8px 0px #cfd7eb;
  display: flex;
  position: relative;
}
.secStep__stepBlk_ttl .number {
  padding: 2px 12px;
  background-color: var(--ac2);
  border-radius: 3px 0 0 3px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  font-family: "Inter", Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --lh: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.secStep__stepBlk_ttl .number span {
  font-size: 46px;
}
.secStep__stepBlk_ttl .txt {
  width: 100%;
  padding: 6px 10px;
  background-color: #fff;
  border: 3px solid var(--ac2);
  border-radius: 0 3px 3px 0;
  color: var(--main);
  font-size: 46px;
  font-weight: 700;
  --lh: 1;
}
.secStep__stepBlk_body {
  width: 100%;
  padding: 20px;
  background-color: #FFF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 16px;
}
.secStep__stepBlk_body_list {
  width: 100%;
  max-width: 400px;
  display: grid;
  grid-gap: 24px;
}
.secStep__stepBlk_body_list .listItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 8px;
}
.secStep__stepBlk_body_list .listItem__img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.secStep__stepBlk_body_list .listItem__txtWrap {
  font-weight: 700;
  text-align: center;
}
.secStep__stepBlk_body_row {
  width: 100%;
  max-width: 400px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 14px;
}
.secStep__stepBlk_body_row p {
  text-align: center;
}
.secStep__stepBlk_body_row p span {
  padding: 0 5px 0 2px;
  background-color: var(--ac2);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
}
.secStep__stepBlk_body_img {
  width: 100%;
}
.secStep__stepBlk_body_img--1 {
  width: calc(100% + 20px);
  max-width: 335px;
  margin: 0 -10px;
}
.secStep__stepBlk_body_img--2 {
  padding: 0 20px;
}
.secStep__stepBlk_body_img--3 {
  max-width: 315px;
}
.secStep__stepBlk_body_featureList {
  width: 100%;
}
.secStep__stepBlk_body_featureList li {
  padding: 10px 10px 10px 27px;
  background-color: rgba(230, 234, 245, 0.5);
  border-bottom: 1px dashed var(--main);
  font-weight: 500;
  position: relative;
}
.secStep__stepBlk_body_featureList li::before {
  content: "";
  width: 7px;
  height: 12px;
  background: url(../images/icon-list.svg) left center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.secStep__stepBlk_body_pointList {
  width: 100%;
  margin-top: 10px;
  display: grid;
  grid-gap: 14px;
  counter-reset: point_list 0;
}
.secStep__stepBlk_body_pointList .listItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 8px;
}
.secStep__stepBlk_body_pointList .listItem::before {
  counter-increment: point_list 1;
  content: "POINT " counter(point_list, decimal-leading-zero);
  width: 100%;
  background-color: var(--ac2);
  border-radius: 6px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  --lh: 1;
  text-align: center;
}
.secStep__stepBlk_body_pointList .listItem__txt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .secStep__stepBlk_body {
    padding: 30px 20px;
    grid-gap: 30px;
  }
  .secStep__stepBlk_body_list {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
  }
  .secStep__stepBlk_body_row {
    width: auto;
    max-width: 100%;
    margin: 0 auto -5px;
    flex-direction: row;
    grid-gap: 35px;
  }
  .secStep__stepBlk_body_row p span {
    font-size: 33px;
  }
  .secStep__stepBlk_body_img--1 {
    margin: 0 auto;
  }
  .secStep__stepBlk_body_img--2 {
    width: 50%;
    max-width: 265px;
    padding: 0;
    flex-shrink: 0;
  }
  .secStep__stepBlk_body_featureList {
    margin-top: -15px;
  }
  .secStep__stepBlk_body_pointList {
    margin-top: 0;
    grid-gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .secStep__stepBlk_body {
    padding: 40px;
  }
  .secStep__stepBlk_body_list {
    grid-gap: 24px;
  }
  .secStep__stepBlk_body_list .listItem {
    grid-gap: 24px;
  }
  .secStep__stepBlk_body_list .listItem__txtWrap {
    font-size: 20px;
  }
}

.secCase {
  padding: 0 0 25px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .secCase {
    padding-bottom: 65px;
  }
}
.secCase__ttl {
  margin-bottom: 65px;
}
.secCase__inner {
  width: calc(100% - 20px);
}
@media screen and (min-width: 768px) {
  .secCase__inner {
    width: var(--innerWidth);
  }
}
.secCase__caseWrap {
  width: 100%;
  display: grid;
  grid-gap: 55px;
}
@media screen and (min-width: 768px) {
  .secCase__caseWrap {
    grid-gap: 65px;
  }
}
.secCase__caseBlk {
  width: 100%;
  padding: 25px 20px 30px;
  background-color: #fff;
  border: 2px solid var(--main);
  border-radius: 5px;
  box-shadow: 4px 4px 0px #E6EAF5;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 24px;
  position: relative;
}
.secCase__caseBlk::before {
  width: 270px;
  height: 60px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  z-index: 1;
}
.secCase__caseBlk--1::before {
  content: "case 01";
  background-image: url(../images/top_case_ttl01.png);
}
.secCase__caseBlk--2::before {
  content: "case 02";
  background-image: url(../images/top_case_ttl02.png);
}
.secCase__caseBlk--3::before {
  content: "case 03";
  background-image: url(../images/top_case_ttl03.png);
}
.secCase__caseBlk--4::before {
  content: "case 04";
  background-image: url(../images/top_case_ttl04.png);
}
.secCase__caseBlk_ttl {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  --lh: 1.25;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.secCase__caseBlk_ttl::before {
  content: "";
  width: 29px;
  height: 29px;
  background: url(../images/icon-dental.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.secCase__caseBlk_ttl strong {
  font-size: 24px;
}
.secCase__caseBlk_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 24px;
}
.secCase__caseBlk_img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.secCase__caseBlk_img:not(:has(img)) {
  padding-top: 61.25%;
  background-color: var(--bg);
  position: relative;
}
.secCase__caseBlk_img:not(:has(img))::after {
  content: "no image";
  color: #fff;
  font-weight: 700;
  font-family: var(--maru);
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.secCase__caseBlk_txtWrap {
  width: 100%;
}
.secCase__caseBlk_txtWrap_ttl {
  margin-bottom: 16px;
  color: var(--main);
  font-size: 20px;
  font-weight: 700;
}
.secCase__caseBlk_txtWrap_txt {
  margin-bottom: 24px;
}
.secCase__caseBlk_txtWrap_dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.secCase__caseBlk_txtWrap_dl dt, .secCase__caseBlk_txtWrap_dl dd {
  width: 100%;
  padding: 5px;
  font-size: 14px;
}
.secCase__caseBlk_txtWrap_dl dt {
  background-color: var(--bg);
  font-weight: 500;
}
.secCase__caseBlk_txtWrap_dl dd {
  margin-bottom: 10px;
}
.secCase__caseBlk_txtWrap_dl dd:last-child {
  margin-bottom: 0;
}
.secCase__caseBlk_txtWrap_point {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  grid-gap: 10px;
}
.secCase__caseBlk_txtWrap_point::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #E00000 url('data:image/svg+xml;charset=utf8,<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.6635 0.251789C12.0767 0.618201 12.1146 1.25023 11.7482 1.66346L4.79311 9.50729L0.251789 4.38568C-0.114623 3.97245 -0.0766688 3.34042 0.336563 2.97401C0.749795 2.6076 1.38182 2.64555 1.74823 3.05879L4.79311 6.49273L10.2518 0.336563C10.6182 -0.0766688 11.2502 -0.114623 11.6635 0.251789Z" fill="%23fff"/></svg>') center/10px no-repeat;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .secCase__caseBlk {
    padding: 44px 38px 40px;
    grid-gap: 28px;
  }
  .secCase__caseBlk_ttl {
    font-size: 24px;
  }
  .secCase__caseBlk_ttl strong {
    font-size: 28px;
  }
  .secCase__caseBlk_row {
    flex-direction: row;
    align-items: flex-start;
  }
  .secCase__caseBlk_img {
    width: 36%;
    max-width: 400px;
    flex-shrink: 0;
  }
  .secCase__caseBlk_img:not(:has(img)) {
    padding-top: 22.05%;
  }
  .secCase__caseBlk_txtWrap_ttl {
    font-size: 24px;
  }
  .secCase__caseBlk_txtWrap_txt {
    margin-bottom: 32px;
  }
}

.secService {
  padding: 0 0 25px;
}
@media screen and (min-width: 768px) {
  .secService {
    padding-bottom: 65px;
  }
}
.secService__ttl {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .secService__ttl {
    margin-bottom: 65px;
  }
}
.secService__inner {
  width: calc(100% - 20px);
}
@media screen and (min-width: 768px) {
  .secService__inner {
    width: var(--innerWidth);
  }
}
.secService__serviceList {
  width: 100%;
  display: grid;
  grid-gap: 32px;
}
.secService__serviceList::after {
  content: "";
  width: 100%;
  border: 1px dashed var(--ac2);
  flex-shrink: 0;
}
.secService__serviceList .listItem {
  border-radius: 5px;
  overflow: hidden;
}
.secService__serviceList .listItem:nth-child(2) {
  order: 1;
}
.secService__serviceList .listItem__ttl {
  padding: 10px 10px;
  background-color: var(--ac2);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.secService__serviceList .listItem__body {
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 16px;
}
.secService__serviceList .listItem__img {
  width: 100%;
}
.secService__serviceList .listItem__txtWrap {
  width: 100%;
}
.secService__serviceList .listItem__txtWrap_list {
  font-size: 20px;
}
.secService__serviceList .listItem__txtWrap_list li {
  padding-left: 30px;
  position: relative;
}
.secService__serviceList .listItem__txtWrap_list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--text);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 12px;
  left: 13px;
}
@media screen and (min-width: 768px) {
  .secService__serviceList {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .secService__serviceList::after {
    display: none;
  }
  .secService__serviceList .listItem {
    border-radius: 10px;
  }
  .secService__serviceList .listItem__ttl {
    padding: 20px 10px;
  }
  .secService__serviceList .listItem__body {
    height: 100%;
    padding: 30px 20px;
    grid-gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .secService__serviceList {
    grid-gap: 32px;
  }
  .secService__serviceList .listItem__body {
    padding: 40px;
  }
}

.secFlow {
  padding: 0 0 40px;
  background: #fff url(../images/bg-check.png) left top/19px repeat;
}
@media screen and (min-width: 768px) {
  .secFlow {
    padding: 0 0 60px;
  }
}
.secFlow__ttl {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .secFlow__ttl {
    margin-bottom: 65px;
  }
}
.secFlow__inner {
  width: calc(100% - 20px);
}
@media screen and (min-width: 768px) {
  .secFlow__inner {
    width: var(--innerWidth);
    max-width: 586px;
  }
}
.secFlow__flowList {
  width: 100%;
  padding-left: 34px;
  display: grid;
  grid-gap: 9px;
  counter-reset: flow_list 0;
}
.secFlow__flowList .listItem {
  padding: 12px 12px 12px 32px;
  background-color: #fff;
  border: 2px solid var(--main);
  border-radius: 5px;
  box-shadow: 4px 4px 0 0 #E6EAF5;
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  grid-gap: 7px;
  position: relative;
}
.secFlow__flowList .listItem small {
  font-size: 12px;
  font-weight: 700;
}
.secFlow__flowList .listItem::before {
  counter-increment: flow_list 1;
  content: "STEP" counter(flow_list, decimal-leading-zero);
  width: 58px;
  height: 58px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 2px solid var(--main);
  border-radius: 50%;
  color: transparent;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translate(-50%, -50%);
}
.secFlow__flowList .listItem:nth-child(1)::before {
  background-image: url(../images/top_flow_listinumber01.jpg);
}
.secFlow__flowList .listItem:nth-child(2)::before {
  background-image: url(../images/top_flow_listinumber02.jpg);
}
.secFlow__flowList .listItem:nth-child(3)::before {
  background-image: url(../images/top_flow_listinumber03.jpg);
}
.secFlow__flowList .listItem:nth-child(4)::before {
  background-image: url(../images/top_flow_listinumber04.jpg);
}
.secFlow__flowList .listItem:nth-child(5)::before {
  background-image: url(../images/top_flow_listinumber05.jpg);
}
.secFlow__flowList .listItem__icon {
  width: 44px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .secFlow__flowList {
    padding-left: 54px;
    grid-gap: 15px;
  }
  .secFlow__flowList .listItem {
    padding: 21px 21px 21px 52px;
    border-radius: 8px;
    font-size: 20px;
    grid-gap: 12px;
  }
  .secFlow__flowList .listItem small {
    font-size: 16px;
  }
  .secFlow__flowList .listItem::before {
    width: 95px;
    height: 95px;
    left: -10px;
  }
  .secFlow__flowList .listItem__icon {
    width: 74px;
  }
}

.secCompany {
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .secCompany {
    padding: 82px 0;
  }
}
.secCompany__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 25px;
}
@media screen and (min-width: 768px) {
  .secCompany__inner {
    max-width: 1000px;
    flex-direction: row;
    align-items: flex-start;
    grid-gap: 40px;
  }
}
.secCompany__table {
  width: 100%;
}
.secCompany__table th, .secCompany__table td {
  font-size: 20px;
  display: block;
}
.secCompany__table th {
  padding-top: 24px;
  padding-bottom: 5px;
}
.secCompany__table td {
  padding-bottom: 24px;
  border-bottom: 1px solid #282828;
}
.secCompany__table tr:first-child th {
  padding-top: 0;
}
.secCompany__table tr:last-child td {
  padding-bottom: 0;
  border-bottom: 0;
}
.secCompany__map {
  width: 100%;
  padding-top: 86.9565%;
}
@media screen and (min-width: 768px) {
  .secCompany__map {
    width: 46%;
    padding-top: 40%;
    flex-shrink: 0;
  }
}

.secPolicy {
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .secPolicy {
    padding: 82px 0;
  }
}
.secPolicy__inner {
  display: grid;
  grid-gap: 16px;
}
@media screen and (min-width: 768px) {
  .secPolicy__inner {
    max-width: 1000px;
  }
}
.secPolicy__blk {
  width: 100%;
  --lh: 1.6;
}
.secPolicy__blk_ttl {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}
.secPolicy__blk p + ol {
  margin-top: 28px;
}
.secPolicy__blk ol {
  padding-left: 22px;
}
.secPolicy__blk ol li {
  list-style: decimal;
}
.secPolicy__blk ol ol {
  padding-left: 25px;
}
.secPolicy__blk ol ol li {
  list-style: lower-alpha;
}
.secPolicy__blk ol ol ol {
  padding-left: 25px;
}
.secPolicy__blk ol ol ol li {
  list-style: lower-roman;
}

.sec404 {
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .sec404 {
    padding: 82px 0;
  }
}
.sec404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;
}
.sec404__inner .btn {
  width: 295px;
  height: 48px;
  background: var(--Linear, linear-gradient(180deg, #FFFEB7 0%, #FFF200 100%));
  border-radius: 5px;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.25) inset;
  color: #004186;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sec404__inner .btn::after {
  content: "";
  width: 7px;
  height: 8px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="7" viewBox="0 0 6 7" fill="none"><path d="M5.48057 2.4091C6.15239 2.79299 6.15239 3.76169 5.48057 4.14559L1.49614 6.42241C0.829482 6.80335 4.21927e-08 6.32199 7.61031e-08 5.55416L2.77212e-07 1.00052C3.11122e-07 0.232701 0.829482 -0.248666 1.49614 0.13228L5.48057 2.4091Z" fill="%23004186"/></svg>') center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

/* === footer === */
.footer {
  padding-bottom: 55px;
  background-color: var(--main);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 115px;
  }
}
.footer__nav {
  padding: 26px 28px;
}
.footer__nav_list {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__nav_list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    grid-gap: 32px;
  }
}
.footer__floatBtn {
  width: calc(100% - 16px);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.footer__floatBtn_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}
.footer__floatBtn_list .btn {
  width: 100%;
  height: 43px;
  background: #00154B;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 7px 0 rgba(146, 146, 146, 0.53);
  color: #fff;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__floatBtn_list .btn__mainTxt {
  font-size: 15px;
  --ls: -0.04em;
  display: flex;
  align-items: center;
}
.footer__floatBtn_list .btn__mainTxt::before {
  content: "";
  width: 21px;
  height: 21px;
  background: var(--icon) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
  transform: translateX(-40%);
}
.footer__floatBtn_list .btn__subTxt {
  font-size: 8px;
}
.footer__floatBtn_list .btn--mail {
  background: linear-gradient(180deg, #5A9CEB 0%, #336FCC 51.44%, #0E44AF 100%);
  --icon: url(../images/icon-mail.svg);
}
.footer__floatBtn_list .btn--tel {
  background: linear-gradient(180deg, #F4A6A6 0%, #E00000 100%);
  --icon: url(../images/icon-tel.svg);
}
@media screen and (min-width: 768px) {
  .footer__floatBtn {
    max-width: 718px;
  }
  .footer__floatBtn_list {
    grid-gap: 10px;
  }
  .footer__floatBtn_list .btn {
    height: 86px;
  }
  .footer__floatBtn_list .btn__mainTxt {
    font-size: 30px;
  }
  .footer__floatBtn_list .btn__mainTxt::before {
    width: 42px;
    height: 42px;
    transform: translateX(-40%);
  }
  .footer__floatBtn_list .btn__subTxt {
    font-size: 16px;
  }
}
.footer__backTop {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #FFFEB7 0%, #FFF200 100%);
  border-radius: 50%;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.25) inset;
  position: fixed;
  bottom: 50px;
  right: 15px;
  z-index: 1000;
}
.footer__backTop img {
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .footer__backTop {
    width: 60px;
    height: 60px;
    bottom: 90px;
  }
}
@media screen and (min-width: 900px) {
  .footer__backTop {
    bottom: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__backTop {
    width: 81px;
    height: 81px;
    right: 32px;
  }
}