@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  height: 100%;
}
@media screen and (min-width: 1201x) {
  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: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  color: #000;
}

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.3s;
  -webkit-transition: all 0.3s;
  color: #000;
}

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%;
  padding: 0.9375rem 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 0.5rem 0;
  }
}
.l-header.fixed {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  animation: slideDown 0.5s ease-in-out;
  padding: 0.625rem 0;
  background-color: #FFF;
}
.l-header.fixed .l-header-logo {
  width: 9.375rem;
}
@media screen and (max-width: 768px) {
  .l-header.fixed .l-header-logo {
    width: 6.875rem;
  }
}
.l-header .ly-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.125rem;
}
.l-header-logo {
  width: 12.5rem;
}
.l-header-logo a {
  display: block;
}
.l-header-logo a img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-header-logo {
    width: 7.5rem;
  }
}
.l-header .l-header-menu-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-header .l-header-menu__btn a {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #FFF;
  background-color: #02558B;
  overflow: hidden;
  border: 1px solid #02558B;
  display: block;
  position: relative;
}
.l-header .l-header-menu__btn a::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 0;
  height: 100%;
  background-color: #FFF;
  left: 0;
  top: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.l-header .l-header-menu__btn a span {
  position: relative;
  display: block;
  padding: 0.625rem 1.5625rem;
}
.l-header .l-header-menu__btn a:hover {
  color: #02558B;
}
.l-header .l-header-menu__btn a:hover::before {
  width: 100%;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
/*------------------------
  global nav
------------------------*/
.l-header ul.menu {
  display: flex;
}
.l-header ul.menu li {
  padding: 0 1.0625rem;
}
.l-header ul.menu li a {
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
}
.l-header ul.menu li a:hover {
  color: #0075BA;
}

/*------------------------
  burger
------------------------*/
.hamburger-menu {
  z-index: 9999;
  position: fixed;
  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.3s;
  -webkit-transition: all 0.3s;
}
.menu-btn span {
  position: relative;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 100%;
  display: block;
  height: 0.125rem;
  background-color: #0075BA;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
}
.menu-btn span::before {
  top: -0.75rem;
}
.menu-btn span::after {
  bottom: -0.75rem;
}

#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;
  padding-top: 6rem;
}
.menu-content ul.menu {
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: block;
  max-width: 480px;
  width: 100%;
  border-bottom: 1px solid #E8ECEE;
}
.menu-content ul.menu li {
  border-top: 1px solid #E8ECEE;
}
.menu-content ul.menu li a {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
}
.menu-content .l-header-menu__btn {
  width: 11.25rem;
  position: absolute;
  top: 1.25rem;
  left: 2.5rem;
}
.menu-content .l-header-menu__btn a {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #FFF;
  background-color: #0075BA;
  overflow: hidden;
  border: 1px solid #0075BA;
  display: block;
  position: relative;
  text-align: center;
}
.menu-content .l-header-menu__btn a span {
  position: relative;
  display: block;
  padding: 0.625rem 1.5625rem;
}

/*------------------------
  layout
------------------------*/
.grid-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .grid-container {
    background-size: 130% auto;
  }
}

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

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

.main-content {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .main-content {
    margin-top: 0.625rem;
  }
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 4.375rem;
}
@media screen and (max-width: 768px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.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%;
  }
}

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

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

.d-grid {
  display: grid;
}

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

.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-30 {
  margin-top: 1.875rem !important;
}

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

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

.sec-ttl {
  font-size: 1.5rem;
  color: #0075BA;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sec-ttl {
    font-size: 1.375rem;
  }
}

.heading-lg {
  font-size: 2.5rem;
}
.heading-lg .large {
  font-size: 2.875rem;
}
@media screen and (max-width: 768px) {
  .heading-lg .large {
    font-size: 2.5rem;
  }
}
.heading-lg small {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .heading-lg small {
    font-size: 1.25rem;
  }
}

.heading-md {
  font-size: 1.875rem;
}

/*------------------------
  page title
------------------------*/
.page-title__wrap {
  background-color: #E8ECEE;
  padding: 2.5rem 0;
  margin-bottom: 0.625rem;
}
.page-title__wrap .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.25rem;
  margin-top: 1.5625rem;
}
.page-title__wrap .post-tags a {
  color: #606263;
  font-weight: 600;
  font-size: 0.8125rem;
  display: block;
}
.page-title__wrap .post-tags a::before {
  content: "#";
  margin-right: 0.5em;
}
.page-title__txt {
  line-height: 1.5;
}
.page-title__txt span {
  display: block;
}
.page-title__txt .ja {
  font-size: 2.125rem;
}
@media screen and (max-width: 768px) {
  .page-title__txt .ja {
    font-size: 1.75rem;
  }
}
.page-title__txt .en {
  font-size: 1rem;
  color: #606263;
  letter-spacing: 0.1em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .page-title__txt .en {
    font-size: 0.875rem;
  }
}
.page-title__cat a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFF;
  background-color: #00A6D9;
  padding: 0.25rem 0.5rem;
}
.page-title__cat a:hover {
  background-color: #0075BA;
}
.page-title__cat + .page-title__cat {
  margin-left: 0.375rem;
}
.page-title__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: #606263;
  margin-bottom: 0.625rem;
}
.page-title__meta time {
  margin-left: 1.5625rem;
}

/*------------------------
  breadcrumbs
------------------------*/
.breadcrumbs {
  margin-bottom: 3.125rem;
}
.breadcrumbs span {
  font-size: 0.75rem;
  color: #606263;
}
.breadcrumbs .hyphen {
  color: #606263;
  display: inline-block;
  padding: 0 1em;
}
.breadcrumbs a {
  color: #606263;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

/*------------------------
  archive
------------------------*/
.entry__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 2.5rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #E8ECEE;
}
@media screen and (max-width: 576px) {
  .entry__list {
    grid-template-columns: 1fr;
  }
}
.entry__item a {
  display: block;
}
.entry__item a:hover .entry__img {
  opacity: 0.8;
}
.entry__img {
  border: 1px solid #E8ECEE;
  aspect-ratio: 16/9;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.entry__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.entry__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.625rem 0;
}
.entry__meta .cat {
  display: flex;
  gap: 0.1875rem;
}
.entry__meta .cat li {
  background-color: #00A6D9;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 0.3125rem;
}
.entry__meta .time {
  color: #606263;
  font-size: 0.75rem;
}
.entry__ttl {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
}
.entry__list + .link-btn {
  margin: 1.875rem auto 0;
  width: 20rem;
}

/*------------------------
  pagination
------------------------*/
.pagination {
  margin-top: 1.875rem;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
}
.pagination span, .pagination a {
  margin: 0 0.5em;
  font-size: 0.9375rem;
  font-weight: 800;
}
.pagination .current,
.pagination a:hover {
  color: #0075BA;
}
.pagination .nextpostslink,
.pagination .previouspostslink {
  font-family: "Noto Sans JP", sans-serif;
}

/*------------------------
  link button
------------------------*/
.link-btn a {
  display: block;
  position: relative;
}
.link-btn a::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 0;
  height: 100%;
  background-color: #FFF;
  overflow: hidden;
  top: 0;
  left: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.link-btn a span {
  padding: 0.75rem 0.625rem;
  display: flex;
  gap: 0.9375rem;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.link-btn a svg {
  width: 0.5rem;
  transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.link-btn a:hover::before {
  width: 100%;
}
.link-btn.blue a {
  background-color: #0075BA;
  border: 1px solid #0075BA;
  color: #FFF;
}
.link-btn.blue a svg {
  fill: #FFF;
}
.link-btn.blue a:hover {
  color: #0075BA;
}
.link-btn.blue a:hover svg {
  fill: #0075BA;
}
.link-btn.yellow a {
  background-color: #FABD00;
  border: 1px solid #FABD00;
  color: #000;
}
.link-btn.yellow a svg {
  fill: #000;
}
.link-btn.yellow a:hover {
  color: #D7A600;
}
.link-btn.yellow a:hover svg {
  fill: #D7A600;
}
.link-btn.blue-dark a {
  display: flex;
  justify-content: space-between;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #02558B;
  color: #FFF;
  font-size: 0.9375rem;
  border: 1px solid #02558B;
}
.link-btn.blue-dark a:hover {
  color: #02558B;
}
.link-btn.blue-dark a:hover .tag {
  background-color: #02558B;
  color: #FFF;
}
.link-btn.blue-dark a:hover svg {
  fill: #02558B;
}
.link-btn.blue-dark a span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.9375rem 0;
  gap: 0.5rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.link-btn.blue-dark a .tag {
  background-color: #FFF;
  color: #0075BA;
  font-size: 0.6875rem;
  padding: 0.125rem 0.1875rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.link-btn.blue-dark a svg {
  fill: #FFF;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  position: relative;
}
/*------------------------
  sidebar
------------------------*/
.sidebar {
  padding-bottom: 5rem;
}
.sidebar__box + .sidebar__box {
  margin-top: 2.1875rem;
}
.sidebar__ttl {
  color: #0075BA;
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 0.625rem;
  border-bottom: 0.1875rem solid #0075BA;
}
.sidebar ul.tagclouds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 0.9375rem;
}
.sidebar ul.tagclouds li a {
  display: block;
  padding: 0.125rem 0.625rem;
  background-color: #E8ECEE;
  color: #606263;
  font-size: 0.8125rem;
  font-weight: 700;
}
.sidebar ul.tagclouds li a:hover {
  color: #0075BA;
}
.sidebar-archive__item {
  border-bottom: 1px solid #E8ECEE;
}
.sidebar-archive__item a {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 0.625rem 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sidebar-archive__item a {
    grid-template-columns: 1fr 3fr;
  }
}
.sidebar-archive__item a:hover .sidebar-archive__img {
  opacity: 0.8;
}
.sidebar-archive__img {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid #E8ECEE;
}
.sidebar-archive__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-archive__txt {
  padding-left: 0.625rem;
}
.sidebar-archive__time {
  color: #606263;
  font-size: 0.6875rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.sidebar-archive__ttl {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6;
}
.sidebar-cat__list li {
  border-bottom: 1px solid #E8ECEE;
}
.sidebar-cat__list li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.9375rem 0.9375rem 0.9375rem 0;
}
.sidebar-cat__list li a:hover {
  color: #0075BA;
}
.sidebar-cat__list li a:hover svg {
  fill: #0075BA;
}
.sidebar-cat__list li svg {
  fill: #606263;
  width: 0.5rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.sidebar .link-btn + .link-btn {
  margin-top: 0.625rem;
}

/*------------------------
  search form
------------------------*/
.search__form {
  position: relative;
}
.search__form input[type=text] {
  width: 100%;
  box-shadow: none;
  padding: 0.75rem 0 0.75rem 2.1875rem;
  border: solid #000;
  border-width: 0 0 0.1875rem;
}
.search__form input[type=text]::placeholder {
  color: #606263;
  font-weight: 700;
  font-size: 0.9375rem;
}
.search__form__btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.search__form__btn img {
  width: 1.5rem;
  height: auto;
}

/*------------------------
  cta
------------------------*/
.cta-wrap {
  background: #00A6D9 url(../images/common/cta-bg.webp) no-repeat center/cover;
  padding: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .cta-wrap {
    padding: 2.5rem 0;
  }
}
.cta__inner {
  background-color: #FFF;
  padding: 3.125rem 6.25rem 3.125rem 8.125rem;
  display: flex;
  justify-content: space-between;
  gap: 6.25rem;
}
@media screen and (max-width: 768px) {
  .cta__inner {
    padding: 1.875rem 1.25rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.cta__txt {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta__txt {
    width: 100%;
    margin: 0 auto;
  }
}
.cta__txt p {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0.625rem 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta__txt p {
    margin: 0.625rem 0 1.875rem;
    text-align: center;
  }
}
.cta__txt img {
  display: block;
  margin: 0 auto;
  max-width: 20rem;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .cta__txt img {
    max-width: 17.5rem;
  }
}
@media screen and (max-width: 576px) {
  .cta__txt img {
    max-width: 13.75rem;
  }
}
.cta__txt .link-btn {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .cta__txt .link-btn {
    margin: 0 auto;
    width: 90%;
    max-width: 25rem;
  }
}
.cta__txt .link-btn a {
  font-size: 1.0625rem;
}
.cta__img {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .cta__img {
    width: 90%;
    max-width: 25rem;
    margin: 0 auto;
  }
}
.cta-grid__banner {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto 2.8125rem;
}
@media screen and (max-width: 768px) {
  .cta-grid__banner {
    margin-bottom: 1.25rem;
  }
}
.cta-grid__banner a {
  display: block;
}
.cta-grid__banner a:hover {
  opacity: 0.8;
}
.cta-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  padding: 0 3.125rem;
}
@media screen and (max-width: 768px) {
  .cta-links {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .cta-links {
    grid-template-columns: 1fr;
  }
}
.cta-links__item a {
  display: grid;
  height: 100%;
  min-height: 6.875rem;
  align-items: center;
  grid-template-columns: 3.75rem auto;
  gap: 0.9375rem;
  padding: 1.25rem 3.75rem 0.9375rem 0.9375rem;
  background: #FFF url(../images/common/icon-arrow.svg) no-repeat;
  background-position: right 1.5625rem center;
  background-size: 0.625rem auto;
}
@media screen and (max-width: 768px) {
  .cta-links__item a {
    grid-template-columns: 2.8125rem auto;
    padding: 0.625rem 2.5rem 0.625rem 0.625rem;
    gap: 0.625rem;
    background-position: right 0.9375rem center;
    background-size: 0.5rem auto;
    min-width: auto;
  }
}
.cta-links__item a:hover {
  background-color: #E8ECEE;
}
.cta-links__img {
  width: 3.75rem;
  aspect-ratio: 1/1;
  background-color: #0075BA;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-links__img img {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .cta-links__img {
    width: 2.8125rem;
  }
}
.cta-links__tit {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0075BA;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .cta-links__tit {
    font-size: 0.9375rem;
  }
}
.cta-links p {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #606263;
}
@media screen and (max-width: 768px) {
  .cta-links p {
    font-size: 0.75rem;
  }
}

/*------------------------
  footer
------------------------*/
.l-footer {
  width: 100%;
  background-color: #FFF;
}
.l-footer .ly-wrapper {
  margin: 5.625rem 0 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-footer .ly-wrapper {
    margin: 3.75rem 0 3.125rem;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 4.375rem;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-left {
    width: 100%;
  }
}
.l-footer-right {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, auto);
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-footer-right {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-right {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}
.l-footer-logo {
  width: 12.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer-logo {
    width: 100%;
  }
  .l-footer-logo img {
    width: 12.5rem;
    display: block;
    margin: 0 auto;
  }
}
.l-footer__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__btn {
    max-width: 12.5rem;
    width: 100%;
    margin: 2.5rem auto 0;
  }
}
.l-footer__btn .phrase {
  font-weight: 700;
  text-align: center;
  font-size: 0.8125rem;
  padding: 0 0.3125rem 0.625rem;
}
.l-footer-menu__ttl {
  color: #0075BA;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 576px) {
  .l-footer-menu__ttl {
    font-size: 1.125rem;
  }
}
.l-footer__menu ul li a {
  font-size: 0.875rem;
  color: #606263;
  display: block;
  padding: 0.1875rem 0;
}
@media screen and (max-width: 576px) {
  .l-footer__menu ul li a {
    font-size: 0.8125rem;
  }
}
.l-footer__menu ul li a:hover {
  color: #000;
}
.l-footer .l-footer-copyright {
  text-align: center;
  font-size: 0.6875rem;
  color: #606263;
  line-height: 5rem;
  background-color: #E5E5E5;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-copyright {
    font-size: 0.625rem;
  }
}

/*------------------------
  scroll to top
------------------------*/
.page-top {
  position: fixed;
  bottom: 1.5625rem;
  right: 1.875rem;
  z-index: 10;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #606263;
}
.page-top:hover {
  background-color: #0075BA;
}
.page-top svg {
  width: 0.625rem;
  height: auto;
  fill: #FFF;
  transform: rotate(-90deg);
}

/*------------------------
  404
------------------------*/
main.error404 {
  text-align: center;
}
main.error404 h1 {
  font-family: "Inter", sans-serif;
  color: #606263;
  font-size: 0.875rem;
}
main.error404 h2 {
  font-size: 1.5rem;
  margin: 0.3125rem 0 1.25rem;
}
main.error404 p {
  font-size: 0.8125rem;
}
main.error404 .link-btn {
  max-width: 17.5rem;
  margin: 1.875rem auto;
}