@charset "UTF-8";
:root {
  --color: transparent;
  --text: #000;
  --ac: #1F2A44;
  --main: #1BA6A6;
  --bg: #F5F5F7;
  --en: Raleway, Noto Sans JP, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --ls: 0.06em;
  --lh: 1.6;
  --headerHeight: 61px;
  --innerWidth: calc(100% - 48px);
  --innerMax: 600px;
  --speed: 0.3s;
}
@media screen and (min-width: 768px) {
  :root {
    --headerHeight: 90px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 126px;
  }
}
@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: #fff;
  color: var(--text);
  font-size: 16px;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}

main {
  margin-top: var(--headerHeight);
}
main.frontpage {
  margin-top: 0;
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
  transition: var(--speed);
}
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 ================ */
.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 (max-width: 1023px) {
  .disp_lg {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .disp_lg {
    display: none !important;
  }
}

.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;
}

.txt--main {
  color: var(--main);
}
.txt--ac {
  color: var(--ac);
}

.bg {
  background-color: var(--bg);
}

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

.js-collapse {
  cursor: pointer;
}

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

.btn {
  padding: 9px 30px;
  background-color: var(--color);
  border: 2px solid var(--color);
  border-radius: 4px;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  --ls: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
}
.btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="7" viewBox="0 0 22 7" fill="none"><path d="M0.5 5.77273H20.5L15.2273 0.5" stroke="%23fff" stroke-linecap="round"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.btn:hover {
  background-color: #fff;
  color: var(--color);
  opacity: 1;
}
.btn--main {
  --color: var(--main);
}
.btn--main:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="7" viewBox="0 0 22 7" fill="none"><path d="M0.5 5.77273H20.5L15.2273 0.5" stroke="%231BA6A6" stroke-linecap="round"/></svg>') center/contain no-repeat;
}
.btn--ac {
  --color: var(--ac);
}
.btn--ac:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="7" viewBox="0 0 22 7" fill="none"><path d="M0.5 5.77273H20.5L15.2273 0.5" stroke="%231F2A44" stroke-linecap="round"/></svg>') center/contain no-repeat;
}

.secTtl {
  width: 100%;
  --ls: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secTtl__jp {
  font-size: 14px;
  font-weight: 400;
  --lh: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
}
.secTtl__jp::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--main);
  border-radius: 50%;
  flex-shrink: 0;
}
.secTtl__en {
  color: var(--ac);
  font-size: 32px;
  font-weight: 700;
  --lh: 1.25;
}
@media screen and (min-width: 768px) {
  .secTtl__jp {
    font-size: 16px;
    --lh: 1.75;
  }
  .secTtl__jp::before {
    width: 10px;
    height: 10px;
  }
  .secTtl__en {
    font-size: 40px;
    --lh: 1;
  }
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  height: var(--headerHeight);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
}
@media screen and (min-width: 768px) {
  .header {
    pointer-events: none;
  }
}
.header__inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1310px;
  }
}
.header__sitelogo {
  width: 80px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.header__sitelogo a {
  display: flex;
  align-items: center;
}
.header__sitelogo img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__sitelogo {
    width: 120px;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .header__sitelogo {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .header__navWrap {
    width: 100%;
    height: 100vh;
    background: #fff url(../img/mv_bg.png) left top 20px/167px no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    transition: var(--speed);
  }
  .header__navWrap.visible {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 768px) {
  .header__navWrap {
    width: 100%;
    max-width: 480px;
    padding: 10px 10px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .header__navWrap {
    max-width: 547px;
    padding: 13px 10px;
  }
}
.header__navWrap .disp_footer {
  display: none !important;
}
.header__gnav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__gnav a {
  font-size: 20px;
  --ls: 0;
  --lh: 1;
  white-space: nowrap;
  position: relative;
}
.header__gnav a:hover {
  color: var(--main);
}
.header__gnav .menu_btn a {
  padding: 15px 40px;
  background-color: var(--main);
  border: 2px solid var(--main);
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  --ls: 0.1em;
  --lh: 1.5;
  display: block;
}
.header__gnav .menu_btn a:hover {
  background-color: #fff;
  color: var(--main);
}
@media screen and (max-width: 767px) {
  .header__gnav {
    flex-direction: column;
    justify-content: center;
    grid-gap: 40px;
  }
  .header__gnav li {
    width: 90px;
  }
  .header__gnav li.menu_btn {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .header__gnav {
    justify-content: flex-end;
    grid-gap: 30px;
  }
  .header__gnav a {
    font-size: 16px;
    --ls: 0.1em;
    --lh: 1.5;
  }
  .header__gnav .menu_btn {
    margin-left: 10px;
  }
  .header__gnav .menu_btn a {
    padding: 10px 26px;
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    grid-gap: 43px;
  }
  .header__gnav .menu_btn a {
    padding: 13px 37px;
  }
}
.header__spToggler {
  width: 20px;
  height: 8px;
  padding: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--ac);
  border-radius: 2px;
  display: block;
  transition: var(--speed);
}
.header__spToggler.open span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(25deg);
}
.header__spToggler.open span + span {
  transform: rotate(-25deg);
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footer {
  padding: 60px 0 20px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 80px 0 40px;
  }
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 30px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    grid-gap: 40px 80px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    grid-gap: 20px 80px;
  }
}
.footer__logo {
  width: 95px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-top: 15px;
  }
}
.footer__nav {
  width: 100%;
}
.footer__nav_list {
  font-size: 14px;
  --ls: 0;
  --lh: 1.42857;
  display: flex;
  align-items: center;
  grid-gap: 40px;
}
.footer__nav_list a:hover {
  color: var(--main);
}
.footer__nav .disp_header {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: auto;
    margin-top: 15px;
  }
}
.footer__btnWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer__btnWrap {
    width: auto;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    grid-gap: 20px;
  }
}
.footer__copyright {
  width: 100%;
  margin-top: 30px;
  font-size: 11px;
  --ls: 0;
  --lh: 1.8;
  text-align: right;
}

/*------------------------------------------------------
  toppgae
-------------------------------------------------------*/
.secMV {
  background: url(../img/mv_bg.png) left top 20px/167px no-repeat;
}
@media screen and (min-width: 768px) {
  .secMV {
    background-position: left top;
    background-size: 330px;
  }
}
.secMV__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .secMV__inner {
    flex-direction: row;
    align-items: flex-start;
  }
}
.secMV__txtWrap {
  width: 100%;
  padding: 100px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 24px;
  position: relative;
  z-index: 2;
}
.secMV__txtWrap_ttl {
  font-size: clamp(20px, 5.8666vw, 30px);
  font-weight: 700;
  --ls: 0.03em;
  --lh: 1.4;
}
.secMV__txtWrap_ttl strong {
  font-size: 127.27%;
}
.secMV__txtWrap_txt {
  color: #4A5565;
  font-weight: 500;
}
.secMV__txtWrap_btnWrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 12px;
}
.secMV__txtWrap_btn {
  padding: 14px 30px;
}
@media screen and (min-width: 768px) {
  .secMV__txtWrap {
    width: auto;
    padding-top: 110px;
    grid-gap: 30px;
    flex-shrink: 0;
  }
  .secMV__txtWrap_ttl {
    font-size: 32px;
  }
  .secMV__txtWrap_ttl strong {
    font-size: 133.33%;
  }
  .secMV__txtWrap_txt {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .secMV__txtWrap {
    padding-top: 180px;
  }
  .secMV__txtWrap_ttl {
    font-size: 36px;
  }
  .secMV__txtWrap_txt {
    font-size: 20px;
  }
  .secMV__txtWrap_btnWrap {
    margin-top: 50px;
    flex-direction: row;
    align-items: center;
    grid-gap: 20px;
  }
  .secMV__txtWrap_btn {
    padding: 18px 28px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__txtWrap_ttl {
    font-size: 48px;
  }
}
.secMV__img {
  width: 100%;
  max-width: 500px;
  margin-top: -12px;
}
@media screen and (min-width: 768px) {
  .secMV__img {
    max-width: 100%;
    margin: 85px -65px 0 -55px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__img {
    margin: 95px -105px 0 16px;
  }
}

.secService {
  padding: 210px 0 50px;
  margin-top: -175px;
}
@media screen and (min-width: 768px) {
  .secService {
    padding: 90px 0 100px;
    margin-top: -55px;
  }
}
@media screen and (min-width: 1024px) {
  .secService {
    padding: 150px 0 120px;
    margin-top: -35px;
  }
}
@media screen and (min-width: 1200px) {
  .secService {
    padding: 100px 0 120px;
    margin-top: -65px;
  }
}
.secService__ttlWrap {
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
}
.secService__ttlWrap::after {
  content: "";
  width: 100%;
  height: 2px;
  margin-top: 32px;
  background-color: #FFF;
  display: block;
}
@media screen and (min-width: 768px) {
  .secService__ttlWrap {
    margin-bottom: 102px;
  }
}
.secService__ttl {
  width: auto;
  align-items: flex-start;
  flex-shrink: 0;
}
.secService__blk {
  width: 100%;
}
.secService__blk + .secService__blk {
  margin-top: 110px;
}
.secService__blk_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 50px;
}
.secService__blk_row_img {
  width: 100%;
}
.secService__blk_row_txtWrap {
  width: 100%;
}
.secService__blk_row_txtWrap p + p {
  margin-top: 24px;
}
.secService__blk_row_txtWrap p strong {
  font-weight: 500;
  --ls: 0;
}
.secService__blk_row_ttl {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 500;
  --ls: 0;
  --lh: 1.63636;
  position: relative;
  z-index: 1;
}
.secService__blk_row_ttl span {
  color: #fff;
  font-size: 96px;
  font-weight: 800;
  font-family: var(--en);
  --lh: 1;
  position: absolute;
  bottom: -5px;
  left: -22px;
  z-index: -1;
}
.secService__blk_row_btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .secService__blk_row {
    flex-direction: row;
    align-items: flex-start;
    grid-gap: 40px;
  }
  .secService__blk_row_img {
    width: 41.6667%;
    flex-shrink: 0;
  }
  .secService__blk_row_btn {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .secService__blk_row {
    align-items: flex-end;
  }
  .secService__blk_row_txtWrap p + p {
    margin-top: 32px;
  }
  .secService__blk_row_txtWrap p strong {
    font-size: 18px;
    --lh: 1.5555;
  }
  .secService__blk_row_ttl {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 30px;
    --lh: 1.2;
  }
  .secService__blk_row_ttl span {
    font-size: 128px;
    left: -42px;
  }
}
@media screen and (min-width: 1200px) {
  .secService__blk_row {
    grid-gap: 80px;
  }
}
.secService__blk_feature {
  padding: 50px 16px;
  margin-top: 50px;
  background-color: #fff;
  border-radius: 10px;
}
.secService__blk_feature_list {
  width: 100%;
  display: grid;
  grid-gap: 24px;
}
.secService__blk_feature_list .listItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 20px;
}
.secService__blk_feature_list .listItem::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--main) url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="15" viewBox="0 0 22 15" fill="none"><path d="M18.6512 0.53418C19.4577 -0.217087 20.7186 -0.170237 21.4675 0.63882C22.2164 1.44788 22.1697 2.71284 21.3632 3.46411L8.97939 15L0.79124 8.79155C-0.0867204 8.12583 -0.260468 6.87219 0.403122 5.99141C1.06673 5.11065 2.31638 4.93634 3.19437 5.60205L8.71614 9.78876L18.6512 0.53418Z" fill="%23fff"/></svg>') center/55% no-repeat;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.secService__blk_feature_list .listItem__ttl {
  font-size: 18px;
  font-weight: 700;
  --ls: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secService__blk_feature {
    padding: 50px 30px;
    margin-top: 60px;
  }
  .secService__blk_feature_list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .secService__blk_feature {
    padding: 50px;
    margin-top: 80px;
  }
}
.secService__blk_point {
  padding: 50px 16px;
  margin-top: 50px;
  background-color: #fff;
  border-radius: 10px;
}
.secService__blk_point_list {
  width: 100%;
  display: grid;
  grid-gap: 18px;
}
.secService__blk_point_list li {
  width: 100%;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  grid-gap: 8px;
}
.secService__blk_point_list li::before {
  content: "";
  width: 22px;
  height: 27px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="15" viewBox="0 0 22 15" fill="none"><path d="M18.6512 0.53418C19.4577 -0.217087 20.7186 -0.170237 21.4675 0.63882C22.2164 1.44788 22.1697 2.71284 21.3632 3.46411L8.97939 15L0.79124 8.79155C-0.0867204 8.12583 -0.260468 6.87219 0.403122 5.99141C1.06673 5.11065 2.31638 4.93634 3.19437 5.60205L8.71614 9.78876L18.6512 0.53418Z" fill="%231BA6A6"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .secService__blk_point {
    padding: 50px 30px;
    margin-top: 80px;
  }
  .secService__blk_point_list {
    max-width: 970px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .secService__blk_point {
    padding: 50px;
  }
  .secService__blk_point_list li {
    font-size: 18px;
    grid-gap: 10px 3px;
  }
}

.secCompany {
  padding: 50px 0 60px;
}
@media screen and (min-width: 768px) {
  .secCompany {
    padding: 80px 0 90px;
  }
}
@media screen and (min-width: 1024px) {
  .secCompany {
    padding: 115px 0 120px;
  }
}
.secCompany__ttl {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .secCompany__ttl {
    margin-bottom: 60px;
  }
}
.secCompany__table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.secCompany__table th {
  font-weight: 700;
  --lh: 1.5;
}
@media screen and (max-width: 767px) {
  .secCompany__table th, .secCompany__table td {
    display: block;
  }
  .secCompany__table th {
    padding-top: 16px;
    padding-bottom: 8px;
  }
  .secCompany__table td {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ac);
  }
}
@media screen and (min-width: 768px) {
  .secCompany__table th, .secCompany__table td {
    padding: 22px 0 27px;
    border-bottom: 1px solid var(--ac);
  }
  .secCompany__table th {
    width: 23%;
  }
}

.secContact {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .secContact {
    padding: 80px 0 80px;
  }
}
@media screen and (min-width: 1024px) {
  .secContact {
    padding: 120px 0 120px;
  }
}
.secContact__ttl {
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .secContact__ttl {
    margin-bottom: 58px;
  }
}
.secContact__formWrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  --ls: 0;
}
.secContact__formWrap form {
  width: 100%;
}
.secContact__inputWrap:not(:last-child) {
  margin-bottom: 22px;
}
.secContact__inputWrap_label {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  --lh: 1.5;
}
.secContact__inputWrap_label .required {
  margin-left: 12px;
  color: #E7000B;
  font-size: 12px;
  font-weight: 500;
  --lh: 2;
  display: inline-block;
  transform: translateY(-2px);
}
.secContact__inputWrap input[type=text], .secContact__inputWrap [type=email], .secContact__inputWrap [type=tel], .secContact__inputWrap textarea {
  width: 100%;
  height: 50px;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
}
.secContact__inputWrap textarea {
  height: 170px;
  line-height: 1.6;
}
.secContact__inputWrap .wpcf7-radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 10px;
}
.secContact__inputWrap .wpcf7-radio input[type=radio] {
  width: 16px;
  height: 16px;
  border: 1px solid #DCDFE4;
  appearance: auto;
  flex-shrink: 0;
}
.secContact__inputWrap .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
.secContact__inputWrap .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.secContact__inputWrap--policy p {
  display: contents;
}
.secContact__inputWrap--policy input[type=checkbox] {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #DCDFE4;
  display: inline-block;
  flex-shrink: 0;
}
.secContact__inputWrap--policy input[type=checkbox]:checked {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="15" viewBox="0 0 22 15" fill="none"><path d="M18.6512 0.53418C19.4577 -0.217087 20.7186 -0.170237 21.4675 0.63882C22.2164 1.44788 22.1697 2.71284 21.3632 3.46411L8.97939 15L0.79124 8.79155C-0.0867204 8.12583 -0.260468 6.87219 0.403122 5.99141C1.06673 5.11065 2.31638 4.93634 3.19437 5.60205L8.71614 9.78876L18.6512 0.53418Z" fill="%231BA6A6"/></svg>') center/90% no-repeat;
}
.secContact__inputWrap--policy .wpcf7-list-item {
  margin-left: 0;
}
.secContact__inputWrap--policy .wpcf7-list-item label {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.secContact__policyBlk {
  width: 100%;
  margin-bottom: 24px;
}
.secContact__policyBlk_ttl {
  width: 100%;
  padding: 16px 48px;
  margin-bottom: 1px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  font-size: 14px;
  font-weight: 500;
  --lh: 2.57143;
}
.secContact__policyBlk .policyBox {
  width: 100%;
  height: 230px;
  padding: 20px 40px 20px 16px;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  overflow-y: scroll;
}
.secContact__policyBlk .policyBox__blk {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  font-size: 13px;
  --lh: 2;
}
.secContact__policyBlk .policyBox__blk:not(:last-child) {
  margin-bottom: 20px;
}
.secContact__policyBlk .policyBox__blk_ttl {
  font-size: 14px;
  font-weight: 500;
  --lh: 2.14286;
}
.secContact__policyBlk .policyBox__blk p + p {
  margin-top: 12px;
}
.secContact__policyBlk .policyBox__blk p + p:has(small) {
  margin-top: 0;
}
.secContact__policyBlk .policyBox__blk ul {
  margin-left: 1em;
}
.secContact__policyBlk .policyBox__blk ul li {
  list-style-type: disc;
}
.secContact__btnWrap {
  position: relative;
}
.secContact__btnWrap input[type=submit] {
  width: 100%;
  max-width: 295px;
  height: 56px;
  margin: 0 auto;
  background-color: var(--ac);
  border: 2px solid var(--ac);
  border-radius: 4px;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--speed);
}
.secContact__btnWrap input[type=submit]:hover {
  background-color: #fff;
  color: var(--ac);
}
.secContact__btnWrap .wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (min-width: 768px) {
  .secContact__btnWrap {
    margin-top: 48px;
  }
  .secContact__btnWrap input[type=submit] {
    max-width: 400px;
  }
}

.secThanks {
  padding: 100px 0 150px;
}
@media screen and (min-width: 768px) {
  .secThanks {
    padding: 130px 0 235px;
  }
}
.secThanks__ttl {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  --ls: 0;
  --lh: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secThanks__ttl {
    margin-bottom: 48px;
    font-size: 30px;
  }
}
.secThanks__txt {
  color: #4A5565;
  font-weight: 500;
  text-align: center;
}
.secThanks__txt:has(.btn) {
  margin-top: 50px;
}