@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --font-fam: "M PLUS 1p";
  --theme-color: #fff;
  --font-color: #111;
  --notosansjp: "noto sans JP"
    // --mont: "Montserrat";
}

body:has(.home) {
  --lp_color: #EC6F2F;
  --light_color: #FFEEAA;
  --contact_border: rgba(236, 111, 47, 0.5);
  --area_color: #FFF9E3;
}

body:has(.biz) {
  --lp_color: #1B57E3;
  --light_color: #D6EAF8;
  --contact_border: #1B57E3;
  --area_color: rgba(27, 87, 227, 0.1);
}

body,
input,
textarea {
  font-family: var(--font-fam), sans-serif;
  color: var(--font-color);
}

body {
  width: 100%;
  overflow-x: clip;
  position: relative;
  line-height: 1.8;
  font-size: clamp(1.2rem, 1.33vw, 1.8rem);
  color: #293751;
  font-weight: 500;
}

img {
  width: 100%;
}

.br-sp {
  display: block;
}
@media (min-width: 1024px) {
  .br-sp {
    display: none;
  }
}
.br-pc {
  display: none;
}
@media (min-width: 1024px) {
  .br-pc {
    display: block;
  }
}

.header {
  width: 100%;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media (min-width: 1024px) {
  .header {
    margin-inline: auto;
    height: clamp(7rem, 5.46vw, 8rem);
    display: flex;
    align-items: center;
    top: min(2.34vw, 30px);
  }
}
.header .logo {
  width: clamp(12.1rem, 9.45vw, 23rem);
  margin-left: -10px;
}
@media (min-width: 1024px) {
  .header .logo {
    width: clamp(20rem, 13.33vw, 23rem);
    margin-top: 5px;
    z-index: 10;
    margin-top: -10px;
    margin-left: max(-1.46vw, -28px);
  }
}

.header__inner {
  padding-block: clamp(1.2rem, 0.93vw, 2.4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 13px;
  overflow: clip;
}
@media (min-width: 1024px) {
  .header__inner {
    width: 94.78%;
    margin-inline: auto;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
    width: min(67.5vw, 864px);
    background-color: var(--lp_color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 100px;
    height: min(5.7vw, 73px);
    padding-left: min(3.12vw, 40px);
  }
}
.header__nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav ul li {
  line-height: 1;
}
.header__nav ul li.txt {
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  font-size: min(1.56vw, 2rem);
  color: #fff;
}
.header__nav ul li.tel {
  position: relative;
  margin-left: min(1.95vw, 25px);
}
.header__nav ul li.tel p {
  font-size: clamp(2.4rem, 1.87vw, 3.6rem);
  font-size: min(2.81vw, 3.6rem);
  color: #fff;
}
.header__nav ul li.tel span {
  font-size: clamp(0.9rem, 0.7vw, 1.2rem);
  font-size: min(0.93vw, 1.2rem);
  color: #fff;
}
.header__nav ul li.tel::before {
  content: "";
  width: 1px;
  height: min(3.35vw, 43px);
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: max(-2.5vw, -32px);
  transform: translateY(-50%) rotate(20deg);
}
.header__nav ul li.contact_btn a {
  font-size: min(1.79vw, 2.3rem);
  width: min(20.15vw, 258px);
  height: min(5.7vw, 73px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.17vw, 15px);
  background-color: #fff;
  color: var(--lp_color);
  border-radius: 100px;
  border: solid 1px #fff;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.header__nav ul li.contact_btn a #icon-mail path {
  fill: var(--lp_color);
  transition: fill 0.3s;
}
@media (min-width: 1024px) {
  .header__nav ul li.contact_btn a:hover {
    color: #fff;
    background-color: var(--lp_color);
    border-color: #fff;
  }
  .header__nav ul li.contact_btn a:hover #icon-mail path {
    fill: #fff;
  }
}

.fix_menu {
  z-index: 999;
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1024px) {
  .fix_menu {
    display: none;
  }
}
.fix_menu strong {
  display: block;
  text-align: center;
  color: var(--lp_color);
  font-size: 1.6rem;
  font-weight: 500;
  padding-block: 3px;
}
.fix_menu ul {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fix_menu ul li {
  height: 60px;
}
.fix_menu ul li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fix_menu ul li a p {
  font-size: 1.6rem;
  font-weight: 500;
}
.fix_menu ul li a span {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}
.fix_menu ul li.tel_btn {
  color: #fff;
  width: 58.6666666667%;
}
.fix_menu ul li.tel_btn a {
  background-color: var(--lp_color);
  padding-top: 8px;
}
.fix_menu ul li.tel_btn p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.fix_menu ul li.tel_btn p::before {
  content: "";
  display: block;
  background: url(../../img/lp/icon/icon-tel.svg) no-repeat;
  background-size: 100%;
  width: 27.39px;
  height: 30px;
  min-width: 27.39px;
  min-height: 30px;
}
.fix_menu ul li.contact_btn {
  color: var(--lp_color);
  width: 41.3333333333%;
}
.fix_menu ul li.contact_btn a {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.fix_menu ul li.contact_btn #icon-mail path {
  fill: var(--lp_color);
}

.footer {
  margin-top: clamp(5rem, 4.88vw, 10rem);
  background-color: var(--light_color);
}
.footer__inner {
  padding-block: clamp(2.2rem, 2.14vw, 4.8rem);
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__inner {
    width: min(92%, 1200px);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 35px;
    text-align: left;
  }
}
.footer__logo {
  width: clamp(22.2rem, 21.67vw, 29rem);
  display: block;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .footer__logo {
    margin-left: 0;
  }
}
.footer__detail {
  margin-top: 12px;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .footer__detail {
    width: 50%;
    margin-top: 0;
  }
}
.footer__detail strong {
  font-size: clamp(1.6rem, 1.56vw, 2rem);
}
.footer__detail p {
  font-size: clamp(1.2rem, 1.56vw, 1.6rem);
}
.footer__detail a {
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-top: 10px;
  font-size: clamp(1.6rem, 1.56vw, 1.9rem);
  text-decoration: underline;
  transition: text-decoration-color 0.3s;
}
@media (min-width: 1024px) {
  .footer__detail a {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .footer__detail a:hover {
    text-decoration-color: transparent;
  }
}
.footer .copy {
  width: 100%;
  height: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #293751;
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: normal;
}

#topback {
  position: fixed;
  bottom: 120px;
  right: 10px;
  width: 32px;
  height: 56px;
  cursor: pointer;
  z-index: 980;
}
@media (min-width: 1024px) {
  #topback {
    bottom: 45px;
    right: min(2.5%, 50px);
  }
}
#topback.con_end {
  bottom: 445px;
  position: absolute;
}
@media (min-width: 1024px) {
  #topback.con_end {
    bottom: min(28.32vw, 345px);
  }
}

.fv img {
  pointer-events: none;
}
@media (min-width: 1024px) {
  .fv img {
    min-height: min(48.82vw, 643px);
    object-fit: cover;
  }
}

:root {
  --inner-margin: 40px;
  --inner-max: 1200px;
}
@media (min-width: 768px) {
  :root {
    --inner-margin: 7.5%;
  }
}
@media (min-width: 1024px) {
  :root {
    --inner-margin: 15%;
  }
}

.inner {
  width: min(100% - var(--inner-margin), var(--inner-max));
  margin-left: auto;
  margin-right: auto;
  transition: width 0.2s;
}

.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 0.5s;
}
.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.fade-con {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 0.5s;
}
.fade-con.active {
  opacity: 1;
  transform: translateY(0px);
}

h1,
h2,
h3,
h4,
h5,
p,
li,
span,
strong,
table {
  rotate: -0.03deg;
}

svg {
  overflow: visible;
}

.top_txt {
  background-color: var(--lp_color);
  padding-block: 8vw;
}
@media (min-width: 1024px) {
  .top_txt {
    padding-block: 36px;
  }
}
.top_txt p {
  color: #fff;
  text-align: center;
  font-size: 4vw;
  line-height: 2;
}
@media (min-width: 1024px) {
  .top_txt p {
    font-size: 2rem;
  }
}
.top_txt p:has(wbr) {
  word-break: keep-all;
}
.top_txt p + strong {
  font-size: 7.19vw;
  font-weight: bold;
  text-align: center;
  display: block;
  width: fit-content;
  margin-inline: auto;
  background-color: #fff;
  color: var(--lp_color);
  line-height: 1.2;
  margin-block: 4.26vw;
  padding-inline: 4px;
}
@media (min-width: 1024px) {
  .top_txt p + strong {
    font-size: 4rem;
    margin-block: 28px;
  }
}
.top_txt p + strong + p {
  color: #fff;
  font-size: 4vw;
  line-height: 2.4;
}
@media (min-width: 1024px) {
  .top_txt p + strong + p {
    font-size: 1.6rem;
  }
}
.top_txt p + strong + p span {
  font-size: 4.8vw;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .top_txt p + strong + p span {
    font-size: 2.5rem;
  }
}
.top_txt p + strong + p span .ls {
  letter-spacing: -1px;
}

.worries-01 {
  background: url(../../img/lp/index/worries/bg01.png) repeat-y;
  background-size: cover;
  padding-block: clamp(3.1rem, 4.03vw, 10.2rem) clamp(4.6rem, 5.98vw, 11.2rem);
}
.worries-01 h2 {
  margin-inline: auto;
  width: fit-content;
}
.worries-01 h2 img {
  width: auto;
}
.home .worries-01 h2 img {
  height: 9.72vw;
}
@media (min-width: 1024px) {
  .home .worries-01 h2 img {
    height: min(8vw, 81.93px);
  }
}
.biz .worries-01 h2 img {
  height: 10.08vw;
}
@media (min-width: 1024px) {
  .biz .worries-01 h2 img {
    height: min(8vw, 81.93px);
  }
}

.worries-01__lst {
  padding-top: clamp(3rem, 3.33vw, 8rem);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1280px) {
  .worries-01__lst {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(1rem, 0.78vw, 2.3rem);
  }
}
.worries-01__lst > li {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #fff;
}
@media (min-width: 1280px) {
  .worries-01__lst > li {
    border-radius: 10px;
  }
}
@media (min-width: 1024px) {
  .worries-01__lst > li:nth-of-type(even) {
    margin-top: min(4.06vw, 78px);
  }
}
.worries-01__lst > li strong {
  background-color: #293751;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: clamp(1.6rem, 1.56vw, 2.4rem);
  padding-block: clamp(0.9rem, 0.87vw, 1.4rem);
}
@media (min-width: 1280px) {
  .worries-01__lst > li strong {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.worries-01__lst > li > div {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 1280px) {
  .worries-01__lst > li > div {
    flex-direction: column;
  }
}
.worries-01__lst > li > div img {
  width: 114px;
  border-bottom-left-radius: 5px;
}
@media (min-width: 1280px) {
  .worries-01__lst > li > div img {
    border-bottom-left-radius: 0px;
    width: 100%;
  }
}
.worries-01__lst > li > div > ul {
  padding-inline: clamp(1rem, 0.97vw, 1.4rem);
  width: 100%;
}
.worries-01__lst > li > div > ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.4rem, 0.52vw, 1.2rem);
  font-size: clamp(1.2rem, 1.17vw, 1.5rem);
  padding-block: clamp(0.6rem, 0.58vw, 1.4rem);
  white-space: nowrap;
}
.worries-01__lst > li > div > ul li:nth-of-type(n+2) {
  border-top: solid 1px rgba(41, 55, 81, 0.3);
}
.worries-01__lst > li > div > ul li::before {
  content: "";
  display: block;
  background: url(../../img/lp/index/worries/lst_icon.png) no-repeat;
  background-size: 100%;
  width: clamp(1.8rem, 1.4vw, 3rem);
  height: clamp(1.8rem, 1.4vw, 3rem);
  min-width: clamp(1.8rem, 1.4vw, 3rem);
  min-height: clamp(1.8rem, 1.4vw, 3rem);
}

.worries-02 {
  background: url(../../img/lp/index/worries/02/bg.png) no-repeat, linear-gradient(#ffdd57 0%, #fea 100%);
  background-size: cover;
  background-position: top center;
}
.worries-02 h3 {
  margin-inline: auto;
  width: 37.33vw;
  transform: translateY(-4vw);
}
@media (min-width: 1024px) {
  .worries-02 h3 {
    width: min(23.43vw, 293px);
    transform: translateY(max(-2.45vw, -36px));
  }
}
.worries-02 .img_contents {
  overflow: clip;
  --inner-max: 1060px;
}
.worries-02 .img_contents .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: -8vw;
}
@media (min-width: 1024px) {
  .worries-02 .img_contents .inner {
    margin-inline: auto;
    gap: min(4.43%, 47px);
  }
}
.worries-02 .img_contents .inner > img {
  width: 48vw;
}
@media (min-width: 1024px) {
  .worries-02 .img_contents .inner > img {
    width: min(40.83%, 432.85px);
  }
}
.worries-02 .img_contents .inner .txt {
  width: 58.66vw;
  min-width: 58.66vw;
}
@media (min-width: 1024px) {
  .worries-02 .img_contents .inner .txt {
    min-width: auto;
    width: min(46.37%, 491.56px);
    margin-top: max(-5.34vw, -80px);
  }
}
@media (min-width: 1024px) {
  .worries-02 .img_contents .inner .txt.sp {
    display: none;
  }
}
.worries-02 .img_contents .inner .txt.pc {
  display: none;
}
@media (min-width: 1024px) {
  .worries-02 .img_contents .inner .txt.pc {
    display: block;
  }
}
.worries-02 .img_contents .inner .txt svg #bg_color {
  fill: var(--lp_color);
}
.worries-02 .img_contents .inner .txt svg #bg_color_pc {
  fill: var(--lp_color);
}
.worries-02 .container {
  --inner-max: 1060px;
  overflow-x: clip;
  position: relative;
  margin-top: -4.54vw;
}
.worries-02 .container::after {
  content: "";
  display: block;
  width: 105vw;
  height: 21.78vw;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: -2.5vw;
  background-color: var(--lp_color);
  border-top-left-radius: 50% 30%;
  border-top-right-radius: 50% 30%;
}
@media (min-width: 1024px) {
  .worries-02 .container::after {
    height: min(12.31vw, 184.7px);
    border-top-left-radius: 50% 56%;
    border-top-right-radius: 50% 56%;
  }
}
.worries-02 .container .inner {
  position: relative;
  z-index: 5;
  padding-top: 5.465vw;
  padding-bottom: 4.53vw;
}
@media (min-width: 1024px) {
  .worries-02 .container .inner {
    padding-top: min(4.33vw, 65px);
    padding-bottom: min(3.86vw, 58px);
    margin-top: max(-9vw, -135px);
  }
}
.worries-02 .container ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.33vw;
  margin-top: -3.74vw;
}
@media (min-width: 1024px) {
  .worries-02 .container ul {
    margin-top: 0;
  }
}
.worries-02 .container ul li {
  width: calc((100% - 2.66vw) / 3);
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(77, 71, 55, 0.24);
}
.worries-02 .container ul li svg path,
.worries-02 .container ul li rect {
  fill: var(--lp_color);
}
.worries-02 .container ul li .icon {
  width: 10.93vw;
  height: 10.93vw;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5.065vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .worries-02 .container ul li .icon {
    width: min(8.66vw, 130px);
    height: min(8.66vw, 130px);
    top: max(-4.2vw, -63px);
  }
}
.worries-02 .container ul li .icon svg {
  width: 39%;
  margin-top: -4.27vw;
}
@media (min-width: 1024px) {
  .worries-02 .container ul li .icon svg {
    margin-top: max(-2.67vw, -40px);
  }
}
.worries-02 .container ul li .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  line-height: 1;
  font-size: 5.6vw;
  font-weight: bold;
  padding-inline: 2.66vw;
  padding-block: 3.2vw;
  transform: rotate(-0.03deg);
}
@media (min-width: 1024px) {
  .worries-02 .container ul li .txt {
    padding-block: min(3vw, 45px) min(2.46vw, 37px);
    padding-inline: min(2.66vw, 40px);
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .worries-02 .container ul li .txt {
    font-size: min(4.88vw, 5.7rem);
  }
}
.worries-02 .container ul li .txt:has(strong) span {
  font-size: 2.4vw;
}
@media (min-width: 1024px) {
  .worries-02 .container ul li .txt:has(strong) span {
    font-size: 2.6rem;
  }
}
.worries-02 .container ul li .txt:has(strong) strong {
  font-size: 6.13vw;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .worries-02 .container ul li .txt:has(strong) strong {
    font-size: min(4.88vw, 5.7rem);
  }
}
.worries-02 .container ul li .txt span {
  font-size: 2.66vw;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .worries-02 .container ul li .txt span {
    font-size: 2.6rem;
  }
}

.cta {
  padding-top: clamp(5rem, 4.88vw, 8.5rem);
  padding-bottom: clamp(5rem, 5.55vw, 11.7rem);
}
.cta .inner {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
@media (min-width: 1024px) {
  .cta .inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .cta .tel_area {
    width: 50%;
  }
}
.cta .tel_area .txt {
  width: 82.93vw;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .cta .tel_area .txt {
    width: min(30.27vw, 484px);
    margin-left: min(1.56vw, 29px);
  }
}
.cta .tel_area .txt svg .cta_sp {
  fill: var(--lp_color);
}
.cta .tel_area .txt svg .cta_pc {
  fill: var(--lp_color);
}
.cta .tel_area .txt.sp {
  display: block;
}
@media (min-width: 1024px) {
  .cta .tel_area .txt.sp {
    display: none;
  }
}
.cta .tel_area .txt.pc {
  display: none;
}
@media (min-width: 1024px) {
  .cta .tel_area .txt.pc {
    display: block;
  }
}
.cta .tel_area > div ul {
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .cta .tel_area > div ul {
    margin-left: 0;
  }
}
.cta .tel_area > div ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 9px;
}
@media (min-width: 1024px) {
  .cta .tel_area > div ul li {
    gap: clamp(2rem, 1.95vw, 3rem);
  }
}
.cta .tel_area > div ul li p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(8.8rem, 8.59vw, 13rem);
  height: clamp(3.024rem, 2.95vw, 4.7rem);
  color: #fff;
  font-size: clamp(1.4rem, 1.36vw, 2rem);
  font-weight: normal;
  border-radius: 10px;
}
.cta .tel_area > div ul li a {
  font-size: clamp(2.95rem, 2.88vw, 5rem);
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .cta .tel_area > div ul li a {
    pointer-events: none;
  }
}
.cta .tel_area > div ul li:nth-of-type(1) p {
  background-color: var(--lp_color);
}
.cta .tel_area > div ul li:nth-of-type(2) p {
  background-color: #293751;
}
.cta .tel_area > div ul + p {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  width: fit-content;
  margin-inline: auto;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .cta .tel_area > div ul + p {
    padding-left: calc(clamp(8.8rem, 8.59vw, 13rem) + clamp(2rem, 1.95vw, 3rem));
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .cta .btn_area {
    width: 50%;
    padding-left: clamp(3rem, 2.92vw, 6rem);
  }
}
.cta .btn_area strong {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.6rem, 1.56vw, 2.6rem);
  color: #DC2424;
  font-size: clamp(2.3rem, 2.24vw, 3.5rem);
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #FFDD57;
  text-decoration-thickness: clamp(0.386rem, 0.37vw, 0.6rem);
  text-underline-offset: 10px;
}
.cta .btn_area strong::before {
  content: "";
  display: block;
  background: url(../../img/lp/index/cta/txt01.svg) no-repeat;
  background-size: 100%;
  width: clamp(9.363rem, 9.14vw, 14.554rem);
  height: clamp(8.745rem, 8.54vw, 13.593rem);
  min-width: clamp(9.363rem, 9.14vw, 14.554rem);
  min-height: clamp(8.745rem, 8.54vw, 13.593rem);
}
.cta .btn_area .btn {
  margin-top: clamp(1.8rem, 1.75vw, 3.4rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: clamp(2rem, 1.95vw, 3rem);
  font-weight: normal;
  border-radius: 10px;
  background-color: #DC2424;
  box-shadow: 0 clamp(0.3rem, 0.29vw, 0.5rem) 0 #293751;
  position: relative;
  padding-block: clamp(1rem, 0.97vw, 1.6rem);
  transform: translateY(0px);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.cta .btn_area .btn::before {
  content: "";
  display: block;
  background: url(../../img/lp/icon/icon-cta.svg) no-repeat;
  background-size: 100%;
  width: clamp(3.257rem, 3.18vw, 5.063rem);
  height: clamp(3.67rem, 3.58vw, 5.705rem);
  margin-inline: clamp(1.7rem, 1.66vw, 3rem);
}
.cta .btn_area .btn p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: clamp(4rem, 3.9vw, 7rem);
  border-left: solid 1px #fff;
  height: clamp(5.3rem, 5.17vw, 8rem);
}
@media (min-width: 1024px) {
  .cta .btn_area .btn:hover {
    box-shadow: none;
    background-color: var(--lp_color);
    transform: translateY(clamp(0.3rem, 0.29vw, 0.5rem));
  }
}

.reason {
  padding-block: clamp(5rem, 4.88vw, 10rem);
}
.home .reason {
  background: linear-gradient(135deg, rgb(255, 221, 87) 0%, rgba(255, 221, 87, 0.2) 100%), url(../../img/lp/home/reason/bg.png) repeat-y;
  background-size: cover;
  background-position: top center;
}
.biz .reason {
  background: linear-gradient(135deg, rgba(27, 87, 227, 0.95) 0%, rgba(27, 87, 227, 0.2) 100%), url(../../img/lp/biz/reason/bg.png) repeat-y;
  background-size: cover;
  background-position: top center;
}
.biz .reason h3 {
  color: #fff;
}
.reason h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(2rem, 1.95vw, 3.5rem);
  width: fit-content;
  margin-inline: auto;
}
.reason h3 img {
  width: 68%;
}
@media (min-width: 1280px) {
  .reason h3 img {
    width: min(82%, 432.81px);
  }
}
.reason ul {
  padding-top: clamp(5rem, 4.88vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: clamp(4.8rem, 4.68vw, 7.6rem);
}
.reason ul li {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
@media (min-width: 1024px) {
  .reason ul li {
    display: flex;
    justify-content: flex-start;
  }
}
.reason ul li:nth-of-type(1)::before {
  order: 1;
  content: "";
  display: block;
  background: url(../../img/lp/index/reason/num01.svg) no-repeat;
  background-size: 100%;
  width: clamp(13.1rem, 12.79vw, 19.99rem);
  height: clamp(7.268rem, 7.09vw, 11.083rem);
  min-width: clamp(13.1rem, 12.79vw, 19.99rem);
  min-height: clamp(7.268rem, 7.09vw, 11.083rem);
  position: absolute;
  left: 0;
  top: calc(clamp(1rem, 0.97vw, 2.4rem) * -1);
}
@media (min-width: 1024px) {
  .reason ul li:nth-of-type(1)::before {
    left: calc(clamp(2.2rem, 2.14vw, 4.4rem) * -1);
  }
}
.reason ul li:nth-of-type(2)::before {
  order: 2;
  content: "";
  display: block;
  background: url(../../img/lp/index/reason/num02.svg) no-repeat;
  background-size: 100%;
  width: clamp(13.1rem, 12.79vw, 19.99rem);
  height: clamp(7.268rem, 7.09vw, 11.083rem);
  min-width: clamp(13.1rem, 12.79vw, 19.99rem);
  min-height: clamp(7.268rem, 7.09vw, 11.083rem);
  position: absolute;
  left: 0;
  top: calc(clamp(1rem, 0.97vw, 2.4rem) * -1);
}
@media (min-width: 1024px) {
  .reason ul li:nth-of-type(2)::before {
    left: calc(clamp(2.2rem, 2.14vw, 4.4rem) * -1);
  }
}
.reason ul li:nth-of-type(3)::before {
  order: 3;
  content: "";
  display: block;
  background: url(../../img/lp/index/reason/num03.svg) no-repeat;
  background-size: 100%;
  width: clamp(13.1rem, 12.79vw, 19.99rem);
  height: clamp(7.268rem, 7.09vw, 11.083rem);
  min-width: clamp(13.1rem, 12.79vw, 19.99rem);
  min-height: clamp(7.268rem, 7.09vw, 11.083rem);
  position: absolute;
  left: 0;
  top: calc(clamp(1rem, 0.97vw, 2.4rem) * -1);
}
@media (min-width: 1024px) {
  .reason ul li:nth-of-type(3)::before {
    left: calc(clamp(2.2rem, 2.14vw, 4.4rem) * -1);
  }
}
.reason ul li .txt {
  padding-inline: 20px;
  padding-top: 93px;
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  .reason ul li .txt {
    padding-top: min(8.93vw, 134px);
    padding-bottom: min(5.33vw, 80px);
    padding-left: clamp(4rem, 3.9vw, 6.3rem);
    padding-right: clamp(4rem, 3.9vw, 7rem);
  }
}
.reason ul li .txt strong {
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
}
.reason ul li .txt strong span {
  display: inline-block;
}
.reason ul li .txt p {
  margin-top: clamp(1.4rem, 1.09vw, 1.8rem);
  padding-top: clamp(1.6rem, 1.25vw, 2.2rem);
  border-top: solid 1px #293751;
  font-size: clamp(1.4rem, 1.09vw, 1.6rem);
  font-weight: normal;
}

.price {
  padding-block: clamp(5rem, 4.88vw, 10rem);
  background-color: #F4F5F6;
  overflow-x: clip;
}
.price h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: clamp(2rem, 1.95vw, 3.5rem);
  font-weight: 500;
}
.price h3 svg {
  width: clamp(4rem, 3.9vw, 7rem);
}
.price h3 svg .price_image {
  fill: var(--lp_color);
}
.price .scrollbar-wrapper {
  padding-block: 12px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .price .scrollbar-wrapper {
    display: none;
  }
}
.price .scrollbar-wrapper .arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.price .scrollbar-wrapper .arrow svg {
  overflow: visible;
}
.price .scrollbar-wrapper .arrow svg path {
  fill: var(--lp_color);
}
.price .scrollbar {
  display: block;
  background-color: #D8D8D8;
  width: 92%;
  height: 7px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.price .scrollbar-thumb {
  display: block;
  position: absolute;
  width: 27%;
  height: 7px;
  left: 0;
  top: 50% !important;
  transform: translateY(-50%);
  background-color: #A7A7A7;
  border-radius: 50px;
}

.price__table .contents {
  padding-top: clamp(5rem, 4.88vw, 6rem);
}
@media (min-width: 1024px) {
  .price__table .contents {
    padding-bottom: clamp(1.5rem, 1.46vw, 2.9rem);
  }
}
.price__table .contents h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  word-wrap: 100%;
  color: #fff;
  font-size: clamp(2rem, 1.95vw, 3rem);
  font-weight: 500;
  background-color: var(--lp_color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding-block: clamp(1rem, 0.97vw, 1.4rem);
}
.price__table .contents .btn {
  margin-top: clamp(1rem, 0.97vw, 2rem);
  width: min(100%, 353px);
  height: 68px;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: solid var(--lp_color) 1px;
  border-radius: 10px;
  font-size: clamp(1.6rem, 1.56vw, 1.9rem);
  font-weight: 500;
  background-color: var(--lp_color);
  transition: color 0.3s, background-color 0.3s;
}
.price__table .contents .btn::after {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  border-left: solid 11px #fff;
  border-top: solid 6.5px transparent;
  border-bottom: solid 6.5px transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: border-color 0.3s;
}
@media (min-width: 1024px) {
  .price__table .contents .btn:hover {
    background-color: #fff;
    color: var(--lp_color);
  }
  .price__table .contents .btn:hover::after {
    border-left-color: var(--lp_color);
  }
}

.contents__table {
  width: 100vw;
}
@media (min-width: 768px) {
  .contents__table {
    width: 100%;
    padding-top: 12px;
  }
}
.contents__table > p {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.4;
}
@media (min-width: 768px) {
  .contents__table > p {
    text-align: right;
  }
}
.contents__table .wrapper {
  scrollbar-width: none;
  overflow-x: scroll;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.48vw, 1.2rem);
  padding-right: 40px;
}
@media (min-width: 768px) {
  .contents__table .wrapper {
    width: 100%;
    padding-right: 0;
    overflow-x: visible;
  }
}
.contents__table table,
.contents__table th,
.contents__table td {
  border: solid 2px #B7B5AF;
  min-height: 88px;
  border-collapse: collapse;
  vertical-align: middle;
  padding: 10px;
}
@media (min-width: 1024px) {
  .contents__table table,
  .contents__table th,
  .contents__table td {
    padding-block: 30px;
  }
}
.contents__table table {
  background-color: #fff;
  width: 100vw;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .contents__table table {
    width: 100%;
  }
}
.contents__table table th {
  width: 140px;
  min-width: 140px;
  text-align: center;
  background-color: var(--light_color);
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contents__table table th {
    width: 25%;
    font-size: clamp(1.4rem, 1.36vw, 2rem);
  }
}
.contents__table table th:has(wbr) {
  word-break: keep-all;
}
.contents__table table th a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .contents__table table th a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}
.contents__table table td {
  width: 530px;
  min-width: 530px;
  font-size: 1.3rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .contents__table table td {
    width: 75%;
    font-size: clamp(1.3rem, 1.26vw, 1.6rem);
  }
}
@media (min-width: 1024px) {
  .contents__table table td {
    padding-block: 16px;
    padding-inline: 34px;
  }
}
.contents__table table td p {
  transform: rotate(-0.03deg);
  line-height: 1.6;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 3lh;
}

.blog {
  padding-block: clamp(5rem, 4.88vw, 10rem);
  background-color: #F4F5F6;
  overflow-x: clip;
}
.blog h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: clamp(2rem, 1.95vw, 3.5rem);
  font-weight: 500;
}
.blog h3 svg {
  width: clamp(4rem, 3.9vw, 7rem);
}
.blog h3 svg .blog_image {
  fill: var(--lp_color);
}
.blog .btn {
  margin-top: clamp(3rem, 2.92vw, 6rem);
  width: min(100%, 353px);
  height: 68px;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: solid var(--lp_color) 1px;
  border-radius: 10px;
  font-size: clamp(1.6rem, 1.56vw, 1.9rem);
  font-weight: 500;
  background-color: var(--lp_color);
  transition: color 0.3s, background-color 0.3s;
}
.blog .btn::after {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  border-left: solid 11px #fff;
  border-top: solid 6.5px transparent;
  border-bottom: solid 6.5px transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: border-color 0.3s;
}
@media (min-width: 1024px) {
  .blog .btn:hover {
    background-color: #fff;
    color: var(--lp_color);
  }
  .blog .btn:hover::after {
    border-left-color: var(--lp_color);
  }
}

.blog--slider {
  margin-top: clamp(5rem, 3.9vw, 6rem);
  width: 100vw;
}
@media (min-width: 1280px) {
  .blog--slider {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
  }
}
.blog--slider .slick-track {
  display: flex !important;
  justify-content: flex-start;
  gap: 15px;
}
.blog--slider .item {
  width: 289px;
  height: auto;
  border-radius: 5px;
  overflow: clip;
  background-color: #fff;
}
@media (min-width: 1280px) {
  .blog--slider .item {
    width: calc((100% - 42px) / 4);
  }
}
.blog--slider .item a {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 20px;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .blog--slider .item a:hover {
    opacity: 0.6;
  }
}
.blog--slider .item img {
  aspect-ratio: 289/173;
  object-fit: cover;
}
.blog--slider .item .txt {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-inline: 20px;
}
.blog--slider .item .txt .cat {
  width: fit-content;
  padding-inline: 16px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-block: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--lp_color);
}
.blog--slider .item .txt p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

.area h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 1.95vw, 3.5rem);
  font-weight: 500;
}
.area h3 strong {
  font-weight: 500;
}
.area h3 svg {
  width: clamp(3.294rem, 3.21vw, 4.949rem);
}
@media (min-width: 1024px) {
  .area .contents {
    border-radius: 10px;
  }
}
.area-01 {
  background-color: var(--area_color);
  padding-top: clamp(3rem, 3.9vw, 10rem);
  padding-bottom: clamp(5rem, 4.88vw, 10rem);
}
@media (max-width: 767px) {
  .area-01 {
    --inner-margin: 0px;
  }
}
.area-01 h3 svg path {
  fill: var(--lp_color);
}
.area-01 .contents {
  margin-top: clamp(3rem, 2.92vw, 6rem);
  background-color: #fff;
  padding-block: clamp(5rem, 4.88vw, 10rem);
  padding-inline: clamp(2rem, 1.95vw, 25rem);
}
@media (min-width: 768px) {
  .area-01 .contents img {
    display: block;
    max-width: 700px;
    margin-inline: auto;
  }
}
.area-02 {
  background-color: #F3FCF3;
  padding-top: clamp(3rem, 3.9vw, 10rem);
  padding-bottom: clamp(5rem, 4.88vw, 10rem);
}
@media (max-width: 767px) {
  .area-02 {
    --inner-margin: 0px;
  }
}
.area-02 h3 span {
  color: #35C139;
}
.area-02 .contents {
  margin-top: clamp(3rem, 2.92vw, 6rem);
  background-color: #fff;
  padding-block: clamp(5rem, 4.88vw, 10rem);
  padding-inline: clamp(2rem, 1.95vw, 7rem);
}
@media (min-width: 1024px) {
  .area-02 .contents {
    padding-inline: clamp(4rem, 3.9vw, 7rem);
  }
}
.area-02 .contents ul {
  display: flex;
  flex-direction: column;
  gap: 47px;
}
@media (min-width: 1024px) {
  .area-02 .contents ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(5rem, 4.88vw, 10rem) clamp(3rem, 2.92vw, 6rem);
  }
}
@media (min-width: 1024px) {
  .area-02 .contents ul li {
    width: calc((100% - clamp(3rem, 2.92vw, 6rem)) / 2);
  }
}

.faq {
  --inner-max: 1060px;
  background-color: #F4F5F6;
  padding-top: clamp(3rem, 3.9vw, 10rem);
  padding-bottom: clamp(5rem, 4.88vw, 10rem);
}
.faq h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 1.95vw, 3.5rem);
  font-weight: 500;
}
.faq h3 strong {
  font-weight: 500;
}
.faq h3 svg {
  width: clamp(4rem, 3.9vw, 6.87rem);
}
.faq h3 svg path {
  fill: var(--lp_color);
}

.faq__dl {
  margin-top: clamp(3.1rem, 3.02vw, 6.8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 5rem);
  counter-reset: num 0;
}
@media (min-width: 1024px) {
  .faq__dl {
    gap: clamp(3rem, 2.92vw, 5rem);
  }
}
.home .faq__dl {
  --dt_color: #FFEEAA;
}
.biz .faq__dl {
  --dt_color: #D6EAF8;
}
.faq__dl dl {
  overflow: hidden;
  border-radius: clamp(0.5rem, 0.48vw, 1rem);
  counter-increment: num 1;
}
.faq__dl dl dt {
  padding-inline: clamp(2rem, 1.95vw, 4rem);
  padding-block: 18px;
  font-size: clamp(1.6rem, 1.56vw, 2rem);
  font-weight: 500;
  background-color: var(--dt_color);
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 12px;
}
.faq__dl dl dt::before {
  content: "Q" counter(num) ".";
  font-size: clamp(2.4rem, 2.34vw, 3.5rem);
  line-height: 1;
}
.faq__dl dl dd {
  padding-block: 18px;
  padding-inline: clamp(2rem, 1.95vw, 4rem);
  background-color: #fff;
}
.faq__dl dl dd p {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: normal;
}

.contact {
  --inner-max: 1060px;
  padding-top: clamp(3rem, 3.9vw, 10rem);
  padding-bottom: clamp(5rem, 4.88vw, 10rem);
}
.contact h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 0.48vw, 1rem);
  font-size: clamp(2rem, 1.95vw, 3.5rem);
  font-weight: 500;
}
.contact h3 strong {
  font-weight: 500;
}
.contact h3 svg {
  width: clamp(4rem, 3.9vw, 6.1rem);
}
.contact .inner {
  padding-top: clamp(1.6rem, 1.56vw, 2.4rem);
}
.contact .inner > p {
  text-align: center;
  word-break: keep-all;
  font-size: clamp(1.4rem, 1.36vw, 1.8rem);
}
.contact .inner .tel_box a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(1.2rem, 1.17vw, 2.1rem);
  color: var(--lp_color);
  font-size: clamp(3.8rem, 3.71vw, 7rem);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .contact .inner .tel_box a {
    pointer-events: none;
  }
}
.contact .inner .tel_box a::before {
  content: "tel.";
  font-size: clamp(2.7rem, 2.63vw, 5rem);
  font-weight: 500;
}
.contact .inner .tel_box > p {
  text-align: center;
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
}
.contact .contact__dl {
  margin-top: 63px;
}
@media (min-width: 1024px) {
  .contact .contact__dl {
    margin-top: 42px;
  }
}
.contact .contact__dl dl {
  border-top: solid var(--contact_border) 1px;
  padding-block: clamp(2.6rem, 2.53vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .contact .contact__dl dl {
    padding-inline: clamp(1.5rem, 1.46vw, 3rem) clamp(2rem, 1.95vw, 4rem);
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.contact .contact__dl dl:nth-last-of-type(1) {
  border-bottom: solid var(--contact_border) 1px;
}
.contact .contact__dl dl dt {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .contact .contact__dl dl dt {
    width: min(30.7%, 326px);
    margin-top: 5px;
  }
}
.contact .contact__dl dl dt.req {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.contact .contact__dl dl dt.req::after {
  content: "必須";
  width: 40px;
  height: 20px;
  min-width: 40px;
  min-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lp_color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .contact .contact__dl dl dd {
    width: calc(100% - min(30.7%, 326px));
  }
}
.contact .contact__dl dl dd ul {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .contact .contact__dl dl dd ul {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px 0;
  }
}
@media (min-width: 1024px) {
  .contact .contact__dl dl dd ul li {
    width: 42.8%;
  }
}
.contact .contact__dl input[type=text] {
  width: 100%;
  border: solid rgba(41, 55, 81, 0.3) 1px;
  background-color: #F4F5F6;
  border-radius: 5px;
  height: 40px;
  padding-inline: 8px;
  font-size: 1.6rem;
}
@media (min-width: 1024px) {
  .contact .contact__dl input[type=text].addr {
    width: 204px;
  }
}
.contact .contact__dl textarea {
  width: 100%;
  border: solid rgba(41, 55, 81, 0.3) 1px;
  background-color: #F4F5F6;
  border-radius: 5px;
  min-height: clamp(15rem, 19.53vw, 28rem);
  padding: 8px;
  font-size: 1.6rem;
}
.contact .privacy {
  width: min(100%, 811px);
  margin-inline: auto;
  margin-top: clamp(3rem, 2.92vw, 4rem);
  border-radius: 7px;
}
.contact .privacy strong {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.contact .privacy .contents {
  font-weight: normal;
  height: clamp(20rem, 19.53vw, 26rem);
  overflow-y: scroll;
  margin-top: clamp(1.8rem, 2.34vw, 2.6rem);
  background-color: #F4F5F6;
  border: solid rgba(41, 55, 81, 0.3) 1px;
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  padding-block: clamp(1.7rem, 1.66vw, 2.4rem);
  padding-inline: clamp(1.3rem, 1.26vw, 3rem);
}
@media (min-width: 1024px) {
  .contact .privacy .contents {
    padding-left: clamp(1.3rem, 1.26vw, 3rem);
    padding-right: clamp(4rem, 3.9vw, 8rem);
  }
}
.contact .privacy .contents dl {
  margin-top: clamp(1.6rem, 1.56vw, 1.8rem);
}
.contact .privacy .contents dl dt:nth-of-type(n+2) {
  margin-top: clamp(1.6rem, 1.56vw, 1.8rem);
}
.contact .privacy_chk {
  margin-top: clamp(4rem, 3.9vw, 5rem);
  width: fit-content;
  margin-inline: auto;
}
.contact .privacy_chk label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  font-weight: bold;
}
.contact .privacy .contents ul {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-top: 0.5em;
}
.contact .privacy .contents dl dd > div {
  margin-top: 1em;
}
.contact .privacy .contents dl dd p + p {
  margin-top: 1em;
}
.contact .privacy .contents dl dd a {
  text-decoration: underline;
}
.contact .privacy .contents dl dd a:hover {
  text-decoration: none;
}

body:has(._blog) {
  background-color: #F4F5F6;
}

._blog {
  --inner-max: 1200px;
  margin-inline: auto;
  padding-top: clamp(1.6rem, 1.25vw, 2.4rem);
}
._blog h3 {
  padding-top: 30px;
  width: fit-content;
  margin-inline: auto;
  color: #2A3632;
  font-size: clamp(2.5rem, 2.44vw, 3.5rem);
  font-weight: bold;
}

._blog__inner {
  padding-top: clamp(3rem, 2.34vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.7rem, 2.1vw, 5rem);
}

aside {
  background-color: var(--lp_color);
  border-radius: 10px;
  padding: 20px;
}
@media (min-width: 1024px) {
  aside {
    width: min(88.3%, 1060px);
    margin-inline: auto;
    border-radius: 20px;
    padding-block: 22px;
    padding-inline: 30px;
  }
}
aside ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  aside ul {
    flex-direction: row;
  }
}
aside ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1024px) {
  aside ul li {
    width: 50%;
  }
  aside ul li:nth-of-type(1) {
    padding-right: 28px;
  }
  aside ul li:nth-of-type(2) {
    padding-left: 28px;
  }
}
aside ul li strong {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
aside ul li .select_box {
  width: 52vw;
  position: relative;
}
@media (min-width: 1024px) {
  aside ul li .select_box {
    width: min(21.48vw, 352px);
  }
}
@media (min-width: 1280px) {
  aside ul li .select_box {
    width: min(25vw, 352px);
  }
}
aside ul li .select_box::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: solid 1px #2A3632;
  border-bottom: solid 1px #2A3632;
  position: absolute;
  top: calc(50% - 2px);
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
aside ul li .select_box select {
  appearance: none;
  cursor: pointer;
  width: 100%;
  height: 37px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  padding-inline: 18px;
}

.breadcrumb {
  padding-top: clamp(8rem, 10.41vw, 16rem);
  width: min(100% - var(--inner-margin), 1200px);
  margin-inline: auto;
}
.breadcrumb ul {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--lp_color);
}
.breadcrumb ul li {
  display: inline;
  font-size: clamp(1.2rem, 0.93vw, 1.6rem);
  font-weight: normal;
  color: #2A3632;
  --hover_color: #2A3632;
}
.breadcrumb ul li:nth-of-type(1) {
  color: #2A3632;
  --hover_color: #2A3632;
}
.breadcrumb ul li:not(:nth-of-type(1))::before {
  content: "ー";
  display: inline-block;
  padding-inline: clamp(1rem, 0.78vw, 1.6rem);
  color: #2A3632;
}
.breadcrumb ul li.current {
  color: #2A3632;
}
.breadcrumb ul li a {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}
@media (min-width: 1024px) {
  .breadcrumb ul li a:hover {
    text-decoration-color: var(--hover_color);
  }
}

.pager {
  margin-top: clamp(3rem, 2.34vw, 5rem);
}
.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pager ul li {
  line-height: 1;
  padding-bottom: 2px;
}
.pager ul li.current {
  color: #fff;
  background-color: #2A3632;
  border-radius: 10px;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .pager ul li.current {
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
}
.pager ul li a {
  line-height: 1;
  padding-bottom: 2px;
}
.pager ul li a.pages {
  border-radius: 10px;
  border: solid 1px #2A3632;
  color: #2A3632;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: normal;
  width: 41px;
  height: 41px;
  transition: color 0.3s, background-color 0.3s;
}
@media (min-width: 1024px) {
  .pager ul li a.pages {
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 1024px) {
  .pager ul li a.pages:hover {
    color: #fff;
    background-color: var(--lp_color);
  }
}
.pager ul li a.prev {
  display: block;
  width: 41px;
  height: 41px;
  position: relative;
}
@media (min-width: 1024px) {
  .pager ul li a.prev {
    width: 36px;
    height: 36px;
  }
}
.pager ul li a.prev::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 6px;
  border-left: solid 1px #2A3632;
  border-top: solid 1px #2A3632;
  transform: translateY(-50%) rotate(-45deg);
}
.pager ul li a.next {
  display: block;
  width: 41px;
  height: 41px;
  position: relative;
}
@media (min-width: 1024px) {
  .pager ul li a.next {
    width: 36px;
    height: 36px;
  }
}
.pager ul li a.next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 6px;
  border-right: solid 1px #2A3632;
  border-bottom: solid 1px #2A3632;
  transform: translateY(-50%) rotate(-45deg);
}
.pager ul li a.arrow::before {
  transition: border-color 0.3s;
}
@media (min-width: 1024px) {
  .pager ul li a.arrow:hover::before {
    border-color: var(--lp_color);
  }
}

.single-pager {
  padding-top: clamp(3rem, 2.92vw, 5rem);
}
.single-pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 29px;
}
.single-pager ul li a.backbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(29.86vw, 136px);
  background-color: #2A3632;
  color: #fff;
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  font-weight: normal;
  padding-inline: clamp(1.2rem, 0.93vw, 1.6rem);
  padding-block: 4px;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 1024px) {
  .single-pager ul li a.backbtn:hover {
    background-color: var(--lp_color);
    color: unset;
  }
}
.single-pager ul li a.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}
.single-pager ul li a.prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: solid 1px #2A3632;
  border-top: solid 1px #2A3632;
  transform: rotate(-45deg);
  transition: border-color 0.3s;
}
@media (min-width: 1024px) {
  .single-pager ul li a.prev:hover {
    color: var(--lp_color);
  }
  .single-pager ul li a.prev:hover::before {
    border-color: var(--lp_color);
  }
}
.single-pager ul li a.next {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}
.single-pager ul li a.next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: solid 1px #2A3632;
  border-bottom: solid 1px #2A3632;
  transform: rotate(-45deg);
  transition: border-color 0.3s;
}
@media (min-width: 1024px) {
  .single-pager ul li a.next:hover {
    color: var(--lp_color);
  }
  .single-pager ul li a.next:hover::after {
    border-color: var(--lp_color);
  }
}

.blog__lst {
  margin-top: clamp(5rem, 3.9vw, 6rem);
  width: 100%;
}
.blog__lst .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .blog__lst .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 14px;
  }
}
.blog__lst .item {
  border-radius: 5px;
  overflow: clip;
  background-color: #fff;
}
@media (min-width: 768px) {
  .blog__lst .item {
    width: calc((100% - 14px) / 2);
  }
}
@media (min-width: 1280px) {
  .blog__lst .item {
    width: calc((100% - 42px) / 4);
  }
}
.blog__lst .item a {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 20px;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .blog__lst .item a:hover {
    opacity: 0.6;
  }
}
.blog__lst .item img {
  aspect-ratio: 289/173;
  object-fit: cover;
}
.blog__lst .item .txt {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-inline: 20px;
}
.blog__lst .item .txt .cat {
  width: fit-content;
  padding-inline: 16px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-block: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--lp_color);
}
.blog__lst .item .txt p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

._blog__single {
  background-color: #fff;
  border-radius: 10px;
  padding-inline: 20px;
  padding-block: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  ._blog__single {
    border-radius: 20px;
    margin-inline: auto;
    padding-inline: min(3.64vw, 70px);
    padding-block: min(2.6vw, 50px);
  }
}
._blog__single .detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  ._blog__single .detail {
    justify-content: flex-start;
    gap: clamp(2rem, 1.56vw, 3.5rem);
  }
}
._blog__single .detail .day {
  font-size: clamp(1.4rem, 1.36vw, 1.8rem);
  font-weight: bold;
}
._blog__single .detail .day span {
  font-size: 2.4rem;
}
._blog__single .detail .cat {
  width: fit-content;
  padding-inline: 16px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-block: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--lp_color);
}
._blog__single h4 {
  font-size: clamp(1.8rem, 1.75vw, 2.5rem);
  font-weight: bold;
}

._blog__single--contents {
  margin-top: clamp(1.8rem, 1.75vw, 4rem);
  padding-block: clamp(1.8rem, 1.75vw, 4rem);
  border-block: solid 1px var(--lp_color);
}
._blog__single--contents *:nth-child(n+2) {
  margin-top: clamp(1.8rem, 1.75vw, 4rem);
}
._blog__single--contents p {
  font-size: clamp(1.4rem, 1.36vw, 1.8rem);
  font-weight: normal;
}
._blog__single--contents img {
  display: block;
  text-align: center;
  margin-inline: auto;
}

.radio {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .radio {
    gap: 6px;
  }
}
.radio span {
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  border: solid 1px #323038;
  position: relative;
}
.radio span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--lp_color);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.radio input[type=radio] {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
}
.radio:has(input[type=radio]:checked) span::after {
  opacity: 1;
}

.chk {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  position: relative;
}
.chk span {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: solid 1px #323038;
  position: relative;
}
.chk span::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  min-width: 5px;
  min-height: 10px;
  border-right: solid 2px var(--lp_color);
  border-bottom: solid 2px var(--lp_color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}
.chk input[type=checkbox] {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
}
.chk:has(input[type=checkbox]:checked) span::after {
  opacity: 1;
}

.mailform {
  padding-top: clamp(8rem, 7.81vw, 12rem);
}

.conf_container > strong {
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
  font-weight: bold;
  display: block;
  text-align: center;
}
.conf_container .err {
  color: #E94545;
}
.conf_container.contact__dl > p {
  text-align: center;
  font-size: 1.6rem;
  margin-block: clamp(2.4rem, 2.34vw, 3.6rem);
}
.conf_container.contact__dl dl {
  border-top: solid var(--contact_border) 1px;
  padding-block: clamp(2.6rem, 2.53vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .conf_container.contact__dl dl {
    padding-inline: clamp(1.5rem, 1.46vw, 3rem) clamp(2rem, 1.95vw, 4rem);
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.conf_container.contact__dl dl:nth-last-of-type(1) {
  border-bottom: solid var(--contact_border) 1px;
}
.conf_container.contact__dl dl dt {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .conf_container.contact__dl dl dt {
    width: min(30.7%, 326px);
    margin-top: 5px;
  }
}
.conf_container.contact__dl dl dt.req {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.conf_container.contact__dl dl dt.req::after {
  content: "必須";
  width: 40px;
  height: 20px;
  min-width: 40px;
  min-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lp_color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .conf_container.contact__dl dl dd {
    width: calc(100% - min(30.7%, 326px));
  }
}
.conf_container.contact__dl dl dd ul {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .conf_container.contact__dl dl dd ul {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px 0;
  }
}
@media (min-width: 1024px) {
  .conf_container.contact__dl dl dd ul li {
    width: 42.8%;
  }
}
.conf_container.contact__dl input[type=text] {
  width: 100%;
  border: solid rgba(41, 55, 81, 0.3) 1px;
  background-color: #F4F5F6;
  border-radius: 5px;
  height: 40px;
  padding-inline: 8px;
  font-size: 1.6rem;
}
@media (min-width: 1024px) {
  .conf_container.contact__dl input[type=text].addr {
    width: 204px;
  }
}
.conf_container.contact__dl textarea {
  width: 100%;
  border: solid rgba(41, 55, 81, 0.3) 1px;
  background-color: #F4F5F6;
  border-radius: 5px;
  min-height: clamp(15rem, 19.53vw, 28rem);
  padding: 8px;
  font-size: 1.6rem;
}

.submit_btn {
  margin-top: clamp(3.2rem, 3.12vw, 5rem);
  margin-inline: auto;
  width: min(100%, 353px);
  position: relative;
}
.submit_btn::after {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  border-left: solid 11px #fff;
  border-top: solid 6.5px transparent;
  border-bottom: solid 6.5px transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: border-color 0.3s;
}
.submit_btn input[type=submit] {
  border-radius: 10px;
  width: 100%;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: solid var(--lp_color) 1px;
  font-size: clamp(1.6rem, 1.56vw, 1.9rem);
  font-weight: 500;
  background-color: var(--lp_color);
  transition: color 0.3s, background-color 0.3s;
}
@media (min-width: 1024px) {
  .submit_btn:hover input[type=submit] {
    background-color: #fff;
    color: var(--lp_color);
  }
  .submit_btn:hover::after {
    border-left-color: var(--lp_color);
  }
}

.back_btn {
  width: min(100%, 353px);
  position: relative;
}
.back_btn::after {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  border-left: solid 11px #fff;
  border-top: solid 6.5px transparent;
  border-bottom: solid 6.5px transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.back_btn input[type=button] {
  border-radius: 10px;
  width: 100%;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(1.6rem, 1.56vw, 1.9rem);
  font-weight: 500;
  background-color: #323038;
  transition-timing-function: opacity 0.3s;
}
@media (min-width: 1024px) {
  .back_btn:hover input[type=button] {
    opacity: 0.6;
  }
}
.back_btn.send input[type=button] {
  background-color: var(--lp_color);
  transition: background-color 0.3s;
}
@media (min-width: 1024px) {
  .back_btn.send:hover input[type=button] {
    opacity: 1;
    background-color: #323038;
  }
}

.submit_area {
  margin-top: clamp(3.2rem, 3.12vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 1.17vw, 2.4rem);
}
@media (min-width: 1024px) {
  .submit_area {
    flex-direction: row;
  }
}
.submit_area .submit_btn {
  margin: 0;
}

.wp-pagenavi {
  margin-top: clamp(3rem, 2.34vw, 5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .current {
  line-height: 1;
  padding-bottom: 2px;
  color: #fff;
  background-color: #323038;
  border-radius: 10px;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .wp-pagenavi .current {
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
}
.wp-pagenavi .page {
  line-height: 1;
  padding-bottom: 2px;
  border-radius: 10px;
  border: solid 1px #DB5D11;
  color: #DB5D11;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: normal;
  width: 41px;
  height: 41px;
  transition: color 0.3s, background-color 0.3s;
}
@media (min-width: 1024px) {
  .wp-pagenavi .page {
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 1024px) {
  .wp-pagenavi .page:hover {
    color: #fff;
    background-color: #DB5D11;
  }
}
.wp-pagenavi .previouspostslink {
  line-height: 1;
  padding-bottom: 2px;
  display: block;
  width: 41px;
  height: 41px;
  position: relative;
  transition: border-color 0.3s;
}
@media (min-width: 1024px) {
  .wp-pagenavi .previouspostslink {
    width: 36px;
    height: 36px;
  }
}
.wp-pagenavi .previouspostslink::before {

  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 6px;
  border-left: solid 1px #323038;
  border-top: solid 1px #323038;
  transform: translateY(-50%) rotate(-45deg);
}
@media (min-width: 1024px) {
  .wp-pagenavi .previouspostslink:hover::before {
    border-color: #DB5D11;
  }
}
.wp-pagenavi .nextpostslink {
  line-height: 1;
  padding-bottom: 2px;
  display: block;
  width: 41px;
  height: 41px;
  position: relative;
  transition: border-color 0.3s;
}
@media (min-width: 1024px) {
  .wp-pagenavi .nextpostslink {
    width: 36px;
    height: 36px;
  }
}
.wp-pagenavi .nextpostslink::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 6px;
  border-right: solid 1px #323038;
  border-bottom: solid 1px #323038;
  transform: translateY(-50%) rotate(-45deg);
}
@media (min-width: 1024px) {
  .wp-pagenavi .nextpostslink:hover::before {
    border-color: #DB5D11;
  }
}

.err_404 {
  padding-block: clamp(8rem, 6.25vw, 12rem);
  width: min(100% - 40px, 960px);
  margin-inline: auto;
}
.err_404 strong {
  font-size: clamp(2.4rem, 2.34vw, 3.6rem);
  font-weight: bold;
  display: block;
  text-align: center;
}
.err_404 a {
  margin-top: clamp(2.4rem, 2.34vw, 3.6rem);
  display: block;
  width: fit-content;
  margin-inline: auto;
  color: #DB5D11;
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
  font-weight: bold;
  text-decoration: underline;
}

.recruit__dl.empty {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 0;
  height: clamp(20rem, 19.53vw, 30rem);
}
.recruit__dl.empty::after {
  content: none;
}