@charset "UTF-8";

:root {
  --font1: "Noto Sans JP", sans-serif;
  --font2: "Afacad", sans-serif;
  --font-icon: "Font Awesome 6 Free";
  --main-color: #003f8e;
  --text-color: #222;
  --line-color: #cacaca;
  --accent-color: #cf0000;
  --font-size-22: clamp(1.8rem, 1.5277vw, 2.2rem);
  --font-size-20: clamp(1.6rem, 1.388vw, 2rem);
  --font-size-18: clamp(1.6rem, 1.25vw, 1.8rem);
  --font-size-16: clamp(1.4rem, 1.111vw, 1.6rem);
  --font-size-14: clamp(1.2rem, 0.9722vw, 1.4rem);
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes img-fade-in {
  0% {
    opacity: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes img-fade-in {
  0% {
    opacity: 0;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes puff-in-top {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in-top {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@-webkit-keyframes infinity-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes scroll-down {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

/* -------------------------------
  Header
------------------------------- */
.l-header {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  margin: min(2.7778vw, 40px);
  overflow: hidden;
  width: calc(100% - min(5.5556vw, 80px));
  z-index: 100;
  box-shadow: 0px 10px 10px -6px rgba(70, 70, 70, 0.2);
}

.l-header .logo {
  display: -ms-grid;
  display: grid;
  max-width: 294px;
  min-width: 220px;
  place-content: center;
  width: 20.41666vw;
}

.l-header .logo:hover {
  opacity: 0.7;
}

.l-header .logo img {
  padding: 16px 18px;
}

@media (max-width: 991.98px) {
  .l-header .logo {
    min-width: 260px;
  }
}

.l-nav {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.c-nav__menu {
  font-weight: bold;
  letter-spacing: 0.05em;
}

.c-nav__btns--item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.c-nav__btns--item::before {
  content: "";
  display: block;
}

.c-nav__btns--item.bg-black {
  background-color: var(--text-color);
}

.c-nav__btns--item.mail::before {
  content: "\f0e0";
  font-family: var(--font-icon);
  font-size: 1.4rem;
  font-weight: 900;
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

.c-nav__btns--item.tel::before {
  background: url("../images/common/ico_free_dial.svg") no-repeat center left/contain;
  -webkit-margin-end: 4px;
  margin-inline-end: 4px;
  height: 10px;
  width: 16px;
}

@media (min-width: 992px) {
  .l-nav .c-hamburger {
    display: none;
  }

  .c-nav__inner {
    height: 100%;
  }

  .c-nav__menu,
  .c-nav__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }

  .c-nav__menu {
    font-size: var(--font-size-14);
  }

  .c-nav__list {
    /* -webkit-column-gap: clamp(20px, 2.7778vw, 40px); */
    /* -moz-column-gap: clamp(20px, 2.7778vw, 40px); */
    /* column-gap: clamp(20px, 2.7778vw, 40px); */
    column-gap: clamp(16px, 1.666vw, 40px);
    font-size: clamp(1.2rem, .972vw, 1.4rem);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }

  .c-nav__list a:hover {
    color: var(--main-color);
  }

  .c-nav__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-margin-start: min(2.7778vw, 40px);
    margin-inline-start: min(2.7778vw, 40px);
  }

  .c-nav__btns--item {
    color: #fff;
    padding-inline: clamp(10px, 3.1944vw, 46px);
  }

  .c-nav__btns--item:hover .c-nav__btns--text {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

  .c-nav__btns--text {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 1059.98px) {
  .c-nav__list {
    column-gap: 1.111vw;
  }
}

@media (max-width: 991.98px) {
  .l-nav.is-open .c-nav__inner {
    -webkit-animation: fade-in 0.3s ease-in both;
    animation: fade-in 0.3s ease-in both;
    background: url("../images/common/bg_nav.webp") no-repeat center/cover;
    min-height: 100vh;
    overflow-y: scroll;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    visibility: visible;
    width: 100vw;
  }

  .l-nav.is-open .c-nav__menu {
    color: #fff;
    font-size: var(--font-size-18);
    margin-inline: auto;
    left: 0;
    right: 0;
    pointer-events: auto;
    position: absolute;
    width: 100%;
  }

  .l-nav.is-open .c-nav__menu::before {
    background-color: rgba(28, 71, 125, 0.902);
    content: "";
    mix-blend-mode: multiply;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
  }

  .l-nav.is-open .c-nav__menu a {
    color: #fff;
  }

  .l-nav.is-open .c-nav__list,
  .l-nav.is-open .c-nav__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }

  .l-nav.is-open .c-nav__list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-inline: auto;
    max-width: 600px;
    -webkit-padding-before: 100px;
    padding-block-start: 100px;
    width: calc(100% - 40px);
  }

  .l-nav.is-open .c-nav__list li {
    width: 100%;
  }

  .l-nav.is-open .c-nav__list a {
    -webkit-border-after: solid 1px rgba(255, 255, 255, 0.6);
    border-block-end: solid 1px rgba(255, 255, 255, 0.6);
    display: block;
    padding-block: 20px;
    position: relative;
  }

  .l-nav.is-open .c-nav__list a::after {
    content: "\f054";
    font-family: var(--font-icon);
    font-weight: 900;
    position: absolute;
    right: 10px;
  }

  .l-nav.is-open .c-nav__btns {
    margin: 40px auto;
    max-width: 600px;
    width: inherit;
  }

  .l-nav.is-open .c-nav__btns--item {
    border-radius: 75px;
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
    margin-inline: auto;
    padding: 20px min(3.4722vw, 50px);
  }

  .l-nav.is-open .c-nav__btns--item:hover {
    opacity: 0.8;
  }

  .l-nav.is-open .c-hamburger {
    color: #fff;
  }

  .l-nav:not(.is-open) .c-nav__menu {
    -webkit-animation: fade-out 0.5s ease-out both;
    animation: fade-out 0.5s ease-out both;
    pointer-events: none;
  }

  .l-nav:not(.is-open) .c-nav__list,
  .l-nav:not(.is-open) .c-nav__btns {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .c-nav__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .c-nav__btns--item {
    width: 200px;
  }
}

.c-hamburger {
  color: var(--main-color);
  font-size: 2.6rem;
  position: absolute;
  right: 18px;
  height: 100%;
  z-index: 100;
}

.page-top {
  color: var(--main-color);
  font-size: 4rem;
  line-height: 1;
  mix-blend-mode: hard-light;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

.page-top .fa-solid::before {
  background-color: #fff;
  border-radius: 50%;
  display: block;
  height: 40px;
}

@media (max-width: 767.98px) {
  .page-top {
    font-size: 6rem;
    right: 10px;
  }

  .page-top .fa-solid::before {
    height: 60px;
  }
}

/* -------------------------------
  Footer
------------------------------- */
.l-footer {
  background-color: #f8f8f8;
  padding-block: 166px 35px;
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1300px;
  margin-inline: auto;
}

@media (max-width: 1300px) {
  .l-footer__inner {
    padding-inline: 20px;
  }
}

@media (max-width: 767.98px) {
  .l-footer {
    -webkit-padding-before: 66px;
    padding-block-start: 66px;
  }

  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}

.c-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-footer__info .logo {
  -webkit-margin-after: 26px;
  margin-block-end: 26px;
  max-width: 325px;
  mix-blend-mode: multiply;
}

.c-footer__info address {
  font-size: var(--font-size-14);
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.85;
  -webkit-margin-start: 12px;
  margin-inline-start: 12px;
  -webkit-margin-after: 20px;
  margin-block-end: 20px;
}

.c-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-margin-before: auto;
  margin-block-start: auto;
}

.c-footer__sns .icon {
  background-color: #fff;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 50px;
  width: 50px;
}

.c-footer__sns .icon .fa-brands {
  color: var(--text-color);
  font-size: var(--font-size-22);
}

.c-footer__nav {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.c-footer__menu {
  -webkit-column-gap: min(5.0694vw, 73px);
  -moz-column-gap: min(5.0694vw, 73px);
  column-gap: min(5.0694vw, 73px);
  display: -ms-grid;
  display: grid;
  font-size: var(--font-size-16);
  font-weight: bold;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.c-footer__menu--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 38px;
}

.c-footer__menu--list a:hover {
  text-decoration: underline;
}

.c-footer__menu .sub-menu {
  font-size: var(--font-size-14);
  font-weight: normal;
  -webkit-margin-before: 17px;
  margin-block-start: 17px;
}

@media (max-width: 479.98px) {
  .c-footer__info .logo {
    width: 270px;
  }

  .c-footer__sns {
    margin-inline: auto;
  }

  .c-footer__nav {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }

  .c-footer__menu {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.copyright {
  color: #cacaca;
  font-size: 1.2rem;
  -webkit-margin-before: 38px;
  margin-block-start: 38px;
  text-align: right;
}

/* -------------------------------
  Wrapper
------------------------------- */
.l-container {
  max-width: 1100px;
  margin-inline: auto;
}

.l-inner {
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 1200px) {
  .l-container {
    padding-inline: 20px;
  }
}

@media (max-width: 991.98px) {
  .l-inner {
    padding-inline: 20px;
  }

  .l-container .l-inner {
    padding-inline: 0;
  }
}

/* -------------------------------
  Section
------------------------------- */
section {
  padding-block: 150px;
}

@media (max-width: 767.98px) {
  section {
    padding-block: 100px;
  }
}

/* -------------------------------
  Background
------------------------------- */
.bg-gray {
  background-color: #f8f8f8 !important;
}

/* -------------------------------
  Layout - Column
------------------------------- */
.l-column {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.l-column.gap-40 {
  gap: min(2.7778vw, 40px);
}

@media (min-width: 768px) {
  .l-column.col-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .l-column.col-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .l-column.col-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .l-column.col-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .l-column.col-3 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .l-column.col-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------
  Contact Section
------------------------------- */
.p-contact {
  background: url("../images/common/bg_contact.webp") no-repeat 0 0/cover;
  position: relative;
}

.p-contact::before {
  background-color: rgba(45, 109, 189, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.p-contact .l-container {
  position: relative;
  z-index: 10;
}

.p-contact .c-heading01 .en {
  color: #fff;
  font-size: clamp(6rem, 6.25vw, 9rem);
}

.p-contact .c-heading01 .hdg {
  color: #fff;
}

.p-contact .c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  padding: 60px min(3.819vw, 55px);
}

.p-contact .c-buttons {
  -webkit-margin-before: auto;
  margin-block-start: auto;
}

@media (max-width: 767.98px) {
  .p-contact {
    padding-block: 60px 100px;
  }

  .p-contact .c-heading01 {
    -webkit-margin-after: 50px;
    margin-block-end: 50px;
  }

  .p-contact .c-box {
    gap: 20px;
    margin-block: 0;
    padding: 30px;
  }
}

.c-contact__ttl {
  color: var(--main-color);
  font-size: clamp(2.2rem, 1.80555vw, 2.6rem);
  -webkit-padding-start: min(4.0277vw, 58px);
  padding-inline-start: min(4.0277vw, 58px);
  position: relative;
}

.c-contact__ttl::before {
  background-color: var(--main-color);
  content: "";
  height: 2px;
  -webkit-margin-after: 38px;
  margin-block-end: 38px;
  max-width: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3.4722vw;
}

@media (max-width: 767.98px) {
  .c-contact__ttl {
    -webkit-padding-start: 38px;
    padding-inline-start: 38px;
  }

  .c-contact__ttl::before {
    width: 30px;
  }
}

/* -------------------------------
  News List
------------------------------- */
.c-news__list {
  -webkit-border-before: solid 1px var(--line-color);
  border-block-start: solid 1px var(--line-color);
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.c-news__item {
  -webkit-border-after: solid 1px var(--line-color);
  border-block-end: solid 1px var(--line-color);
}

.c-news__item .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(3.1944vw, 46px);
  padding-block: 30px;
}

.c-news__item .cont:hover {
  background-color: #f8f8f8;
}

.c-news__item .cont time {
  font-size: var(--font-size-14);
  font-weight: bold;
  width: 6em;
}

.c-news__item .cont .txt {
  -ms-flex-preferred-size: calc(100% - 6em - min(3.1944vw, 46px));
  flex-basis: calc(100% - 6em - min(3.1944vw, 46px));
}

@media (max-width: 767.98px) {
  .c-news__item .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-news__item .cont time {
    width: auto;
  }
}

/* -------------------------------
  Pagination
------------------------------- */
.nav-links {
  display: flex;
  font-family: var(--font2);
  font-size: 2rem;
  justify-content: center;
  margin-block-start: 80px;
}

.nav-links .page-numbers {
  border: solid 1px var(--line-color);
  border-right: 0;
  flex-basis: 40px;
  padding: 5px 10px;
  ;
  text-align: center;
  width: 40px;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background-color: var(--main-color);
  color: #fff;
}

.nav-links .page-numbers:first-child {
  border-radius: 4px 0 0 4px;
}

.nav-links .page-numbers:last-child {
  border-right: solid 1px var(--line-color);
  border-radius: 0 4px 4px 0;
}

/* -------------------------------
  Page Navigation
------------------------------- */
.c-post-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* -------------------------------
  Components
------------------------------- */
.c-heading01 {
  font-weight: bold;
  -webkit-margin-after: 100px;
  margin-block-end: 100px;
  text-align: center;
}

.c-heading01 .en {
  color: var(--main-color);
  display: block;
  font-family: var(--font2);
  font-size: clamp(5rem, 4.5833vw, 6.6rem);
  line-height: 1.21;
}

.c-heading01 .hdg {
  display: block;
  font-size: var(--font-size-16);
  letter-spacing: 0.3em;
  line-height: 1;
}

.c-heading02 {
  -webkit-border-after: solid 1px var(--line-color);
  border-block-end: solid 1px var(--line-color);
  font-size: clamp(2.2rem, 1.80555vw, 2.6rem);
  font-weight: bold;
  line-height: 1.46;
  -webkit-margin-after: 50px;
  margin-block-end: 50px;
  -webkit-padding-after: 17px;
  padding-block-end: 17px;
  position: relative;
}

.c-heading02::before {
  background-color: var(--main-color);
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 30px;
}

.c-heading03 {
  color: var(--main-color);
  font-size: clamp(1.8rem, 1.5277vw, 2.2rem);
  font-weight: bold;
  -webkit-margin-after: 40px;
  margin-block-end: 40px;
}

.c-heading04 {
  font-size: clamp(1.6rem, 1.388vw, 2rem);
  -webkit-margin-after: 20px;
  margin-block-end: 20px;
}

.txt {
  font-size: var(--font-size-16);
  line-height: 2;
}

.txt+.txt {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}

.lead {
  font-size: clamp(2.2rem, 1.80555vw, 2.6rem);
  line-height: 1.4615;
  font-weight: bold;
  -webkit-margin-after: 60px;
  margin-block-end: 60px;
}

.note {
  font-size: 1.3rem;
  line-height: 1.5;
}

.note::before {
  content: "※";
  -webkit-margin-end: 5px;
  margin-inline-end: 5px;
}

.c-link {
  color: var(--main-color);
  display: inline-block;
  font-size: var(--font-size-16);
  font-weight: bold;
  -webkit-padding-end: 1em;
  padding-inline-end: 1em;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.c-link:hover {
  text-decoration: none;
}

.c-link::after {
  content: "\f054";
  font-family: var(--font-icon);
  font-size: 1.2rem;
  font-weight: 900;
  position: absolute;
  text-decoration: none;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-box {
  background-color: #edf3fa;
  border-radius: 30px;
  margin-block: 30px;
  padding: min(2.9166vw, 42px);
}

.c-box .ttl {
  color: var(--main-color);
  font-size: var(--font-size-22);
  font-weight: bold;
  -webkit-margin-after: 42px;
  margin-block-end: 42px;
}

.c-box.bg-white {
  background-color: #fff;
}

@media (max-width: 767.98px) {
  .c-box {
    padding: 30px;
  }

  .c-box .ttl {
    -webkit-margin-after: 20px;
    margin-block-end: 20px;
  }
}

.c-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--main-color);
  border: solid 1px var(--main-color);
  border-radius: 75px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--font-size-14);
  font-weight: bold;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  min-width: 198px;
  padding: 20px min(3.4722vw, 50px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-button.bg-white {
  background-color: #fff;
  color: var(--main-color);
}

.c-button.bg-white:hover {
  background-color: var(--main-color);
  color: #fff;
}

.c-button:hover {
  background-color: #fff;
  color: var(--main-color);
}

.c-button::after {
  content: "\f054";
  font-family: var(--font-icon);
  font-size: 1.2rem;
  font-weight: 900;
}

.ta-r .c-button {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

.ta-l .c-button {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
}

.ta-c .c-button {
  margin-inline: auto;
}

.c-button.prev {
  flex-direction: row-reverse;
}

.c-button.prev::after {
  transform: rotate(180deg);
}

.c-button.next {
  margin-inline-start: auto;
}

@media (max-width: 767.98px) {

  .c-button.prev,
  .c-button.next {
    min-width: inherit;
    padding-inline: 20px;
  }
}

.c-breadcrumbs {
  line-height: 1;
  max-width: 1100px;
  margin: 15px auto 0;
  padding-inline: 20px;
}

.c-breadcrumbs li {
  display: inline;
  font-size: var(--font-size-14);
}

.c-breadcrumbs li+li::before {
  content: "> ";
  color: #cacaca;
}

.c-breadcrumbs li a {
  display: inline;
}

.c-breadcrumbs li a:hover {
  text-decoration: underline;
}

.c-breadcrumbs__txt {
  line-height: 1.5;
}

@media (min-width: 1100px) {
  .c-breadcrumbs {
    padding-inline: 0;
  }
}

.c-disc>li {
  font-size: var(--font-size-16);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.c-disc>li+li {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}

.c-disc>li::before {
  background-color: var(--main-color);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  height: 10px;
  width: 10px;
}

.c-disc>li .c-disc>li:first-child {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}

.c-disc>li .c-disc>li::before {
  background-color: #fff;
  border: solid 1px var(--main-color);
}

.c-order {
  counter-reset: order;
}

.c-order>li {
  font-size: var(--font-size-16);
  -webkit-padding-start: 30px;
  padding-inline-start: 30px;
  position: relative;
}

.c-order>li::before {
  background-color: var(--main-color);
  color: #fff;
  counter-increment: order;
  content: counter(order);
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 18px;
  -webkit-margin-end: 1em;
  margin-inline-end: 1em;
  text-align: center;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  top: 5px;
}

.c-order>li+li {
  -webkit-margin-before: 6px;
  margin-block-start: 6px;
}

.c-table {
  -webkit-border-before: solid 1px var(--line-color);
  border-block-start: solid 1px var(--line-color);
  border-collapse: collapse;
  margin-inline: auto;
  width: 100%;
}

.c-table tr {
  -webkit-border-after: solid 1px var(--line-color);
  border-block-end: solid 1px var(--line-color);
}

.c-table th {
  font-size: var(--font-size-16);
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}

.c-table th,
.c-table td {
  padding: 24px 0;
}

.c-table thead th {
  text-align: center;
}

.c-table tbody td {
  -webkit-padding-start: min(2.7778vw, 40px);
  padding-inline-start: min(2.7778vw, 40px);
}

@media (max-width: 767.98px) {

  .c-table tbody th,
  .c-table tbody td {
    display: block;
  }

  .c-table tbody th {
    -webkit-padding-after: 0;
    padding-block-end: 0;
  }

  .c-table tbody td {
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
  }
}

.c-card {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  text-decoration: none;
}

.c-card__header {
  display: flex;
  flex-wrap: wrap;
}

.c-card__title {
  padding: 1em 1em 0;
  order: 1;
}

.c-card__thumbnail {
  flex-basis: 100%;
}

.c-card__thumbnail img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.c-card__body {
  padding: 1em;
}

.c-card__text+.c-card__text {
  margin-top: .5em;
}

.c-card__footer {
  padding: .5em 1em 2em;
}

.c-card__footer .c-button {
  margin-inline: auto;
  padding-block: 15px;
}

@media (min-width: 768px) {
  .c-card__thumbnail {
    aspect-ratio: 1.416 / 1;
  }
}

.c-definition {
  margin: 55px auto 0;
  padding-bottom: 15px;
}

.c-definition .ttl {
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.c-definition dl {
  border-bottom: solid 1px rgba(0, 79, 120, 0.5);
}

.c-definition dl>div {
  border-top: solid 1px rgba(0, 79, 120, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 22px 0 33px;
}

.c-definition dl>div dt {
  -ms-flex-preferred-size: 146px;
  flex-basis: 146px;
  font-weight: bold;
  text-align: center;
}

.c-definition dl>div dd {
  -ms-flex-preferred-size: calc(100% - 146px);
  flex-basis: calc(100% - 146px);
}

@media (max-width: 767.98px) {
  .c-definition .ttl {
    margin-bottom: 20px;
  }

  .c-definition dl>div dt,
  .c-definition dl>div dd {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .c-definition dl>div dt {
    margin-bottom: 15px;
    text-align: left;
  }
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-l {
  text-align: left !important;
}

.d-ib {
  display: inline-block !important;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-normal {
  font-weight: normal !important;
}

@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .pc-only {
    display: none !important;
  }
}

.js-trigger.in {
  opacity: 0;
}

.js-trigger.in.is-active {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.js-trigger.up {
  opacity: 0;
}

.js-trigger.up.is-active {
  -webkit-animation-name: slid-in-up;
  animation-name: slid-in-up;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.js-trigger.img-in {
  opacity: 0;
}

.js-trigger.img-in.is-active {
  -webkit-animation-name: img-fade-in;
  animation-name: img-fade-in;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.wpcf7-response-output {
  display: none;
  height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
}

.mt-0 {
  margin-top: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

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

.ml-0 {
  margin-left: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

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

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

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