body {
  letter-spacing: 0.05em;
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  word-wrap: break-all;
  word-wrap: break-word;
  width: 100%;
  min-width: 1260px;
  color: #3b4143;
  scroll-behavior: smooth;
  border-top: solid 5px #05bde6;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  body {
    font-size: 16.4705882353px;
  }
}

.col-wht {
  color: #fff !important;
}
.col-blk {
  color: #3b4143 !important;
}
.col-main {
  color: #05bde6 !important;
}
.col-sub {
  color: #ffa019 !important;
}
.col-bdr {
  color: #d4e1e4 !important;
}
.col-blu1 {
  color: #d5f5fb !important;
}
.col-blu2 {
  color: #ecfafd !important;
}
.col-orn1 {
  color: #ffe6c3 !important;
}
.col-orn2 {
  color: #fff5e8 !important;
}
.col-gry {
  color: #f0fafc !important;
}
.col-gra {
  background: linear-gradient(0deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  background: -webkit-linear-gradient(0deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-wht {
  background-color: #fff !important;
}
.bg-blk {
  background-color: #3b4143 !important;
}
.bg-main {
  background-color: #05bde6 !important;
}
.bg-sub {
  background-color: #ffa019 !important;
}
.bg-bdr {
  background-color: #d4e1e4 !important;
}
.bg-blu1 {
  background-color: #d5f5fb !important;
}
.bg-blu2 {
  background-color: #ecfafd !important;
}
.bg-orn1 {
  background-color: #ffe6c3 !important;
}
.bg-orn2 {
  background-color: #fff5e8 !important;
}
.bg-gry {
  background-color: #f0fafc !important;
}
.bg-gra {
  background: #008cc6;
  background: linear-gradient(90deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
}

.ptn-grid-blu {
  background-color: #fff;
  background-image: linear-gradient(transparent 95%, #f2fcfe 50%, #f2fcfe), linear-gradient(90deg, transparent 95%, #f2fcfe 50%, #f2fcfe);
  background-size: 25px 25px;
  background-repeat: repeat;
}

.btn-01__link, .btn-02__link, .btn-03__link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #05bde6;
  color: #fff;
  border-radius: 50rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
}
.btn-01__link:hover, .btn-02__link:hover, .btn-03__link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
.btn-02__link {
  background: #ffa019;
}
.btn-03__link {
  background: rgba(255, 255, 255, 0.15);
  border: solid 1px #fff;
  line-height: 1.2;
}
.btn-04__link {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.btn-04__link:hover {
  opacity: 0.8;
}

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

.arw-solid-wht {
  position: relative;
}
.arw-solid-wht::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 48/46;
  background-image: url("/img/common/arw-solid-wht.png");
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.arw-solid-wht:hover::after {
  transform: translate(-2px, -50%);
}
.arw-circle-blu, .arw-circle-orn {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.arw-circle-blu::after, .arw-circle-orn::after {
  content: "";
  display: block;
  width: 35px;
  aspect-ratio: 1/1;
  background-image: url("/img/common/arw-circle-blu.png");
  background-size: 100%;
  transition: 0.3s;
}
.arw-circle-blu:hover::after, .arw-circle-orn:hover::after {
  transform: translateX(-2px);
}
.arw-circle-orn::after {
  background-image: url("/img/common/arw-circle-orn.png");
  background-size: 100%;
}

.corner-tri-top, .corner-tri-btm {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.corner-tri-top::before, .corner-tri-top::after, .corner-tri-btm::before, .corner-tri-btm::after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.corner-tri-top::after, .corner-tri-btm::after {
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.corner-tri-top {
  top: 0;
}
.corner-tri-btm {
  bottom: 0;
}
.corner-tri-btm::before {
  clip-path: polygon(100% 100%, 0 0, 0 100%);
}
.corner-tri-btm::after {
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.corner-blu-top, .corner-blu-btm {
  width: 100%;
  height: 84px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.corner-blu-top::before, .corner-blu-top::after, .corner-blu-btm::before, .corner-blu-btm::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-image: url("/img/common/corner-blu.png");
  background-size: 100%;
}
.corner-blu-top {
  top: 0;
}
.corner-blu-top::after {
  transform: scaleX(-1);
}
.corner-blu-btm {
  bottom: 0;
}
.corner-blu-btm::before {
  transform: scaleY(-1);
}
.corner-blu-btm::after {
  transform: scale(-1);
}

.corner-orn {
  position: relative;
  z-index: 1;
}
.corner-orn::before, .corner-orn::after {
  content: "";
  display: block;
  width: 17px;
  aspect-ratio: 17/18;
  background-image: url("/img/common/corner-orn.png");
  background-size: 100%;
  position: absolute;
  z-index: -1;
}
.corner-orn::before {
  top: 0;
  left: 0;
}
.corner-orn::after {
  right: 0;
  bottom: 0;
  transform: scale(-1, -1);
}

.obj-marker-blu, .obj-marker-wht, .obj-marker-orn {
  position: relative;
  z-index: 1;
}
.obj-marker-blu::after, .obj-marker-wht::after, .obj-marker-orn::after {
  content: "";
  display: block;
  width: 494px;
  aspect-ratio: 494/68;
  background-image: url("/img/common/obj-marker-blu.png");
  background-size: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 60%);
  z-index: -1;
}
.obj-marker-wht::after {
  width: 184px;
  aspect-ratio: 184/37;
  background-image: url("/img/common/obj-marker-wht.png");
}
.obj-marker-orn::after {
  width: 341px;
  aspect-ratio: 341/47;
  background-image: url("/img/common/obj-marker-orn.png");
}

.illust-01, .illust-02, .illust-03, .illust-01-sml, .illust-02-sml, .illust-03-sml {
  position: relative;
  z-index: 1;
}
.illust-01::after, .illust-02::after, .illust-03::before, .illust-01-sml::after, .illust-02-sml::after, .illust-03-sml::before {
  content: "";
  display: block;
  width: 287px;
  aspect-ratio: 287/375;
  background-image: url("/img/common/illust-01.png");
  background-size: 100%;
  position: absolute;
  z-index: -1;
}
.illust-02::after {
  width: 208px;
  aspect-ratio: 208/389;
  background-image: url("/img/common/illust-02.png");
}
.illust-03::before {
  width: 205px;
  aspect-ratio: 205/397;
  background-image: url("/img/common/illust-03.png");
}
.illust-01-sml::after {
  width: 230px;
  aspect-ratio: 230/389;
  background-image: url("/img/common/illust-01-sml.png");
}
.illust-02-sml::after {
  width: 176px;
  aspect-ratio: 176/372;
  background-image: url("/img/common/illust-02-sml.png");
}
.illust-03-sml::before {
  width: 203px;
  aspect-ratio: 203/369;
  background-image: url("/img/common/illust-03-sml.png");
}

.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-01, .tbl-02 {
  background: #fff;
  border: solid 2px #05bde6;
}
.tbl-01 th, .tbl-01 td, .tbl-02 th, .tbl-02 td {
  padding: 20px 3%;
  vertical-align: middle;
  font-weight: 500;
}
.tbl-01 th, .tbl-02 th {
  width: 30%;
  background: #05bde6;
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .tbl-01 th, .tbl-02 th {
    font-size: 32px;
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .tbl-01 th, .tbl-02 th {
    font-size: 18.8235294118px;
  }
}
.tbl-01 tr:not(:first-child) th, .tbl-01 tr:not(:first-child) td, .tbl-02 tr:not(:first-child) th, .tbl-02 tr:not(:first-child) td {
  border-top: solid 2px;
}
.tbl-01 tr:not(:first-child) th, .tbl-02 tr:not(:first-child) th {
  border-top-color: #fff;
}
.tbl-01 tr:not(:first-child) td, .tbl-02 tr:not(:first-child) td {
  border-top-color: #05bde6;
}
.tbl-02 {
  border-color: #ffa019;
}
.tbl-02 th {
  background: #ffa019;
}
.tbl-02 tr:not(:first-child) td {
  border-top-color: #ffa019;
}

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

.cts-1080 {
  max-width: 1080px;
}
.cts-1160 {
  max-width: 1160px;
}
.cts-1180 {
  max-width: 1180px;
}
.cts-1280 {
  max-width: 1280px;
}

.layout-clm-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.layout-clm-2 .list-item,
.layout-clm-2 .layout-item {
  width: calc((100% - 40px) / 2);
}
.layout-clm-2-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.layout-clm-2-c .list-item,
.layout-clm-2-c .layout-item {
  width: calc((100% - 40px) / 2);
}
.layout-clm-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.layout-clm-3 .list-item,
.layout-clm-3 .layout-item {
  width: calc((100% - 80px) / 3);
}
.layout-clm-3-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.layout-clm-3-c .list-item,
.layout-clm-3-c .layout-item {
  width: calc((100% - 80px) / 3);
}
.layout-clm-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.layout-clm-4 .list-item,
.layout-clm-4 .layout-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,
.layout-clm-4-c .layout-item {
  width: calc((100% - 120px) / 4);
}

.list-blog .list-item, .list-news .list-item, .list-privacy .list-item, .list-dot .list-item, .list-owner .list-item {
  width: 100%;
}
.list-news time {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  display: block;
  line-height: 1;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .list-news time {
    font-size: 30px;
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .list-news time {
    font-size: 17.6470588235px;
  }
}
.list-news__item {
  border-bottom: solid 2px #d4e1e4;
  padding-bottom: 40px;
}
.list-news__bx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: solid 3px #05bde6;
  padding-left: 10px;
}
.list-news__ttl {
  line-height: 1;
  width: 910px;
  max-width: 100%;
}
.list-news .tag-sub {
  margin-bottom: 10px;
}
.list-works__ttl {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .list-works__ttl {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .list-works__ttl {
    font-size: 20px;
  }
}
.list-works__ttl span {
  background: #008cc6;
  background: linear-gradient(90deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  color: #fff;
  padding: 3px 10px;
}
.list-point {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
}
.list-point__item {
  background: #008cc6;
  background: linear-gradient(90deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  color: #fff;
  padding: 5px 20px;
  text-align: center;
}
.list-point__item:first-child {
  margin: 0 260px;
}
.list-point__item:nth-child(2), .list-point__item:last-child {
  width: 400px;
  max-width: 100%;
}
.list-dot {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
}
.list-dot__item {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.list-dot__item::before {
  content: "";
  display: block;
  width: 10px;
  min-width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50rem;
  background: #05bde6;
  transform: translateY(10px);
}
.list-staff__item {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.list-staff__img {
  width: 100%;
  aspect-ratio: 500/450;
}
.list-staff__ttl {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  color: #05bde6;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .list-staff__ttl {
    font-size: 38px;
    font-size: 4.9479166667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .list-staff__ttl {
    font-size: 22.3529411765px;
  }
}
.list-staff__txt {
  line-height: 1.8 !important;
}

.com-gmap {
  max-width: 100%;
}
.com-gmap iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.com-layout {
  display: flex;
}
.com-tel .tel {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  line-height: 1;
}
.com-sdw-frame__rb, .com-sdw-frame__lb {
  position: relative;
  z-index: 1;
}
.com-sdw-frame__rb::after, .com-sdw-frame__lb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid 2px #05bde6;
  position: absolute;
  top: 0;
  z-index: -1;
}
.com-sdw-frame__rb::after {
  left: 0;
  transform: translate(20px, 20px);
}
.com-sdw-frame__lb::after {
  right: 0;
  transform: translate(-20px, 20px);
}

.tag-main__list {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .tag-main__list {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .tag-main__list {
    font-size: 16.4705882353px;
  }
}
.tag-main__link {
  display: block;
  background: #05bde6;
  color: #fff;
  padding: 10px 20px;
}
.tag-main__link:hover {
  opacity: 0.8;
}
.tag-sub__list {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .tag-sub__list {
    font-size: 24px;
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .tag-sub__list {
    font-size: 14.1176470588px;
  }
}
.tag-sub__item {
  line-height: 1;
  background: #05bde6;
  color: #fff;
  padding: 5px 10px 7px 10px;
}

.ttl-main {
  display: flex;
  flex-direction: column;
}
.ttl-main__eng {
  display: inline-block;
  font-family: "Mrs Saint Delafield", cursive;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  background: linear-gradient(0deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  background: -webkit-linear-gradient(0deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.8rem 6.5rem 0 6.5rem;
  transform: rotate(-10deg);
  font-size: 140px;
  font-size: 14rem;
}
@media screen and (max-width: 768px) {
  .ttl-main__eng {
    font-size: 150px;
    font-size: 19.53125vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .ttl-main__eng {
    font-size: 88.2352941176px;
  }
}
.ttl-main__eng:first-letter {
  text-transform: uppercase;
}
.ttl-main__ruby {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.ttl-nml {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  color: #ffa019;
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff;
  paint-order: stroke;
  font-size: 35px;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .ttl-nml {
    font-size: 45px;
    font-size: 5.859375vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .ttl-nml {
    font-size: 26.4705882353px;
  }
}
.ttl-bdr-wht {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  border-bottom: solid 2px #fff;
  padding-bottom: 20px;
}
.ttl-sidebar {
  line-height: 1.2;
  border-left: solid 4px #05bde6;
  padding-left: 15px;
}
.ttl-sub {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  font-weight: 600;
  border-left: solid #05bde6 6px;
  border-bottom: solid 1px #ddd;
  background: #f5f5f5;
  padding: 10px 20px 15px 20px;
  margin-bottom: 30px;
  font-size: 24px;
  font-size: 2.4rem;
}
@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;
  }
}

.txt-plain {
  line-height: 2.1111111111;
}
.txt-plain.ft-17 {
  line-height: 2.0588235294;
}
.txt-plain.ft-19 {
  line-height: 2;
}

#ctn-ent .hdbar .btn-entry {
  width: 75px;
}
#ctn-top .hdbar, #ctn-lower .hdbar {
  background: #fff;
  padding-left: 1.69%;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#ctn-top .hdbar .btn-entry, #ctn-lower .hdbar .btn-entry {
  width: 95px;
}

.wrp-hdbar {
  position: relative;
  width: 100%;
}

.hdbar {
  width: 1770px;
  max-width: 92.1875%;
  margin: 0 auto;
}
.hdbar .btn-entry {
  aspect-ratio: 1/1;
}
.hdbar .btn-entry__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
  text-align: center;
  background: #ffa019;
  color: #fff;
}
.hdbar .btn-entry__txt {
  line-height: 1;
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .hdbar .btn-entry__txt {
    font-size: 26px;
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .hdbar .btn-entry__txt {
    font-size: 15.2941176471px;
  }
}

.header-nav__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  font-size: 19px;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .header-nav__list {
    font-size: 29px;
    font-size: 3.7760416667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .header-nav__list {
    font-size: 17.0588235294px;
  }
}
.header-nav__link:hover {
  opacity: 0.8;
}
.header-nav .current {
  color: #05bde6;
}

.mv, .sv {
  position: relative;
}
.mv img, .sv img {
  display: block;
  width: 100%;
}
.mv-cc, .sv-cc {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  position: absolute;
  z-index: 2;
}
.mv-cc__main, .mv-cc__sub, .sv-cc__main, .sv-cc__sub {
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.mv-cc__main, .sv-cc__main {
  width: 100%;
  outline: solid 1px #fff;
  outline-offset: -0.5vw;
  background: #008cc6;
  background: linear-gradient(90deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  color: #fff;
  font-size: 52px;
  font-size: 2.7083333333vw;
}
@media screen and (max-width: 1120px) {
  .mv-cc__main, .sv-cc__main {
    font-size: 30.5882352941px;
  }
}
@media screen and (min-width: 1920px) {
  .mv-cc__main, .sv-cc__main {
    font-size: 52px;
  }
}

.mv-cc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1vw;
  left: 2.81%;
  bottom: 0;
  transform: translateY(-47%);
  width: 800px;
  max-width: 41.6666666667%;
}
.mv-cc__main {
  aspect-ratio: 800/100;
}
.mv-cc__sub {
  width: 91.25%;
  aspect-ratio: 730/70;
  background: #fff;
  font-size: 30px;
  font-size: 1.5625vw;
}
@media screen and (max-width: 1120px) {
  .mv-cc__sub {
    font-size: 17.6470588235px;
  }
}
@media screen and (min-width: 1920px) {
  .mv-cc__sub {
    font-size: 30px;
  }
}
.mv::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/118;
  background-image: url("/img/top/mv-eng.png");
  background-size: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(4px);
  z-index: 1;
}

.sv-cc {
  width: 740px;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.sv-cc__main {
  aspect-ratio: 740/100;
}

@media screen and (max-width: 1580px) {
  .hdbar .com-logo {
    width: 240px;
    max-width: 100%;
  }
  .hdbar .com-tel .tel {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) {
  .hdbar .com-tel .tel {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) and (min-width: 539px) {
  .hdbar .com-tel .tel {
    font-size: 20px;
  }
}
@media screen and (max-width: 1580px) {
  .hdbar .com-tel .tel span {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) {
  .hdbar .com-tel .tel span {
    font-size: 32px;
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) and (min-width: 539px) {
  .hdbar .com-tel .tel span {
    font-size: 18.8235294118px;
  }
}
@media screen and (max-width: 1580px) {
  .hdbar .com-tel .tel-caution {
    width: 185px;
    max-width: 100%;
  }
  .hdbar-bx {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .hdbar .btn-sns {
    width: 30px;
  }
  .hdbar .btn-entry {
    width: 70px !important;
  }
  .hdbar .btn-entry img {
    width: 24px;
  }
  .hdbar .btn-entry__txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) {
  .hdbar .btn-entry__txt {
    font-size: 24px;
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) and (min-width: 539px) {
  .hdbar .btn-entry__txt {
    font-size: 14.1176470588px;
  }
}
@media screen and (max-width: 1580px) {
  .header-nav__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) {
  .header-nav__list {
    font-size: 26px;
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 1580px) and (max-width: 768px) and (min-width: 539px) {
  .header-nav__list {
    font-size: 15.2941176471px;
  }
}
#ctn-ent {
  background-color: #fff;
  background-image: linear-gradient(transparent 95%, #f2fcfe 50%, #f2fcfe), linear-gradient(90deg, transparent 95%, #f2fcfe 50%, #f2fcfe);
  background-size: 25px 25px;
  background-repeat: repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
  padding: 30px 0;
}
#ctn-ent .wrp-bnr {
  width: 1770px;
  max-width: 92.1875%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 1.82%;
       column-gap: 1.82%;
  position: relative;
}
#ctn-ent .bnr {
  width: 48.87%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
#ctn-ent .bnr-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
#ctn-ent .bnr-link::after {
  content: "";
  display: block;
  width: 48px;
  max-width: 5.55%;
  aspect-ratio: 48/46;
  background-image: url("/img/common/arw-solid-wht.png");
  background-size: 100%;
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  transition: 0.3s;
}
#ctn-ent .bnr-link:hover::after {
  transform: translateX(-2px);
}
#ctn-ent .bnr-recruit {
  aspect-ratio: 865/700;
  background: url("/img/entrance/bg-recruit.png") center center no-repeat;
  background-size: cover;
}
#ctn-ent .bnr-recruit .bnr-ttl {
  width: 82.08%;
}
#ctn-ent .bnr-recruit::after {
  content: "";
  display: block;
  width: 33.18%;
  aspect-ratio: 287/375;
  background-image: url("/img/common/illust-01.png");
  background-size: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-12%);
  z-index: -1;
}
#ctn-ent .bnr-official, #ctn-ent .bnr-column {
  aspect-ratio: 865/335;
}
#ctn-ent .bnr-official {
  background: url("/img/entrance/bg-official.png") center center no-repeat;
  background-size: cover;
}
#ctn-ent .bnr-official .bnr-ttl {
  width: 81.39%;
}
#ctn-ent .bnr-column {
  background: url("/img/entrance/bg-column.png") center center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
}
#ctn-ent .bnr-column .bnr-ttl {
  width: 61.39%;
}
#ctn-ent .bnr::before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: solid 2px #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.top-about .ttl-main__eng, .top-works .ttl-main__eng {
  transform: translateX(-45%) rotate(-10deg);
}
.top-about .ttl-main__ruby, .top-works .ttl-main__ruby {
  margin-top: -50px;
}

.top-about {
  background: url("/img/top/about-bg.png") right top 190px no-repeat;
  padding: 130px 0 150px 0;
}
.top-about .about-bx .txt {
  line-height: 2.2222222222;
}
.top-about .com-base h3 {
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff;
  paint-order: stroke;
}
.top-about .illust-01::after {
  width: 274px;
  left: 0;
  bottom: 0;
  transform: translate(-180px, 180px);
}

.top-works {
  padding: 130px 0;
}
.top-works .com-base {
  position: relative;
  outline: solid 2px;
  outline-offset: 10px;
}
.top-works .com-base__bx {
  display: flex;
  justify-content: space-between;
}
.top-works .com-base__inner {
  width: 510px;
  max-width: 100%;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}
.top-works .telecom {
  outline-color: #05bde6;
}
.top-works .telecom .btn {
  right: 0;
}
.top-works .elect {
  outline-color: #ffa019;
}
.top-works .elect .btn {
  left: 0;
}
.top-works .img {
  position: relative;
  z-index: 2;
}
.top-works h3 {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 20px;
}
.top-works h3 .eng {
  line-height: 1;
  font-size: 25px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-works h3 .eng {
    font-size: 35px;
    font-size: 4.5572916667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .top-works h3 .eng {
    font-size: 20.5882352941px;
  }
}
.top-works h3 .ruby {
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .top-works h3 .ruby {
    font-size: 50px;
    font-size: 6.5104166667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .top-works h3 .ruby {
    font-size: 29.4117647059px;
  }
}
.top-works h3 .ruby span {
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .top-works h3 .ruby span {
    font-size: 40px;
    font-size: 5.2083333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .top-works h3 .ruby span {
    font-size: 23.5294117647px;
  }
}
.top-works .num {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  font-size: 175px;
  font-size: 17.5rem;
}
@media screen and (max-width: 768px) {
  .top-works .num {
    font-size: 185px;
    font-size: 24.0885416667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .top-works .num {
    font-size: 108.8235294118px;
  }
}
.top-works .txt {
  width: 445px;
  max-width: 100%;
  line-height: 1.9444444444;
}
.top-works .btn {
  width: 50%;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.top-works .btn a {
  width: 100%;
  height: 70px;
}

.top-bnr .bnr {
  width: 505px;
  max-width: 100%;
  aspect-ratio: 505/370;
}
.top-bnr .bnr-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #05bde6;
  border-radius: 10px;
  box-shadow: 20px 20px #d5f5fb;
  position: relative;
  z-index: 2;
}
.top-bnr .bnr-link:hover {
  background: rgba(5, 189, 230, 0.8);
  box-shadow: 0px 0px #d5f5fb;
  transform: translate(1px, 1px);
}
.top-bnr .bnr-link:hover .arw::after {
  transform: translate(-32px, -20px);
}
.top-bnr .ttl-main__eng, .top-bnr .ttl-main__ruby {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.top-bnr .ttl-main__ruby {
  margin-left: 40px;
  font-size: 45px;
  font-size: 4.5rem;
}
@media screen and (max-width: 768px) {
  .top-bnr .ttl-main__ruby {
    font-size: 55px;
    font-size: 7.1614583333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .top-bnr .ttl-main__ruby {
    font-size: 32.3529411765px;
  }
}
.top-bnr .ttl-main__eng {
  font-size: 110px;
  font-size: 11rem;
}
@media screen and (max-width: 768px) {
  .top-bnr .ttl-main__eng {
    font-size: 120px;
    font-size: 15.625vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .top-bnr .ttl-main__eng {
    font-size: 70.5882352941px;
  }
}
.top-bnr .arw::before {
  content: "";
  display: block;
  width: 155px;
  aspect-ratio: 1/1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #d5f5fb;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(1px, 1px);
  z-index: -1;
}
.top-bnr .arw::after {
  content: "";
  display: block;
  width: 35px;
  aspect-ratio: 35/33;
  background-image: url("/img/common/arw-solid-blu.png");
  background-size: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-30px, -20px);
  z-index: 1;
  transition: 0.3s;
}
.top-bnr .illust-02::after,
.top-bnr .illust-03::before {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.top-bnr .illust-02::after {
  transform: translateX(20px);
}

.top-news .ttl-main {
  margin-bottom: 50px;
}
.top-news .ttl-main__ruby {
  margin-top: 10px;
  transform: translateX(13%);
}
.top-news .btn {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 1;
}

.top-contact .ttl-main {
  margin-bottom: 60px;
}
.top-contact .ttl-main__ruby {
  margin-top: -20px;
}

#ctn-lower section {
  padding: 140px 0;
}
#ctn-lower .ttl-main {
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 100px 0 50px 0;
}
#ctn-lower .ttl-main__eng {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-80%, -70%) rotate(-15deg);
  z-index: -1;
}
#ctn-lower .ttl-main__ruby {
  position: relative;
  z-index: 1;
  font-size: 50px;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  #ctn-lower .ttl-main__ruby {
    font-size: 60px;
    font-size: 7.8125vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #ctn-lower .ttl-main__ruby {
    font-size: 35.2941176471px;
  }
}

.lower-talent .illust-02-sml::after {
  right: 0;
  bottom: 0;
}
.lower-talent .illust-03-sml::before {
  left: 0;
  bottom: 0;
}
.lower-talent .corner-blu-top, .lower-talent .corner-blu-btm {
  z-index: -2;
}

.lower-charm .img {
  position: absolute;
  top: 0;
  z-index: 1;
}
.lower-charm .num {
  font-family: "Mrs Saint Delafield", cursive;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  font-size: 140px;
  font-size: 14rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-80px, 40px);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .lower-charm .num {
    font-size: 150px;
    font-size: 19.53125vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .lower-charm .num {
    font-size: 88.2352941176px;
  }
}
.lower-charm .com-layout {
  width: 100%;
  padding-top: 60px;
  position: relative;
}
.lower-charm .com-layout__item {
  width: 600px;
  max-width: 100%;
}
.lower-charm .com-layout__item-inner {
  width: 460px;
  max-width: 100%;
}
.lower-charm .com-layout__item-txtbx {
  min-height: 510px;
  background: #008cc6;
  background: linear-gradient(90deg, #008cc6 0%, #09c2ea 50%, #5ccfe4 100%);
  color: #fff;
  padding: 60px;
  position: relative;
  z-index: 1;
}
.lower-charm .com-layout:nth-child(odd) .com-layout__item-txtbx {
  padding-right: 0;
}
.lower-charm .com-layout:nth-child(odd) .img {
  right: 0;
  transform: translateX(80px);
}
.lower-charm .com-layout:nth-child(even) .com-layout__item-inner {
  margin-left: auto;
}
.lower-charm .com-layout:nth-child(even) .com-layout__item-txtbx {
  padding-left: 0;
  margin-left: auto;
}
.lower-charm .com-layout:nth-child(even) .img {
  left: 0;
  transform: translateX(-80px);
}

.lower-service .obj-marker-blu::after {
  width: 230px;
}
.lower-service .illust-01-sml::after {
  right: 0;
  bottom: 0;
  transform: translate(-75px, 2px);
}
.lower-service .illust-03-sml::before {
  left: 0;
  bottom: 0;
  transform: translate(75px, 2px);
}

.lower-area .img {
  margin-right: -50px;
}

.lower-greeting h4 {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
  color: #05bde6;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .lower-greeting h4 {
    font-size: 38px;
    font-size: 4.9479166667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .lower-greeting h4 {
    font-size: 22.3529411765px;
  }
}
.lower-greeting .img {
  min-width: 450px;
  aspect-ratio: 450/490;
}

#com-contact {
  padding: 145px 0;
  background: url("/img/common/contact-bg.png") center center no-repeat;
  background-size: cover;
}
#com-contact .cts-1160 {
  background: rgba(255, 255, 255, 0.92);
  padding: 80px 0;
  outline: solid 2px #fff;
  outline-offset: 10px;
}
#com-contact .com-layout__item:not(:first-child) {
  border-left: solid 2px #d4e1e4;
  padding-left: 50px;
}
#com-contact dl {
  margin-top: 30px;
}
#com-contact .corner-tri-top, #com-contact .corner-tri-btm {
  width: calc(100% + 24px);
  height: 84px;
  z-index: 1;
}
#com-contact .corner-tri-top::before, #com-contact .corner-tri-top::after, #com-contact .corner-tri-btm::before, #com-contact .corner-tri-btm::after {
  background: #d5f5fb;
}
#com-contact .corner-tri-top {
  top: -12px;
}
#com-contact .corner-tri-btm {
  bottom: -12px;
}
#com-contact.lower-contact .ttl-main__eng {
  transform: translate(-50%, -80%) rotate(-15deg);
}

#footer .com-logo {
  margin-bottom: 70px;
}
#footer .com-tel {
  margin-top: 40px;
}
#footer .btn-03 {
  margin-top: 90px;
}

#ctn-top #footer, #ctn-lower #footer {
  background: url("/img/common/footer-eng.png") center bottom no-repeat;
  background-size: 100%;
  background-color: #05bde6;
  color: #fff;
  padding: 130px 0 180px 0;
}
#ctn-top #footer a, #ctn-lower #footer a {
  color: #fff;
}
#ctn-top .footer-copy, #ctn-lower .footer-copy {
  margin-top: 40px;
}

.footer-nav-main .footer-nav__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 190px 130px;
  grid-template-rows: repeat(4, auto);
  gap: 25px 45px;
}
.footer-nav-main .footer-nav__item {
  line-height: 1;
}
.footer-nav-main .footer-nav__link:hover {
  opacity: 0.8;
}

.footer-nav-sub .footer-nav__list {
  display: flex;
  justify-content: flex-end;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .footer-nav-sub .footer-nav__list {
    font-size: 23px;
    font-size: 2.9947916667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .footer-nav-sub .footer-nav__list {
    font-size: 13.5294117647px;
  }
}
.footer-nav-sub .footer-nav__item {
  line-height: 1;
}
.footer-nav-sub .footer-nav__item:not(:first-child) {
  border-left: solid 1px #fff;
  margin-left: 20px;
  padding-left: 20px;
}
.footer-nav-sub .footer-nav__link:hover {
  opacity: 0.8;
}

.footer-copy {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */