@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;900&family=Poppins:wght@400;700;900&display=swap");
html {
  height: 100%;
}
@media screen and (min-width: 1201px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
    font-size: 2.086vw;
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 15px;
    font-size: 3.623vw;
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "M PLUS 1p", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  color: #222;
}
body::before {
  content: "";
  position: fixed;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: #d4f8ff url(../images/common/bg-body.png) repeat center;
}
body::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg-page.png) no-repeat center top/100% auto;
}
body.home::after {
  content: none;
}

b, strong, .fw-bold {
  font-weight: 700;
}

ul, ol {
  list-style: none;
}

p, ul, ol, table, dl {
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  color: #222;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.pc-none,
.for-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .for-mobile {
    display: block;
  }
}
/*------------------------
  header
------------------------*/
.l-header {
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.875rem 2.5rem;
  position: fixed;
  top: 0;
  right: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.l-header.is-backdrop {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  padding: 0.9375rem 2.5rem;
}
.l-header .l-header-logo {
  width: 17.5rem;
}
.l-header .l-header-logo a {
  display: block;
}
.l-header .l-header-logo a img {
  width: 100%;
  height: auto;
}
.l-header .l-header-menu-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 1.25rem 1.875rem;
  }
  .l-header.is-backdrop {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 0.625rem 1.875rem;
    background-color: #FFF;
  }
  .l-header.is-backdrop .menu-btn {
    top: 0.5rem;
    transform: scale(0.8);
    transform-origin: right center;
  }
  .l-header .l-header-logo {
    width: 12.5rem;
  }
}

.l-header-menu-btn {
  margin-left: 0.9375rem;
}
.l-header-menu-btn a {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
}
.l-header-menu-btn a:hover::after {
  opacity: 0;
}
.l-header-menu-btn a::before, .l-header-menu-btn a::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  transition: 0.3s;
}
.l-header-menu-btn a::before {
  background: linear-gradient(90deg, rgb(85, 171, 255) 0%, rgb(0, 146, 255) 100%);
}
.l-header-menu-btn a::after {
  opacity: 1;
  background: linear-gradient(90deg, rgb(0, 146, 255) 0%, rgb(9, 89, 167) 100%);
}
.l-header-menu-btn a span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5625rem;
}
.l-header-menu-btn a svg {
  width: 1.25rem;
  height: auto;
  fill: #FFF;
  margin-right: 0.5rem;
}

/*------------------------
  global nav
------------------------*/
.l-header ul.menu {
  display: flex;
}
.l-header ul.menu li {
  padding: 0 0.9375rem;
}
.l-header ul.menu li a {
  color: #222;
  font-weight: 700;
  font-size: 0.875rem;
}
.l-header ul.menu li a:hover {
  opacity: 0.7;
}

/*------------------------
  burger
------------------------*/
.hamburger-menu {
  z-index: 9999;
  position: fixed;
}
.hamburger-menu.fixed .menu-btn {
  top: 0.5rem;
}

.menu-btn {
  position: fixed;
  top: 0.625rem;
  right: 1.5625rem;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  justify-content: center;
  align-items: center;
  z-index: 90;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.menu-btn span {
  position: relative;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 100%;
  display: block;
  height: 0.1875rem;
  border-radius: 0.09375rem;
  background-color: #0092FF;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
}
.menu-btn span::before {
  top: -0.75rem;
  width: 70%;
}
.menu-btn span::after {
  bottom: -0.75rem;
  width: 50%;
}

#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: transparent; /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before, #menu-btn-check:checked ~ .menu-btn span::after {
  transform-origin: center;
  width: 50%;
  left: 25%;
}
#menu-btn-check:checked ~ .menu-btn span::before {
  top: 0;
  transform: rotate(35deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  bottom: 0;
  transform: rotate(-35deg);
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}

.menu-content {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  z-index: 80;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-content .burger-logo {
  margin: 0 auto 1.875rem;
  width: 65%;
  max-width: 17.5rem;
}
.menu-content ul.menu {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  display: block;
}
.menu-content ul.menu li {
  margin: 1.5625rem auto;
}
.menu-content ul.menu li a {
  display: block;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
}
.menu-content .l-header-menu-btn {
  margin: 2.5rem auto 0;
}
.menu-content .l-header-menu-btn a {
  display: block;
  font-size: 1.125rem;
  padding: 0.625rem 2.1875rem;
}

/*------------------------
  layout
------------------------*/
.grid-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  min-height: 100vh;
}

.ly-container {
  padding: 7.5rem 0;
}
.ly-container.top {
  padding-top: 0;
}
.ly-container.bottom {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .ly-container {
    padding: 3.75rem 0 5rem;
  }
}

.ly-wrapper {
  margin: 0 auto;
  max-width: calc(1000px + 12.5rem);
  width: 100%;
  padding: 0 6.25rem;
}
.ly-wrapper.small {
  max-width: calc(830px + 12.5rem);
}
@media screen and (max-width: 768px) {
  .ly-wrapper {
    padding: 0 1.875rem;
  }
}

.ly-white-block {
  background-color: #FFF;
  position: relative;
  margin: 5rem 0;
}
.ly-white-block::before, .ly-white-block::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: #FFF;
}
.ly-white-block::before {
  top: -5rem;
  border-radius: 5rem 5rem 0 0;
}
.ly-white-block::after {
  bottom: -5rem;
  border-radius: 0 0 5rem 5rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .ly-white-block {
    margin: 2.5rem 0;
  }
  .ly-white-block::before, .ly-white-block::after {
    height: 2.5rem;
  }
  .ly-white-block::before {
    top: -2.5rem;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .ly-white-block::after {
    bottom: -2.5rem;
    border-radius: 0 0 2.5rem 2.5rem;
  }
}

.ly-row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .ly-row {
    flex-wrap: wrap;
  }
}

.ly-grid {
  display: grid;
}

.col2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .col2 {
    width: 100%;
  }
}

.col3 {
  width: 33.333%;
}
@media screen and (max-width: 768px) {
  .col3 {
    width: 100%;
  }
}

.col4 {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .col4 {
    width: 50%;
  }
}

.col-left {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .col-left {
    width: 100%;
  }
}

.col-right {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .col-right {
    width: 100%;
  }
}

/*------------------------
  partial
------------------------*/
.bg-logomark {
  position: relative;
}
.bg-logomark::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: calc(100% + 10rem);
  border-radius: 5rem 5rem 0 0;
  overflow: hidden;
  background: url(../images/common/bg-logo.svg) no-repeat right top/55% auto;
  top: -5rem;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .bg-logomark::before {
    height: 100%;
    border-radius: 2.5rem 2.5rem 0 0;
    background: url(../images/common/bg-logo.svg) no-repeat right top/68% auto;
    top: -2.5rem;
  }
}

/*------------------------
  utilities
------------------------*/
.is-relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-10 {
  margin-top: 0.625rem !important;
}

.en {
  font-family: "Poppins", sans-serif;
}

/*------------------------
  heading
------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

.sec-title {
  font-size: 3.75rem;
  margin-bottom: 2.5rem;
}
.sec-title .icon {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.sec-title .icon svg {
  margin-right: 0.375rem;
  width: 0.875rem;
}
.sec-title .icon svg.blue {
  fill: #0092FF;
}
.sec-title .icon svg.yellow {
  fill: #E0A316;
}
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 2.875rem;
    margin-bottom: 1.25rem;
  }
  .sec-title .icon {
    font-size: 0.875rem;
  }
  .sec-title .icon svg {
    width: 0.75rem;
  }
}

.icon-title {
  font-size: 1.375rem;
  display: flex;
  align-items: center;
}
.icon-title.blue svg {
  fill: #0092FF;
}
.icon-title.ye svg {
  fill: #E0A316;
}
.icon-title svg {
  width: 1.25rem;
  margin-right: 0.4em;
}
@media screen and (max-width: 768px) {
  .icon-title {
    font-size: 1.25rem;
  }
  .icon-title svg {
    width: 1.125rem;
  }
}

/*------------------------
  page title
------------------------*/
.main-content.page {
  background: url(../images/common/bg-pattern-page.png) no-repeat center top/100% auto;
}

.page-title-wrap {
  padding: 9.375rem 0 5.625rem;
}
.page-title-wrap .page-title {
  font-size: 3.75rem;
}
.page-title-wrap .page-title small {
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .page-title-wrap {
    padding: 5.625rem 0 2.5rem;
  }
  .page-title-wrap .page-title {
    font-size: 3rem;
  }
  .page-title-wrap .page-title small {
    font-size: 0.875rem;
  }
}

/*------------------------
  breadcrumbs
------------------------*/
.breadcrumbs {
  margin-bottom: 1.875rem;
  color: #848484;
  font-size: 0.75rem;
  font-weight: 500;
}
.breadcrumbs a {
  color: #848484;
}
.breadcrumbs a:hover {
  color: #0092FF;
}
.breadcrumbs .separator {
  margin: 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .breadcrumbs .separator {
    margin: 0 0.375rem;
  }
}

/*------------------------
  archive no-category
------------------------*/
.list-nocat {
  border-top: 0.0625rem solid #D9D9D9;
}
.list-nocat .item-nocat a {
  display: grid;
  grid-template-columns: 5.9375rem auto;
  width: 100%;
  position: relative;
  padding: 1.875rem 3.75rem 1.875rem 0;
  border-bottom: 0.0625rem solid #D9D9D9;
}
.list-nocat .item-nocat a:hover svg {
  fill: #222;
  right: 0;
}
.list-nocat .item-nocat a time {
  font-size: 0.75rem;
}
.list-nocat .item-nocat a .title-text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.list-nocat .item-nocat a svg {
  fill: #848484;
  width: 1rem;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .list-nocat .item-nocat a {
    grid-template-columns: auto;
    padding: 1.25rem 2.5rem 1.25rem 0;
  }
  .list-nocat .item-nocat a time {
    margin-bottom: 0.375rem;
  }
  .list-nocat .item-nocat a svg {
    width: 0.75rem;
    right: 0;
  }
}

/*------------------------
  archive has-category
------------------------*/
.list-hascat {
  border-top: 0.0625rem solid #C9E2F6;
}
.list-hascat .item-hascat a {
  display: block;
  position: relative;
  padding: 1.875rem 3.75rem 1.875rem 0;
  border-bottom: 0.0625rem solid #C9E2F6;
}
.list-hascat .item-hascat a:hover svg {
  fill: #222;
  right: 0;
}
.list-hascat .item-hascat .ly-row {
  justify-content: space-between;
}
.list-hascat .item-hascat .tag-cat {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.5rem;
}
.list-hascat .item-hascat .tag-cat li {
  font-size: 0.75rem;
  color: #848484;
  margin-right: 0.625rem;
  margin-bottom: 0.5rem;
  padding: 0.1875rem 1.25rem;
  background-color: #FFF;
  border: 0.0625rem solid #C9E2F6;
  border-radius: 0.9375rem;
}
.list-hascat .item-hascat .tag-cat li.advertisement, .list-hascat .item-hascat .tag-cat li.properties, .list-hascat .item-hascat .tag-cat li.web, .list-hascat .item-hascat .tag-cat li.recruit {
  color: #FFF;
  border: none;
}
.list-hascat .item-hascat .tag-cat li.advertisement {
  background-color: #0092FF;
}
.list-hascat .item-hascat .tag-cat li.properties {
  background-color: #E0A316;
}
.list-hascat .item-hascat .tag-cat li.web {
  background-color: #FF8484;
}
.list-hascat .item-hascat .tag-cat li.recruit {
  background-color: #56C898;
}
.list-hascat .item-hascat time {
  font-size: 0.75rem;
  color: #848484;
  margin-top: 0.5em;
}
.list-hascat .item-hascat .title-text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.9375rem;
}
.list-hascat .item-hascat svg {
  fill: #848484;
  width: 1rem;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .list-hascat .item-hascat a {
    padding: 1.25rem 2.5rem 1.25rem 0;
  }
  .list-hascat .item-hascat .ly-row {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: flex-start;
  }
  .list-hascat .item-hascat .tag-cat li {
    font-size: 0.6875rem;
    margin-right: 0.375rem;
    padding: 0.125rem 0.75rem;
  }
  .list-hascat .item-hascat time {
    margin-bottom: 0.375rem;
  }
  .list-hascat .item-hascat .title-text {
    margin-top: 0.625rem;
  }
  .list-hascat .item-hascat svg {
    width: 0.75rem;
    right: 0;
  }
}

.ly-white-block .list-hascat {
  border-color: #D9D9D9;
}
.ly-white-block .list-hascat .item-hascat a,
.ly-white-block .list-hascat .item-hascat .tag-cat li {
  border-color: #D9D9D9;
}

ul.cat-list {
  padding: 0 0 1.875rem;
}
ul.cat-list li {
  margin: 0 0 1.25rem;
}
ul.cat-list li a {
  font-size: 0.875rem;
  color: #222;
  font-weight: 500;
  color: #848484;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
ul.cat-list li a svg {
  width: 0.5rem;
  height: auto;
  fill: #848484;
  margin-right: 0.625rem;
}
ul.cat-list li a:hover {
  color: #222;
}
ul.cat-list li a:hover svg {
  fill: #222;
}
/*------------------------
  archive has-photo
------------------------*/
.list-hasphoto {
  margin-bottom: -2.5rem;
}
.list-hasphoto .item-hasphoto a {
  display: grid;
  grid-template-columns: 39% 61%;
  width: 100%;
  margin: 0 0 2.5rem;
}
.list-hasphoto .item-hasphoto a:hover .title-text {
  color: #0092FF;
}
.list-hasphoto .item-hasphoto a:hover figure img {
  transform: scale(1.2);
}
.list-hasphoto .item-hasphoto a figure {
  aspect-ratio: 26/17;
  overflow: hidden;
}
.list-hasphoto .item-hasphoto a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.list-hasphoto .item-hasphoto a .text {
  padding-left: 1.875rem;
}
.list-hasphoto .item-hasphoto a .title-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.875rem;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.list-hasphoto .item-hasphoto a dl {
  display: grid;
  grid-template-columns: 4.0625rem auto;
  margin: 0 0 0.625rem;
  align-items: center;
}
.list-hasphoto .item-hasphoto a dt {
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  background-color: #0092FF;
  border-radius: 0.9375rem;
  padding: 0.5em;
}
.list-hasphoto .item-hasphoto a dd {
  font-size: 0.875rem;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .list-hasphoto {
    margin-bottom: -1.25rem;
  }
}
@media screen and (max-width: 576px) {
  .list-hasphoto .item-hasphoto a {
    grid-template-columns: auto;
  }
  .list-hasphoto .item-hasphoto a .text {
    padding: 0.9375rem 0 0;
  }
  .list-hasphoto .item-hasphoto a .title-text {
    margin-bottom: 0.9375rem;
  }
  .list-hasphoto .item-hasphoto a dl {
    margin: 0 0 0.3125rem;
  }
}

/*------------------------
  pagination
------------------------*/
.pagination {
  margin: 3.125rem 0 0;
}
.pagination .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
}
.pagination span, .pagination a {
  padding: 0 0.8125rem 0.9375rem;
  margin: 0 0.0625rem;
}
.pagination span.current {
  border-bottom: 0.0625rem solid #222;
}
.pagination a {
  border-bottom: 0.0625rem solid rgba(0, 146, 255, 0);
}
.pagination a:hover {
  color: #0092FF;
  border-color: #0092FF;
}

/*------------------------
  link button
------------------------*/
.link-btn {
  margin: 3.75rem 0;
}
.link-btn a {
  display: grid;
  grid-template-columns: 5.625rem auto;
  align-items: center;
}
.link-btn a:hover {
  color: #0092FF;
}
.link-btn a:hover .ellipse::before {
  width: 5rem;
  height: 5rem;
}
.link-btn .ellipse {
  background-color: #222;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.link-btn .ellipse::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  transition: all 0.2s;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #0092FF;
}
.link-btn .ellipse svg {
  fill: #FFF;
  width: 1.25rem;
  position: relative;
}
.link-btn .link-text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .link-btn {
    margin: 2.5rem 0 0;
  }
  .link-btn a {
    grid-template-columns: 4.0625rem auto;
  }
  .link-btn a:hover {
    color: #222;
  }
  .link-btn .ellipse {
    width: 3.125rem;
    height: 3.125rem;
  }
  .link-btn .ellipse::before {
    content: none;
  }
  .link-btn .ellipse svg {
    width: 0.75rem;
  }
  .link-btn .link-text {
    font-size: 0.9375rem;
  }
}

/*------------------------
  cta
------------------------*/
.cta-cont {
  position: relative;
  overflow: hidden;
  background: url(../images/common/bg-cta.png) no-repeat center/cover;
}
.cta-cont::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.cta-cont:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.cta-cont a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  padding: 6.875rem 0 7.8125rem;
  position: relative;
}
.cta-cont a:hover .ellipse::before {
  width: 100%;
  height: 100%;
}
.cta-cont a:hover .ellipse svg {
  fill: #222;
}
.cta-cont .cta-text {
  padding-left: 2.5rem;
}
.cta-cont .cta-text .en {
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.9375rem;
}
.cta-cont .cta-text p {
  font-size: 0.875rem;
}
.cta-cont .ellipse {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  border: 0.0625rem solid #FFF;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cta-cont .ellipse::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFF;
  border-radius: 50%;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.cta-cont .ellipse svg {
  fill: #FFF;
  width: 1.25rem;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta-cont a {
    padding: 3.125rem 0;
  }
  .cta-cont .cta-text {
    padding-left: 0;
  }
  .cta-cont .cta-text .en {
    font-size: 3.125rem;
    margin-bottom: 0.625rem;
  }
  .cta-cont .cta-text p {
    font-size: 0.8125rem;
  }
  .cta-cont .ellipse {
    width: 4.375rem;
    height: 4.375rem;
  }
  .cta-cont .ellipse svg {
    width: 0.75rem;
  }
}

/*------------------------
  footer
------------------------*/
.l-footer {
  width: 100%;
  padding: 3.125rem 2.5rem 1.25rem;
}
.l-footer .ly-row {
  align-items: center;
  justify-content: space-between;
}
.l-footer .l-footer-logo {
  width: 13.75rem;
}
.l-footer ul.menu {
  display: flex;
  padding: 1.875rem 0;
}
.l-footer ul.menu li {
  padding: 0 1.5625rem;
  position: relative;
}
.l-footer ul.menu li a {
  font-size: 0.75rem;
  color: #222;
  font-weight: 500;
  color: #848484;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.l-footer ul.menu li a svg {
  width: 0.5rem;
  height: auto;
  fill: #848484;
  margin-right: 0.625rem;
}
.l-footer ul.menu li a:hover {
  color: #222;
}
.l-footer ul.menu li a:hover svg {
  fill: #222;
}
.l-footer .l-footer-sns {
  display: flex;
  margin: 0 0 1.875rem;
}
.l-footer .l-footer-sns li {
  margin-right: 0.3125rem;
}
.l-footer .l-footer-sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
}
.l-footer .l-footer-sns li a:hover {
  background-color: #848484;
}
.l-footer .l-footer-copyright {
  text-align: center;
  font-size: 0.6875rem;
  color: #848484;
  line-height: 3.125rem;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 3.125rem 0 0;
  }
  .l-footer .ly-row {
    align-items: center;
    justify-content: center;
  }
  .l-footer .l-footer-logo {
    width: 100%;
  }
  .l-footer .l-footer-logo img {
    width: 12.5rem;
    display: block;
    margin: 0 auto;
  }
  .l-footer ul.menu li {
    padding: 0 1.25rem;
  }
  .l-footer .l-footer-sns {
    justify-content: center;
    margin: 1.875rem 0 0.625rem;
  }
  .l-footer .l-footer-sns li {
    margin: 0 0.3125rem;
  }
  .l-footer .l-footer-sns li a {
    width: 2.5rem;
    height: 2.5rem;
  }
  .l-footer .l-footer-sns li a img {
    width: 1.875rem;
  }
  .l-footer .l-footer-copyright {
    font-size: 0.625rem;
    line-height: 2.5rem;
  }
}
/*------------------------
  scroll to top
------------------------*/
.page-top {
  position: fixed;
  bottom: 1.5625rem;
  right: 1.875rem;
  z-index: 10;
  width: 2.5rem;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.page-top:hover {
  opacity: 0.9;
}
.page-top svg {
  width: 100%;
  height: auto;
  fill: #0092FF;
}

@media screen and (max-width: 768px) {
  .page-top {
    bottom: 1.5625rem;
    right: 0.9375rem;
    width: 2.5rem;
  }
}
/*------------------------
  animation
------------------------*/
.fadeup {
  opacity: 0;
}
.fadeup.fade-on {
  animation-name: fadeUp;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeup.fade-on.delay01 {
  animation-delay: 0.05s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay02 {
  animation-delay: 0.15s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay03 {
  animation-delay: 0.2s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay04 {
  animation-delay: 0.2 0.5s;
  animation-duration: 0.8s;
}
.fadeup.fade-on.delay05 {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bounce {
  animation: bounce 0.5s linear 0s 1;
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 3%);
  }
  30% {
    transform: scale(1.1, 0.8) translate(0%, 6%);
  }
  50% {
    transform: scale(0.8, 1.1) translate(0%, -6%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 3%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/*------------------------
  404
------------------------*/
.error404 main {
  padding-top: 5rem;
}
.error404 main h1, .error404 main h2 {
  text-align: center;
}
.error404 main h1 {
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  color: #0092FF;
}
@media screen and (max-width: 768px) {
  .error404 main h1 {
    font-size: 2.875rem;
  }
}
.error404 main h2 {
  font-size: 1.75rem;
  margin: 1.875rem 0 0.625rem;
}
@media screen and (max-width: 768px) {
  .error404 main h2 {
    font-size: 1.5rem;
  }
}
.error404 main p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error404 main p {
    font-size: 0.8125rem;
  }
}
.error404 main .link-btn a {
  justify-content: center;
}