@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

:where(body, h1, h2, h3, h4, p, figure, blockquote, li, ul, ol, dl, dd) {
  margin: 0;
}

:where(h1, h2, h3, h4) {
  font-weight: 400;
}

:where(ul, ol) {
  padding: 0;
  list-style: none;
}

body {
  --container-large: 1100px;
  --container-small: 900px;
  font-size: 16px;
  line-height: 2;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}

.font-jost {
  font-family: "Jost", sans-serif;
}

.font-noto {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  background-color: transparent;
  border: none;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + :disabled)) {
  cursor: not-allowed;
}

a {
  color: #00509D;
}

.theme-container {
  max-width: calc(var(--container-large) + 40px);
  margin-inline: auto;
  padding-inline: 20px;
}
.theme-container--small {
  max-width: calc(var(--container-small) + 40px);
}

.post-container {
  max-width: calc(var(--container-small) + 40px);
  margin-inline: auto;
  padding: 40px 20px 70px;
}
@media (min-width: 769px) {
  .post-container {
    padding: 100px 20px 200px;
  }
}

.page-default-container {
  max-width: calc(var(--container-small) + 40px);
  margin-inline: auto;
  padding: 40px 20px 70px;
}
@media (min-width: 769px) {
  .page-default-container {
    padding: 80px 20px 170px;
  }
}

@media (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
.theme-button {
  --text-color: #fff;
  --background-color: #00293B;
  --arrow-color: #00293B;
  --arrow-background-color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 20px;
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 22px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 769px) {
  .theme-button {
    gap: 12px;
    padding: 5px 6px 5px 24px;
    border-radius: 25px;
  }
  .theme-button:hover {
    opacity: 0.8;
  }
}
.theme-button--light {
  --text-color: #000;
  --background-color: #fff;
  --arrow-color: #fff;
  --arrow-background-color: #00293B;
}
.theme-button__label {
  flex: auto;
  display: flex;
  justify-content: center;
  line-height: 1.333;
  font-weight: 500;
}
@media (min-width: 769px) {
  .theme-button__label {
    font-size: 20px;
    font-weight: 400;
  }
}
.theme-button__arrow {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 34px;
  padding: 4px;
  border-radius: 50%;
  background: var(--arrow-background-color);
}
@media (min-width: 769px) {
  .theme-button__arrow {
    width: 40px;
    padding: 8px;
  }
}
.theme-button__arrow img {
  width: 100%;
}
.theme-button__arrow svg {
  width: 100%;
  stroke: var(--arrow-color);
}

.outstanding-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 25px;
  background-image: linear-gradient(90deg, #FF3300 0%, #FFC300 100%);
  color: #fff;
  border-radius: 28px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 769px) {
  .outstanding-button {
    gap: 12px;
    padding: 6px 8px 6px 25px;
    border-radius: 40px;
  }
  .outstanding-button:hover {
    opacity: 0.7;
  }
}
.outstanding-button__label {
  flex: auto;
  display: flex;
  justify-content: center;
  font-size: 18px;
  line-height: 1.333;
  font-weight: 400;
}
@media (min-width: 769px) {
  .outstanding-button__label {
    font-size: 24px;
  }
}
.outstanding-button__arrow {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 42px;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
}
@media (min-width: 769px) {
  .outstanding-button__arrow {
    width: 64px;
    padding: 8px;
  }
}
.outstanding-button__arrow img {
  width: 100%;
}

.marker-heading {
  position: relative;
  padding-left: 16px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
  font-style: italic;
  z-index: 0;
}
@media (min-width: 769px) {
  .marker-heading {
    padding: 1px 0 1px 22px;
    font-size: 36px;
  }
}
.marker-heading::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  border-radius: 3px;
  background-image: linear-gradient(180deg, #2BBFFF 0%, #003163 100%);
}
@media (min-width: 769px) {
  .marker-heading::before {
    width: 8px;
    border-radius: 8px;
  }
}
.marker-heading--small {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 769px) {
  .marker-heading--small {
    font-size: 34px;
    padding: 1px 0 1px 22px;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.blog-card:hover .blog-card__title {
  text-decoration: underline;
}
.blog-card__image {
  border-radius: 20px;
  overflow: hidden;
}
.blog-card__body {
  margin-top: 36px;
}
.blog-card__title {
  font-size: 24px;
  line-height: 1.333;
  font-weight: 500;
}
.blog-card__excerpt {
  margin-top: 18px;
}
.blog-card__foot {
  display: flex;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 24px;
}
.blog-card__category-item {
  padding: 1px 15px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  background: #00509D;
  color: #fff;
  border-radius: 12px;
}
@media (min-width: 769px) {
  .blog-card__category-item {
    padding-inline: 30px;
  }
}
.blog-card__date {
  margin-left: auto;
  font-size: 18px;
  font-weight: 500;
}

.page-title {
  display: flex;
  align-items: center;
  min-height: 82px;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  background: url(../assets/images/page-title-sp.jpg) top left/cover;
}
@media (min-width: 769px) {
  .page-title {
    min-height: 200px;
    font-size: 40px;
    background-image: url(../assets/images/page-title-pc.jpg);
  }
}
.page-title--news {
  background: url(../assets/images/page-title-news-sp.jpg) center left/cover;
}
@media (min-width: 769px) {
  .page-title--news {
    background-image: url(../assets/images/page-title-news-pc.jpg);
  }
}
.page-title--about {
  background: url(../assets/images/page-title-about-sp.jpg) center left/cover;
}
@media (min-width: 769px) {
  .page-title--about {
    background-image: url(../assets/images/page-title-about-pc.jpg);
  }
}
.page-title--company {
  background: url(../assets/images/page-title-company-sp.jpg) center left/cover;
}
@media (min-width: 769px) {
  .page-title--company {
    background-image: url(../assets/images/page-title-company-pc.jpg);
  }
}
.page-title--member {
  background: url(../assets/images/page-title-member-sp.jpg) center left/cover;
}
@media (min-width: 769px) {
  .page-title--member {
    background-image: url(../assets/images/page-title-member-pc.jpg);
  }
}
.page-title--service {
  background: url(../assets/images/page-title-service-sp.jpg) center left/cover;
}
@media (min-width: 769px) {
  .page-title--service {
    background-image: url(../assets/images/page-title-service-pc.jpg);
  }
}
.page-title--blog {
  background: url(../assets/images/page-title-blog-sp.jpg) center left/cover;
}
@media (min-width: 769px) {
  .page-title--blog {
    background-image: url(../assets/images/page-title-blog-pc.jpg);
  }
}
.page-title__inner {
  width: calc(var(--container-large, 1200px) + 40px);
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 24px;
}

.page-navigation {
  display: flex;
  justify-content: space-between;
  gap: 30px 12px;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media (min-width: 769px) {
  .page-navigation {
    margin-top: 80px;
  }
}
.page-navigation__prev-container, .page-navigation__next-container, .page-navigation__index-container a {
  width: 144px;
}
@media (min-width: 769px) {
  .page-navigation__prev-container, .page-navigation__next-container, .page-navigation__index-container a {
    width: 205px;
  }
}
.page-navigation__prev-container {
  order: 2;
}
@media (min-width: 769px) {
  .page-navigation__prev-container {
    order: unset;
  }
}
.page-navigation__next-container {
  order: 3;
}
@media (min-width: 769px) {
  .page-navigation__next-container {
    order: unset;
  }
}
.page-navigation__index-container {
  order: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 769px) {
  .page-navigation__index-container {
    order: unset;
    width: auto;
    margin: 0 auto;
  }
}

.arrow-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 20px;
  background-color: #00293B;
  color: #fff;
  border-radius: 22px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 769px) {
  .arrow-button {
    gap: 12px;
    padding: 5px 6px 5px 24px;
    border-radius: 25px;
  }
  .arrow-button:hover {
    opacity: 0.8;
  }
}
.arrow-button--left {
  flex-direction: row-reverse;
  padding: 4px 20px 4px 4px;
}
.arrow-button--left .arrow-button__arrow {
  transform: rotate(-180deg);
}
.arrow-button--up {
  flex-direction: row-reverse;
  padding: 4px 20px 4px 4px;
}
.arrow-button--up .arrow-button__arrow {
  transform: rotate(-90deg);
}
.arrow-button__label {
  flex: auto;
  display: flex;
  justify-content: center;
  font-size: 14px;
  line-height: 1.333;
  font-weight: 500;
}
@media (min-width: 769px) {
  .arrow-button__label {
    font-size: 20px;
  }
}
.arrow-button__arrow {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 32px;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
}
@media (min-width: 769px) {
  .arrow-button__arrow {
    width: 40px;
    padding: 8px;
  }
}
.arrow-button__arrow img {
  width: 100%;
}
.arrow-button__arrow svg {
  width: 100%;
  stroke: #00293B;
}

.site-header {
  position: relative;
  padding: 20px;
  background: #fff;
  z-index: 99;
}
@media (min-width: 769px) {
  .site-header {
    padding: 26px 20px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--container-large, 1200px);
}
.site-header__logo {
  flex: none;
  width: 83px;
}
@media (min-width: 769px) {
  .site-header__logo {
    width: 150px;
  }
}
.site-header__logo img {
  width: 100%;
}
.site-header__logo-link {
  display: block;
  transition: opacity 0.3s;
}
@media (min-width: 769px) {
  .site-header__logo-link:hover {
    opacity: 0.7;
  }
}

.header-hamburger-menu {
  position: relative;
}
.header-hamburger-menu__button {
  position: relative;
}
.header-hamburger-menu__contents {
  position: absolute;
  right: 0;
  top: 40px;
}

.header-link-note {
  display: block;
  margin-top: 12px;
}
@media (min-width: 769px) {
  .header-link-note {
    display: none;
  }
}

.site-header {
  position: relative;
}

.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
}
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #666;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger__line:nth-child(1) {
  top: 5px;
}
.hamburger__line:nth-child(2) {
  top: 19px;
}
.hamburger__line:nth-child(3) {
  top: 33px;
}
.hamburger {
  /* ===== メニューOPEN時（×に変形） ===== */
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(1) {
  top: 19px;
  width: 36px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(3) {
  top: 19px;
  width: 36px;
  transform: translateX(-50%) rotate(-45deg);
}

.global-nav__link {
  display: block;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
}
.global-nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 1px;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .global-nav__item {
    font-size: 18px;
  }
}
.global-nav__sub {
  list-style: none;
}
.global-nav__sub .global-nav__link {
  padding: 4px 0;
}
@media (min-width: 769px) {
  .global-nav__sub .global-nav__link {
    padding: 3px 0;
  }
}

/* ===== SP ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger-contents {
    position: fixed;
    top: calc(65px + var(--wp-admin--admin-bar--height, 0px));
    overflow: auto;
    max-height: calc(100% - (65px + var(--wp-admin--admin-bar--height, 0px)));
    right: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    padding: 24px 30px 30px 20px;
    border-radius: 10px;
    background-color: rgba(242, 242, 242, 0.95);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  }
  .hamburger-contents[aria-hidden=false] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .global-nav__sub {
    display: block;
    padding-left: 36px;
  }
  .global-nav__item.has-children > .global-nav__link {
    padding-bottom: 0;
  }
  .global-nav__list:first-child > .global-nav__item:first-child > .global-nav__link {
    padding-top: 0;
  }
}
/* ===== PC ===== */
@media (min-width: 769px) {
  .hamburger-contents {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .global-nav__link {
    padding: 10px 10px 20px;
  }
  .global-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
  }
  .global-nav__item {
    position: relative;
  }
  .global-nav__item.has-children a::after {
    content: "+";
  }
  .global-nav__item::before {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 8px;
    border-radius: 4px;
    background-color: #D9D9D9;
    transition: background 0.3s;
    pointer-events: none;
  }
  .global-nav__item.is-active::before, .global-nav__item:hover::before {
    background-image: linear-gradient(90deg, rgb(0, 49, 99) 0%, rgb(43, 191, 255) 100%);
  }
  .global-nav__sub {
    display: none;
    position: absolute;
    left: 10px;
    padding: 16px 20px;
    min-width: 260px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    z-index: 1;
  }
  .global-nav__sub .global-nav__link::after {
    display: none;
  }
  .global-nav__sub .global-nav__item {
    font-size: 18px;
  }
  .global-nav__sub .global-nav__item::before {
    display: none;
  }
  .global-nav__sub .global-nav__item:nth-child(n+2) {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #bababa;
  }
  .global-nav__sub .global-nav__link:hover {
    color: #00509D;
    text-decoration: underline;
  }
  .global-nav .has-children {
    position: relative;
  }
  .global-nav .has-children:hover > .global-nav__sub, .global-nav .has-children:focus-within > .global-nav__sub {
    display: block;
  }
}
.fixed-banner-note {
  display: none;
}
@media (min-width: 769px) {
  .fixed-banner-note {
    display: block;
    position: fixed;
    top: 200px;
    right: 0;
    width: 75px;
    transition: opacity 0.8s;
    z-index: 10;
  }
  .fixed-banner-note:hover {
    opacity: 0.7;
  }
}

.breadcrumbs {
  padding: 15px 0;
  font-size: 14px;
  line-height: 1.5;
  background-color: #F0F0F0;
  color: #333;
}
@media (min-width: 769px) {
  .breadcrumbs {
    font-size: 16px;
  }
}
.breadcrumbs a {
  color: inherit;
}
.breadcrumbs__inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: calc(var(--container-large, 1200px) + 40px);
}
.breadcrumbs .aioseo-breadcrumbs {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.breadcrumbs .aioseo-breadcrumb-separator {
  margin-inline: 5px;
}

.breadcrumb-list {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.breadcrumb-list__item {
  display: inline;
}
.breadcrumb-list__item:not(:first-child)::before {
  content: ">";
  margin-inline: 10px;
}

.site-footer {
  background-image: linear-gradient(90deg, rgb(0, 49, 99) 0%, rgb(43, 191, 255) 100%);
  color: white;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 100%;
  max-width: calc(var(--container-large, 1200px) + 40px);
  margin-inline: auto;
  padding: 20px;
}
@media (min-width: 769px) {
  .site-footer__inner {
    grid-template-columns: 1fr 333px;
    gap: 20px;
    padding-top: 36px;
    padding-bottom: 55px;
  }
}
.site-footer__banner {
  width: 335px;
  max-width: 100%;
}
@media (min-width: 769px) {
  .site-footer__banner {
    grid-row-start: 2;
    grid-column-start: 2;
  }
}
@media (min-width: 769px) {
  .site-footer__nav {
    grid-column: 1/3;
  }
}
.site-footer__nav:not(:first-child) {
  margin-top: 20px;
}
@media (min-width: 769px) {
  .site-footer__nav:not(:first-child) {
    margin-top: 0;
  }
}
.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding: 0;
  font-size: 14px;
  list-style: none;
}
@media (min-width: 769px) {
  .site-footer__nav-list {
    font-size: 16px;
  }
}
.site-footer__nav-link {
  color: inherit;
  text-decoration: none;
}
.site-footer__copy {
  margin-top: 20px;
  font-size: 14px;
}
@media (min-width: 769px) {
  .site-footer__copy {
    align-self: center;
    margin: 0;
    font-size: 16px;
  }
}
.site-footer__copy small {
  font-size: inherit;
}

.footer-contact {
  position: relative;
  padding: 16px 20px 20px;
  background: #003163;
  color: #fff;
}
@media (min-width: 769px) {
  .footer-contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer-contact__wave {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: 18px;
  background: url(../assets/images/footer-contact-wave.svg) bottom left/auto 100% repeat-x;
}
@media (min-width: 769px) {
  .footer-contact__wave {
    height: 57px;
  }
}
.footer-contact__inner {
  max-width: var(--container-large, 1200px);
  margin-inline: auto;
  padding: 20px 20px 30px;
  border-radius: 10px;
  background-color: #002347;
}
@media (min-width: 769px) {
  .footer-contact__inner {
    padding: 30px 30px 50px 30px;
    border-radius: 20px;
  }
}
.footer-contact__body {
  margin-top: 15px;
}
@media (min-width: 769px) {
  .footer-contact__body {
    display: flex;
    align-items: flex-end;
    gap: 3.333%;
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .footer-contact__text {
    width: 50%;
  }
}
.footer-contact__link {
  margin-top: 24px;
}
@media (min-width: 769px) {
  .footer-contact__link {
    flex: none;
    width: 390px;
    margin: 0 auto;
  }
}

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