@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.cmn-main {
  display: block;
  overflow-x: clip;
  padding-top: 80px;
}
@media (max-width: 428px) {
  .cmn-main {
    padding-top: 0;
  }
}

.cmn-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  overflow: clip;
  background-image: url(../img/cmn-fixed.webp);
  background-size: cover;
  background-position: 50% 50%;
}
.cmn-fixed--inner {
  width: calc((100% - 375px) / 2);
  height: 100vh;
  position: absolute;
  top: 0;
}
@media (max-width: 980px) {
  .cmn-fixed--inner {
    display: none;
  }
}
.cmn-fixed--inner-left {
  left: 0;
}
.cmn-fixed--inner-right {
  right: 0;
}
.cmn-fixed--let_wrap {
  position: absolute;
  top: 80px;
  left: 50px;
  width: calc(100% - 50px);
}
@media (max-width: 1100px) {
  .cmn-fixed--let_wrap {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}

.cmn-fixed_logo {
  display: block;
  width: fit-content;
}
@media (max-width: 1100px) {
  .cmn-fixed_logo {
    margin-left: auto;
    margin-right: auto;
    padding-left: 19px;
    padding-right: 18px;
  }
}
.cmn-fixed_logo--img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.cmn-fixed_logo--txt {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.44;
  margin-top: 17px;
  display: block;
}
.cmn-fixed_logo--br {
  display: none;
}
@media (max-width: 1100px) {
  .cmn-fixed_logo--br {
    display: block;
  }
}

.cmn-fixed_nav {
  margin: 75px 19px 0;
}
.cmn-fixed_nav--item {
  margin-top: 40px;
}
.cmn-fixed_nav--item:first-of-type {
  margin-top: 0;
}
.cmn-fixed_nav--link {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
.cmn-fixed_nav--link:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #0099CF;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.cmn-fixed_nav--link:hover {
  opacity: 0.7;
}
@media (max-width: 428px) {
  .cmn-fixed_nav--link:hover {
    opacity: 1;
  }
}
.cmn-fixed_nav--br {
  display: none;
}
@media (max-width: 1320px) {
  .cmn-fixed_nav--br {
    display: block;
  }
}

.cmn-fixed_contact {
  position: absolute;
  bottom: 99px;
  right: 85px;
}
@media (max-width: 1100px) {
  .cmn-fixed_contact {
    right: 50%;
    transform: translateX(50%);
  }
}
.cmn-fixed_contact--note {
  display: block;
  width: 189px;
  aspect-ratio: 189/218;
  background-image: url(../img/icon/icon-serif.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  top: -195px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
}
.cmn-fixed_contact--note_main {
  text-align: center;
  margin-top: 39px;
  display: block;
  position: relative;
}
.cmn-fixed_contact--note_main:before {
  content: "";
  display: block;
  width: 110px;
  height: 6px;
  background-color: #BAEBFD;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.cmn-fixed_contact--note_main_txt {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.78;
  position: relative;
}
.cmn-fixed_contact--note_sub {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  margin-top: 7px;
  display: block;
}
.cmn-fixed_contact--link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  height: 64px;
  border-radius: 5px;
  background-color: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}
.cmn-fixed_contact--link:hover {
  transform: translateY(-4px);
}
@media (max-width: 428px) {
  .cmn-fixed_contact--link:hover {
    transform: translateY(0);
  }
}
.cmn-fixed_contact--txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmn-fixed_contact--txt:before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 16/16;
  background-image: url(../img/icon/icon-mail.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin-right: 5px;
  margin-top: 6px;
}

.cmn-content {
  position: relative;
  width: 375px;
  max-width: 100%;
  overflow: clip;
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
  background-color: #8DCBEC;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
@media (max-width: 428px) {
  .cmn-content {
    width: 100%;
    border-radius: 0px;
  }
}

.cmn-footer {
  width: 375px;
  max-width: 100%;
  background-color: #384499;
  padding-top: 61px;
  padding-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 428px) {
  .cmn-footer {
    width: 100%;
  }
}
.cmn-footer--pagetop {
  display: block;
  width: 54px;
  aspect-ratio: 54/54;
  background-image: url(../img/cmn-footer-pagetop.svg);
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: -40px;
  right: 9px;
}
.cmn-footer--pagetop:hover {
  transform: translateY(-4px);
}
@media (max-width: 428px) {
  .cmn-footer--pagetop:hover {
    transform: translateY(0);
  }
}
.cmn-footer--name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
}
.cmn-footer--contact_desc {
  font-size: 14px;
  text-align: center;
  line-height: 1.43;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 26px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.cmn-footer--contact_desc:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transform: rotate(63.43deg);
  margin-right: 30px;
}
.cmn-footer--contact_desc:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transform: rotate(-63.43deg);
  margin-left: 30px;
}
.cmn-footer--contact_link {
  width: 233px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  margin: 10px auto 0;
}
.cmn-footer--contact_link:hover {
  transform: translateY(-2px);
}
@media (max-width: 428px) {
  .cmn-footer--contact_link:hover {
    transform: translateY(0);
  }
}
.cmn-footer--contact_txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.44;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmn-footer--contact_txt:before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 16/16;
  background-image: url(../img/icon/icon-mail.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin-right: 4px;
}
.cmn-footer--copyright {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.42;
  margin-top: 47px;
}

/*# sourceMappingURL=common.css.map */
