@charset "UTF-8";
/*shadow*/
body {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: "Zen Kaku Gothic New", system-ui;
  word-wrap: break-all;
  word-wrap: break-word;
  width: 100%;
  min-width: 1260px;
  color: #4a4a4a;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 27px;
    font-size: 3.515625vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  body {
    font-size: 15.8823529412px;
  }
}

.col-wht {
  color: #fff !important;
}
.col-blk {
  color: #4a4a4a !important;
}
.col-grn {
  color: #aeea94 !important;
}
.col-grn_lt {
  color: #dff7d4 !important;
}
.col-blu {
  color: #5d98a3 !important;
}
.col-blu_lt {
  color: #e6f3f6 !important;
}
.col-gry {
  color: #e5e5e5 !important;
}
.col-gra {
  display: flex;
}
.col-gra-inner {
  background: linear-gradient(0deg, #95d0d9 0%, #9aca87 100%);
  background: -webkit-linear-gradient(0deg, #95d0d9 0%, #9aca87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-wht {
  background-color: #fff !important;
}
.bg-blk {
  background-color: #4a4a4a !important;
}
.bg-grn {
  background-color: #aeea94 !important;
}
.bg-grn_lt {
  background-color: #dff7d4 !important;
}
.bg-blu {
  background-color: #5d98a3 !important;
}
.bg-blu_lt {
  background-color: #e6f3f6 !important;
}
.bg-gry {
  background-color: #e5e5e5 !important;
}

.btn-ptn1 .btn-link, .btn-ptn2 .btn-link, .btn-ptn3 .btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
  background: #aeea94;
  border-radius: 30px;
}
.btn-ptn1 .btn-link:hover, .btn-ptn2 .btn-link:hover, .btn-ptn3 .btn-link:hover {
  color: rgba(74, 74, 74, 0.8);
}
.btn-ptn2 .btn-link {
  letter-spacing: 0.06em;
  background: #fff;
  border-radius: 50rem;
  position: relative;
  background: #fff;
  border-radius: 50rem;
  z-index: 1;
}
.btn-ptn2 .btn-link::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px; /* 枠の太さ */
  border-radius: 50rem;
  background: linear-gradient(90deg, #a8f1ff, #aeea94);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-ptn3 .btn-link {
  background: #fff;
  border: solid 1px #e5e5e5;
  border-radius: 50rem;
}

#side-bar {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 77;
}
#side-bar .btn-totop {
  margin-right: 25px;
}
#side-bar .btn-ptn1 .btn-link {
  border-radius: 30px 0 0 30px;
}
#side-bar .btn-ptn1 .btn-link:hover {
  transform: translateX(2px);
}

.ic-tel {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.ic-tel::before {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 1/1;
  background-image: url("/img/common/ic-tel.png");
  background-size: 100%;
}
.ic-mail {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.ic-mail::before {
  content: "";
  display: block;
  width: 47px;
  min-width: 47px;
  aspect-ratio: 1/1;
  background-image: url("/img/common/ic-mail.png");
  background-size: 100%;
}

.arw-com {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.arw-com::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background-image: url("/img/common/arw-com.png");
  background-size: 100%;
  transition: 0.3s;
}
.arw-com:hover::after {
  transform: translateX(-1px);
}

.frame-top-round {
  position: relative;
  z-index: 2;
}
.frame-top-round::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/60;
  background-image: url("/img/common/frame-round.png");
  background-size: 100%;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 1px);
  z-index: -2;
}
.frame-btm-round {
  position: relative;
  z-index: 2;
}
.frame-btm-round::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/60;
  background-image: url("/img/common/frame-round.png");
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -1px) scaleY(-1);
  z-index: -2;
}

.dot-top-blu {
  position: relative;
  z-index: 1;
}
.dot-top-blu::before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50rem;
  background: #5d98a3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}

.obj-line-gra::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #a8f1ff;
  background: linear-gradient(90deg, #a8f1ff 0%, #aeea94 100%);
  margin: 20px auto 0 auto;
}

.hov-opa a:hover {
  opacity: 0.8;
}
.hov-img a:hover img {
  opacity: 0.8;
}
.hov-scale a img, .hov-up a img {
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}
.hov-scale a:hover img, .hov-up a:hover img {
  transform: scale(0.98);
}
.hov-up a:hover img {
  transform: translateY(-3px);
}

.tbl {
  width: 100%;
}
.tbl td {
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.tbl-ptn1 dl, .tbl-ptn2 dl {
  display: flex;
  padding: 15px 0;
  border-bottom: solid 1px #e5e5e5;
}
.tbl-ptn1 dt, .tbl-ptn2 dt {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.tbl-ptn1 dt::before, .tbl-ptn2 dt::before {
  content: "";
  display: block;
  width: 4px;
  border-radius: 50rem;
  background: #aeea94;
}
.tbl-ptn1 dd, .tbl-ptn2 dd {
  padding-left: 4%;
}
.tbl-ptn1 dl {
  width: 100%;
}
.tbl-ptn1 dl:first-child {
  padding-top: 0;
}
.tbl-ptn1 dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tbl-ptn1 dt, .tbl-ptn1 dd {
  font-weight: normal;
  display: flex;
}
.tbl-ptn1 dt {
  width: 30%;
}
.tbl-ptn1 dd {
  width: 75%;
}
.tbl-ptn2 dl {
  width: 480px;
  max-width: 100%;
}
.tbl-ptn2 dt, .tbl-ptn2 dd {
  width: 50%;
}
.tbl-ptn2 dt {
  font-weight: bold;
}
.tbl-ptn2 dd {
  white-space: pre-wrap;
}

[class^=cts-] {
  margin: 0 auto;
}

.cts-1080 {
  width: 100%;
  max-width: 1080px;
}
.cts-1280 {
  width: 100%;
  max-width: 1280px;
}

.layout-clm-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.layout-clm-2 .list-item {
  width: calc((100% - 20px) / 2);
}
.layout-clm-2-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.layout-clm-2-c .list-item {
  width: calc((100% - 20px) / 2);
}
.layout-clm-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.layout-clm-3 .list-item {
  width: calc((100% - 30px) / 3);
}
.layout-clm-3-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.layout-clm-3-c .list-item {
  width: calc((100% - 30px) / 3);
}
.layout-clm-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.layout-clm-4 .list-item {
  width: calc((100% - 120px) / 4);
}
.layout-clm-4-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.layout-clm-4-c .list-item {
  width: calc((100% - 120px) / 4);
}

.list-nav .nav-item {
  line-height: 1;
}
.list-news .list-item, .list-voice .list-item, .list-faq .list-item, .list-caution .list-item {
  width: 100%;
}
.list-news {
  letter-spacing: 0.06em;
}
.list-news time {
  display: block;
  line-height: 1;
}
.list-news .news-item:not(:last-child) {
  border-bottom: solid 1px #e5e5e5;
  padding-bottom: 20px;
}
.list-news .news-bx {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.list-news .news-ttl {
  margin-top: 10px;
}
.list-news .com-tag-sub {
  border-left: solid 1px #4a4a4a;
  padding-left: 5px;
}
.list-tape .tape-item {
  background: #fff;
  padding: 16px 15px;
  border-radius: 5px;
}
.list-check .check-item {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.list-check .check-item::before {
  content: "";
  display: block;
  width: 21px;
  min-width: 21px;
  aspect-ratio: 21/15;
  background-image: url("/img/common/ic-check.png");
  background-size: 100%;
  transform: translateY(8px);
}
.list-voice .voice-ttl {
  font-weight: bold;
  display: flex;
  -moz-column-gap: 35px;
       column-gap: 35px;
  margin-bottom: 15px;
}
.list-voice .voice-ttl dl {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.list-voice .voice-ttl dl dt, .list-voice .voice-ttl dl dd {
  line-height: 1;
}
.list-voice .voice-ttl dl dd {
  border-left: solid 1px #4a4a4a;
  padding-left: 5px;
}
.list-voice .voice-item {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
}
.list-voice .voice-txt {
  font-weight: normal;
  line-height: 2.1176470588;
  white-space: pre-wrap;
}
.list-voice-lower .voice-item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  z-index: 1;
}
.list-voice-lower .voice-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px; /* 枠の太さ */
  border-radius: 20px;
  background: linear-gradient(90deg, #a8f1ff, #aeea94);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.list-service .service-item {
  text-align: center;
}
.list-service .service-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .list-service .service-ttl {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .list-service .service-ttl {
    font-size: 20px;
  }
}
.list-faq .faq-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.list-faq dt, .list-faq dd {
  padding: 15px 20px;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.list-faq dt::before, .list-faq dd::before {
  display: block;
  width: 46px;
  min-width: 46px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.list-faq dt {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  background: #e6f3f6;
}
@media screen and (max-width: 768px) {
  .list-faq dt {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .list-faq dt {
    font-size: 20px;
  }
}
.list-faq dt::before {
  content: "Q";
  font-size: 32px;
  font-size: 3.2rem;
  background: #5d98a3;
  aspect-ratio: 1/1;
  border-radius: 10px;
  align-items: center;
  color: #fff;
  padding: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  .list-faq dt::before {
    font-size: 42px;
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .list-faq dt::before {
    font-size: 24.7058823529px;
  }
}
.list-faq dd {
  font-weight: normal;
  line-height: 2.1176470588;
}
.list-faq dd::before {
  content: "A";
  background: linear-gradient(0deg, #95d0d9 0%, #9aca87 100%);
  background: -webkit-linear-gradient(0deg, #95d0d9 0%, #9aca87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .list-faq dd::before {
    font-size: 42px;
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .list-faq dd::before {
    font-size: 24.7058823529px;
  }
}
.list-caution .caution-item {
  line-height: 1.6666666667;
  display: flex;
}
.list-caution .caution-item span {
  white-space: pre-wrap;
}
.list-caution .caution-item::before {
  content: "※";
  display: block;
}

.com-tag-main .list-tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.com-tag-main .tag-link {
  display: block;
  border: solid 1px #4a4a4a;
  border-radius: 5px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .com-tag-main .tag-link {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .com-tag-main .tag-link {
    font-size: 16.4705882353px;
  }
}
.com-tag-main .tag-link:hover {
  opacity: 0.8;
}
.com-tag-sub .list-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.com-tag-sub .tag-item {
  line-height: 1;
}
.com-gmap {
  max-width: 100%;
}
.com-gmap iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.com-layout {
  display: flex;
}
.com-tel .tel {
  line-height: 1;
}
.com-box-sdw {
  box-shadow: 0px 0px 20px 0px rgba(233, 233, 233, 0.4);
}
.com-box-sdw-bold {
  box-shadow: 0px 0px 20px 0px rgb(233, 233, 233);
}
.com-txt-sdw {
  text-shadow: 0px 0px 9px rgba(68, 76, 71, 0.5);
}

.ttl-main {
  font-weight: bold;
}
.ttl-sub {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  border-left: solid #aeea94 6px;
  border-bottom: solid 1px #ddd;
  background: #f5f5f5;
  padding: 10px 20px 15px 20px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .ttl-sub {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .ttl-sub {
    font-size: 20px;
  }
}
.ttl-bar {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  background: #a8f1ff;
  background: linear-gradient(90deg, #a8f1ff 0%, #aeea94 100%);
  padding: 20px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .ttl-bar {
    font-size: 42px;
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .ttl-bar {
    font-size: 24.7058823529px;
  }
}

.txt-plain {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .txt-plain {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .txt-plain {
    font-size: 16.4705882353px;
  }
}

.marker-gra {
  background: linear-gradient(to right, #a8f1ff, #aeea94) bottom/100% 30% no-repeat, transparent;
}

.hd-bar {
  padding: 30px 25px;
}

.mv, .sv {
  width: 1760px;
  max-width: 91.6666666667%;
  aspect-ratio: 1760/840;
  background: url("/img/top/mv-img.png") center center no-repeat;
  background-size: cover;
  margin: 0 auto;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.mv-cc, .sv-cc {
  position: absolute;
  z-index: -1;
}
.mv img, .sv img {
  display: block;
  width: 100%;
}

.mv-cc {
  width: 34.38%;
  top: 0;
  right: 0;
  transform: translate(-55%, 35%);
}

.sv {
  aspect-ratio: 1760/360;
}
.sv-cc {
  font-size: 48px;
  font-size: 2.5vw;
  background: linear-gradient(to right, #a8f1ff, #aeea94) bottom/100% 10% no-repeat, transparent;
  text-shadow: 0px 0px 9px rgba(55, 111, 134, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1120px) {
  .sv-cc {
    font-size: 28.2352941176px;
  }
}
@media screen and (min-width: 1920px) {
  .sv-cc {
    font-size: 48px;
  }
}
.sv-service {
  background: url("/img/service/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-price {
  background: url("/img/price/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-voice {
  background: url("/img/voice/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-company {
  background: url("/img/company/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-blog {
  background: url("/img/blog/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-contact {
  background: url("/img/contact/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-privacy {
  background: url("/img/privacy/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-site {
  background: url("/img/site/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-complete {
  background: url("/img/complete/sv.png") center center no-repeat;
  background-size: cover;
}
.sv-notfound {
  background: url("/img/notfound/sv.png") center center no-repeat;
  background-size: cover;
}

#hd-nav .list-nav {
  font-size: 18px;
  font-size: 1.8rem;
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  letter-spacing: 0.02em;
  -moz-column-gap: 55px;
       column-gap: 55px;
}
@media screen and (max-width: 768px) {
  #hd-nav .list-nav {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #hd-nav .list-nav {
    font-size: 16.4705882353px;
  }
}

#ft-nav {
  padding: 30px 0;
}
#ft-nav .list-nav {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #ft-nav .list-nav {
    font-size: 24px;
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #ft-nav .list-nav {
    font-size: 14.1176470588px;
  }
}
#ft-nav .nav-item {
  display: flex;
  align-items: center;
}
#ft-nav .nav-item:not(:first-child)::before {
  content: "/";
  display: block;
  margin: 0 10px;
}

.top-blog {
  padding: 90px 0 160px 0;
}
.top-blog .ttl-main {
  margin-bottom: 30px;
}
.top-blog .blog-bx::after {
  content: "";
  display: block;
  width: 313px;
  aspect-ratio: 313/293;
  background-image: url("/img/top/blog-ttl-base.png");
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.top-blog .list-news {
  min-height: 290px;
}

.top-trouble {
  padding: 55px 0;
}
.top-trouble .ttl-main {
  margin-bottom: 50px;
}
.top-trouble .arw-grn::after {
  content: "";
  display: block;
  width: 560px;
  aspect-ratio: 560/113;
  background-image: url("/img/common/arw-grn.png");
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10%);
  z-index: 1;
}

.top-support {
  padding: 150px 0;
  background: url("/img/top/support-bg.png") center center no-repeat;
  background-size: cover;
}
.top-support .cts-1080 {
  border-radius: 540px;
  background: rgba(255, 255, 255, 0.9);
}
.top-support .ic {
  margin-bottom: 20px;
}
.top-support .ttl-main {
  margin: 20px 0 50px 0;
}
.top-support .txt {
  line-height: 2.3333333333;
}

.top-area {
  padding: 100px 0 80px 0;
  background: url("/img/top/area-bg.png") center bottom no-repeat;
  background-size: 100%;
}
.top-area .area-bx {
  background: rgba(255, 255, 255, 0.9);
}
.top-area .ttl-main {
  margin-bottom: 40px;
}
.top-area .ttl-main::after {
  content: "";
  display: block;
  width: 253px;
  height: 6px;
  border-top: dotted 6px #a8f1ff;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(20px, -50%);
  z-index: 1;
}
.top-area .img {
  margin-bottom: 50px;
}

.top-voice {
  padding: 80px 0;
}
.top-voice .ttl-main {
  margin-bottom: 65px;
}
.top-voice .btn {
  margin-top: 60px;
}

.top-company .ttl-main {
  margin-bottom: 50px;
}
.top-company .btn {
  margin-top: 40px;
}

#ctn-lower article {
  padding: 120px 0;
}
#ctn-lower .ttl-main {
  font-size: 50px;
  font-size: 5rem;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #ctn-lower .ttl-main {
    font-size: 60px;
    font-size: 7.8125vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #ctn-lower .ttl-main {
    font-size: 35.2941176471px;
  }
}
#ctn-lower .ttl-main.col-gra {
  justify-content: center;
}

.lower-price .com-base {
  position: relative;
  background: #fff;
  border-radius: 20px;
  z-index: 1;
  padding: 20px 40px;
}
.lower-price .com-base::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px; /* 枠の太さ */
  border-radius: 20px;
  background: linear-gradient(90deg, #a8f1ff, #aeea94);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

#com-contact {
  padding: 125px 0 80px 0;
}
#com-contact .cts-1080 {
  border-radius: 20px;
  background: url("/img/common/contact-bg.png") center center no-repeat;
  background-size: cover;
  padding-top: 35px;
  padding-bottom: 75px;
}
#com-contact .cts-1080::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1080/371;
  background-image: url("/img/common/contact-illust.png");
  background-size: 100%;
  border-radius: 0 0 20px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#com-contact .ttl-main {
  font-size: 38px;
  font-size: 3.8rem;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #com-contact .ttl-main {
    font-size: 48px;
    font-size: 6.25vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #com-contact .ttl-main {
    font-size: 28.2352941176px;
  }
}
#com-contact .tel {
  -webkit-text-stroke: #fff 3px;
  text-stroke: #fff 3px;
  paint-order: stroke;
}

#com-bnr .bnr-link {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 9px rgba(68, 76, 71, 0.5);
  position: relative;
  z-index: 1;
}
#com-bnr .bnr-link::before {
  content: "";
  display: block;
  border: solid 6px rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#com-bnr .bnr-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}
#com-bnr .bnr-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
#com-bnr .bnr-link:hover::after {
  background: rgba(0, 0, 0, 0.2);
}
#com-bnr.top-bnr .bnr-link {
  width: 1800px;
  max-width: 93.75%;
  aspect-ratio: 1800/340;
  background: url("/img/top/bnr-service.png") center center no-repeat;
  background-size: cover;
}
#com-bnr.top-bnr .bnr-ttl {
  font-size: 42px;
  font-size: 2.1875vw;
}
@media screen and (max-width: 1120px) {
  #com-bnr.top-bnr .bnr-ttl {
    font-size: 24.7058823529px;
  }
}
@media screen and (min-width: 1920px) {
  #com-bnr.top-bnr .bnr-ttl {
    font-size: 42px;
  }
}
#com-bnr.lower-bnr .bnr-link {
  height: 100%;
}
#com-bnr.lower-bnr .bnr-ttl {
  font-size: 42px;
  font-size: 4.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #com-bnr.lower-bnr .bnr-ttl {
    font-size: 52px;
    font-size: 6.7708333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #com-bnr.lower-bnr .bnr-ttl {
    font-size: 30.5882352941px;
  }
}
#com-bnr.lower-bnr .bnr-bx {
  width: 530px;
  max-width: 100%;
  aspect-ratio: 530/340;
}
#com-bnr.lower-bnr .bnr-bx-service .bnr-link {
  background: url("/img/common/bnr-service.png") center center no-repeat;
  background-size: cover;
}
#com-bnr.lower-bnr .bnr-bx-price .bnr-link {
  background: url("/img/common/bnr-price.png") center center no-repeat;
  background-size: cover;
}
#com-bnr.lower-bnr .bnr-bx-voice .bnr-link {
  background: url("/img/common/bnr-voice.png") center center no-repeat;
  background-size: cover;
}

#ctn-lower #com-contact {
  padding-bottom: 0;
}

#footer {
  padding: 150px 0 0;
}
#footer .com-logo {
  margin-bottom: 60px;
}

.ft-copy {
  padding: 20px 0;
}/*# sourceMappingURL=style.css.map */