@charset "utf-8";

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100svh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
  cursor: pointer;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Figtree", sans-serif;
  --color-main: #124897;
  --color-main-dark: #143867;
  --color-white: #fff;
  --color-black: #232323;
  --color-gray: #F3F3F3;
  --color-gray-light: #F9F9F9;
  --color-gray-border: #ddd;
  --color-gray-border-light: #c2c2c2;
  --color-gray-border-lighter: #DCDCDC;
  --color-gray-text: #6a6a6a;
  --color-gray-text-light: #8d8d8d;
  --color-gray-bg: #F5F5F5;
  --transition-cubic: cubic-bezier(0.37, 0.88, 0.45, 0.97);
  --header-height: 86px;
  --aside-width: 260px;
  --z-header: 100;
  --z-page-top: 80;
  --inner-width: 1112px;
  --padding-pc: 40px;
  --padding-sp: 24px;
}
html {
  font-family: var(--font-base);
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  color: var(--color-black);
}

body.is-menu-open {
  overflow: clip;
}

a {
  transition: opacity 0.4s var(--transition-cubic);
}
sup {
  font-size: 0.8em;
  vertical-align: super;
}

svg {
  transition-property: fill, stroke;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
  vertical-align: middle;
}

.footer__body {
  background: var(--color-gray-light);
  padding: 120px 0 100px;
}

.footer__container {
  display: flex;
  gap: 60px;
}

.footer__nav-wrap {
  margin-top: -12px;
  margin-left: auto;
  display: flex;
  gap: 107px;
}

.footer__bottom {
  padding: 18px 0;
  background: var(--color-main);
  color: var(--color-white);
}

.footer__copyright {
  font-family: var(--font-en);
  font-size: 12px;
  text-align: center;
}

@keyframes headerFadin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: #fff;
  color: var(--color-black);
  --icon-search-fill: var(--color-black);
  --icon-link-arrow-stroke: var(--color-black);
  transition: color 0.2s var(--transition-cubic);
}

.home .header {
  position: fixed;
  background: transparent;
  color: var(--color-white);
  --icon-search-fill: var(--color-white);
  --icon-link-arrow-stroke: var(--color-white);
}

.home .header::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(var(--header-height) + 27px);
  background: linear-gradient(to bottom, rgb(20, 56, 103) 0%, rgba(20, 56, 103, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.home .header.is-fixed::before {
  display: none;
}

.header__inner {
  padding-top: 17px;
  padding-right: var(--padding-pc);
  padding-left: var(--padding-pc);
}

.header__contents {
  display: flex;
  align-items: center;
}

.header__hamburger {
  display: none;
}

.header.is-fixed {
  position: fixed;
  animation: headerFadin 0.5s var(--transition-cubic) forwards;
  background: #fff;
  color: var(--color-black);
  --icon-search-fill: var(--color-black);
  --icon-link-arrow-stroke: var(--color-black);
}

.header__logo {
  width: 206px;
  color: var(--color-main);
}

.home .header .header__logo {
  color: var(--color-white);
}

.home .header.is-fixed .header__logo,
.home.is-menu-open .header__logo,
.is-menu-open .header__logo {
  color: var(--color-main);
}

.header__nav {
  margin-left: auto;
}

.header__button {
  margin-left: 32px;
}

.header__button .c-button--cta {
  min-width: 202px;
}

.header__button .c-button {
  background-color: var(--color-main);
  color: var(--color-white);
  border: 1px solid var(--color-main);
}

.header__button .c-button:hover,
.header__button .c-button:focus {
  background-color: var(--color-white);
  border-color: var(--color-main);
  color: var(--color-main);
}

.home .header:not(.is-fixed) .header__button .c-button {
  background-color: var(--color-white);
  color: var(--color-main);
  border: 1px solid var(--color-main);
}

.home .header:not(.is-fixed) .header__button .c-button:hover,
.home .header:not(.is-fixed) .header__button .c-button:focus {
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
}
.header:has(.nav__mega-menu.is-open) .header__logo-img.--normal,
.header:has(.nav__item--parent.is-open) .header__logo-img.--normal {
  opacity: 0;
}

.header:has(.nav__mega-menu.is-open) .header__logo-img.--black,
.header:has(.nav__item--parent.is-open) .header__logo-img.--black {
  opacity: 1;
}

.inner {
  width: 100%;
  max-width: calc(var(--inner-width) + var(--padding-pc) * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--padding-pc);
  padding-left: var(--padding-pc);
}
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section__head {
  display: flex;
  align-items: center;
}

.section__link {
  margin-left: auto;
}

.section__contents {
  margin-top: 40px;
}
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 344px;
  min-height: 48px;
  padding: 18px 32px;
  background-color: var(--color-main);
  border-radius: 999px;
  border: 1px solid var(--color-main);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  transition-property: color, background, border-color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
  position: relative;
  cursor: pointer;
}

.c-button:hover,
.c-button:focus {
  background-color: var(--color-white);
  border-color: var(--color-main);
  color: var(--color-main);
  opacity: 1;
}

.c-button--white {
  background-color: var(--color-white);
  color: var(--color-main);
  border: 1px solid var(--color-white);
}

.c-button.c-button--white-bordered {
  border: 1px solid var(--color-main);
}

.c-button--white:hover,
.c-button--white:focus {
  background-color: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}

.c-button--cta {
  border-radius: 6px;
  gap: 8px;
  padding: 12px 24px;
}

.c-button__text {
  display: block;
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-button__icon {
  width: 21px;
  aspect-ratio: 21/15;
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
}

.c-button__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-button--cta .c-button__icon {
  position: relative;
  right: 0;
  translate: 0 0;
}

.c-card {
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 6px;
  padding: 20px 20px 30px;
}

.c-card__img {
  width: 100%;
  aspect-ratio: 304/180;
  overflow: hidden;
}

.c-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-property: scale;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-card__title {
  margin-top: 13px;
  font-size: 18px;
  line-height: 1.7222222222;
  font-weight: 500;
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.c-card__tags,
.c-card__hash-tags {
  margin-top: 14px;
}

.c-card__date {
  margin-top: 16px;
  display: block;
  font-size: 14px;
  color: var(--color-gray-text);
}
/* c-card--archive */
.c-card--archive {
  display: grid;
  grid-template-columns: min(300px, 39.4%) 1fr;
  align-items: stretch;
  gap: 20px;
  padding: 25px;
  border: 1px solid var(--color-gray-border);
  border-radius: 6px;
}

.c-card--archive .c-card__img {
  width: 100%;
  aspect-ratio: 300/180;
}

.c-card--archive .c-card__contents {
  display: flex;
  flex-direction: column;
}

.c-card--archive .c-card__title {
  margin-top: -0.4em;
}

.c-card--archive .c-card__tags {
  margin-top: 16px;
}

.c-card--archive .c-card__hash-tags {
  margin-top: 12px;
}

.c-card--archive .c-card__date {
  margin-top: auto;
  padding-top: 8px;
  margin-bottom: 3px;
}

.c-hash-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.7333333333;
  color: var(--color-gray-text);
}

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-main);
  font-weight: 500;
}

.c-link--white {
  color: var(--color-white);
}
.c-link__text {
  display: inline-block;
  font-size: 18px;
  padding: 5px 0;
  position: relative;
}
.c-link__textafter {
  content: "";
  width: 0%;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transition-property: width;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-link__icon {
  width: 31px;
  aspect-ratio: 31/27;
}

.c-link__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-link--reverse {
  flex-direction: row-reverse;
}
.c-link--reverse .c-link__icon svg {
  transform: scaleX(-1);
}

.c-nav-list__link {
  display: inline-block;
  padding: 9px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
  text-align: left;
}

.c-nav-list__link,
.c-nav-list__sub-link {
  position: relative;
  transition-property: color, background;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

a.c-nav-list__linkafter,
a.c-nav-list__sub-linkafter {
  content: "";
  width: 0%;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 6px;
  left: 0;
  transition-property: width;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-nav-list__sub-list-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition-property: grid-template-rows;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-nav-list__sub-list-wrap.is-expanded {
  grid-template-rows: 1fr;
}

.c-nav-list__sub-list {
  padding-left: 20px;
}

.c-nav-list__sub-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4285714286;
  padding: 8px 0;
  color: var(--color-black);
}

.c-news-box {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 6px;
  background: var(--color-white);
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-news-box__date {
  font-size: 16px;
}

.c-news-box__tag {
  text-align: center;
}

.c-news-box__title {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-news-item {
  min-height: 72px;
  display: grid;
  grid-template-columns: 125px auto 1fr auto;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-gray-border-light);
  background: var(--color-white);
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-news-item::after {
  content: "";
  width: 19px;
  aspect-ratio: 18.454/15.102;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18.454" height="15.102" viewBox="0 0 18.454 15.102"><path id="合体_8" data-name="合体 8" d="M6439.343,20278l6.1-5.7H6430v-1.5h15.454l-6.109-5.7,1.023-1.1,8.087,7.549-8.087,7.553Z" transform="translate(-6429.999 -20263.998)" fill="%23232323"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  translate: -4px 0;
  transition-property: translate, background-image;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.c-news-item__date {
  margin-top: 1px;
  font-size: 16px;
}

.c-news-item__tag {
  margin-top: 1px;
}

.c-news-item__title {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-other-nav {
  padding-left: 26px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.c-other-nav__link {
  font-size: 14px;
  line-height: 1.4285714286;
}

.c-other-nav__link--outer {
  display: flex;
  gap: 8px;
}

.c-other-nav__link--outer .icon svg {
  width: 15px;
  aspect-ratio: 15/15;
}

.sp-menu .c-other-nav {
  justify-content: center;
}
.c-select {
  display: inline-block;
  min-width: 230px;
  height: 48px;
  position: relative;
}

.c-select__wrapper {
  border: 1px solid var(--color-gray-border-light);
  border-radius: 6px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.c-select__trigger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 500;
  color: var(--color-black);
}

.c-select__trigger-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-select__trigger-text::after {
  content: "";
  width: 10px;
  aspect-ratio: 10/6;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10.483" height="6" viewBox="0 0 10.483 6"><path d="M94.964,0l-.758.758,4.483,4.483L94.205,9.725l.758.758,5.242-5.242Z" transform="translate(10.483 -94.205) rotate(90)" fill="%23232323"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-select.is-open .c-select__trigger-text::after {
  transform: rotate(180deg);
}

.c-select__body {
  display: grid;
  grid-template-rows: 0fr;
  transition-property: grid-template-rows;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-select.is-open .c-select__body {
  grid-template-rows: 1fr;
}

.c-select__body-inner {
  height: 100%;
  overflow: hidden;
}

.c-select__links {
  padding: 6px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.c-select__link {
  font-size: 16px;
  line-height: 1.6875;
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-select__link:hover {
  opacity: 1;
  color: var(--color-main);
}

.c-service-box {
  display: block;
  width: 100%;
  aspect-ratio: 536/300;
  padding: 24px;
  border-radius: 6px;
  overflow: hidden;
  color: var(--color-white);
  position: relative;
  z-index: 0;
}

.c-service-box__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-service-box__title {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.c-service-box__title .icon {
  margin-left: auto;
  width: 52px;
  aspect-ratio: 31/27;
  display: block;
}

.c-service-box__title .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-social {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 4px 21px 4px 14px;
  color: var(--color-white);
  font-size: 12px;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-social::before {
  content: "";
  width: 100%;
  aspect-ratio: 25/25;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-social--facebook {
  background-color: #0866FF;
}

.c-social--facebook::before {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAC2ElEQVR42u2ZPWgUQRiG57zsrDbaaK2QaIxokUYEESy0sBILgxZGcjezEPEHQqJGhKCNCDGNoKmMJAgKamMhKQyYQCCkivEvsRKNhdhcIDlzufteb9xiIbnl9md294p94K3uYO7Zb7+ZvW9ZSkpKSkpKw3ARewyJHJcYqWaumoIpUVbhEsumxDwXGDUEJOtEM2s0mgSOmBJvqqlstQAvMSWIC4w35XGUMWRYoqgKCLxXPyxMuMBUYhXKCpw2JdYCC2yu0LrRhY5Yq2MI3DElKLTAZhkyLAwqmVgk1KJRxhAYivx2ClKJnVdAvS9QeTsH+vgT9GUJNLkAGp4AnXkIqlkZiQuRNbbfnmi5Dvr6C1SugODC9z+1L4xpocTzaGO68bs7Hb4LKq45An5FVLjEjOoXreeEH4ldV0G/C7ZEGBGVbB4nmS7UYedH5NxjW0KHCJd4p7M3Kn5EJj67i3xaAg2Ng649A10eA1lPQfW2ZJZDa/jekMj5kdjeDSqVa4tMfwPtuAQKcPL3sLBwiRE/i+7uda/GsXuggAflKx0ic34W3d/vLtLaH1hkQYdIwc+ibbfcRVpuBBSxsKJjxyonLiJBsYiMTYOKJTt/S+4i6rPihjyZRCUWES6xXG+h5zMITPeoJ5FVHRWZj1Lk4G2QB5HF8BURGI1KpLAK2mZ5Enmt42FRRiXy4QfI44HYx0LTieZ6/0HU7XH8vp3zwyC40PFIfcdJ+4CnahDvwgGmAzXtSGD7dQYTulAjm6REsl04xfSBjLoycYtwiVm9gwinV9bjElEHsWHhEIsCnsdZ1XyRijhjIcGiAxlDYDBqESOHYeeWilImjwd2ZbSJOJWwJbawuFBzJzWy0SLi9IRIZKCt5k5qZBNWhAvM2o2dKMhkJU6oaYcpQZ5EnNcKU/Y5gQxrKAT2tQ+gB8BLAAsAVgAQ7KzuvYlF9QDIBfr+P3akpKSkpKQ0CP8AMvtWBEIB4ukAAAAASUVORK5CYII=");
}

.c-social--x {
  background-color: #000000;
}

.c-social--x::before {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAQAAAC0NkA6AAAC8ElEQVR42u3Vb2hVdRzH8XvvZpvTsYzUlnPDMiiU2AqbRSCWhA8S+mNaYX9EiIqCYVGGRBERFA0xWjEyCAtGhv2HmJQaadofYpnkijHnbLNm09zutnt19766HO6DYa24955n3vd58v2d8+F8OOfz+32/kSJFipzr+FQKAPS4QXRyvfM1S+iyNBeTBgek9doZXJ3O2K5uUvUUTf7Qa6VYLiZTPOS4AxrVqXOjHqdsUDqJ+lZHHLM2eJ4LZnlHwmZlmTrmQXF9Fv+r8npHDdmgIp9cGhx0wj1KMvUMb0r63sVnaWIW6ZD0igvyCz9mjRO+tiBTRzX6TsqLKidqXOFjCR+pjeSLci+L26w8SGmtYb3uUDJhT71lxE7zI4Vgjt2G3B7UZd6Qsssl2WelNkn6UUOkMMSscNQRVwerC+2V0Oy8TD3N007rdLOSSKGo1CzpQzXBaoVug+4y1f1+d9w65ZEwMM+3hmyU2aKme05ct8ccMqLJ1EhYWGRAj5tEg5TapaWNeTYSLh53Srs5Qb1En7TPVYdtUq3NiE3BZi7xgCEHXRW2SdQSP4tbnT0/rZLeVRa2TYkmI35QH6wut8cZTygN2+YiHRJazQwO4t0GHLNcLEyLUqv1SxuwLlhXec24z8wPN5OfpOx3UpdLg3s1OsQ9oyIsk4W+NGarGi0Sdpsd3L1Orz7Lw7GY6wOj3lMdTJl9Up43PejMTzppj9rCLWZrk/CF+mw2dxrV4zaZyNXaJmFLgb/MNK8b96vFE/J5SdpX2fPfqMuY+0QLGVuPGPSbWya+RJUdxrwQtPyYh8XtU5+njahVDutz79kzwzK/+NMqsaAzt4prUZWfyTLd/rL+nzNDhY1GHMrmVGe/QWvy+YprdEloUTnJdthl3DYzA+1K/fotyNVioXZJ75s7qWapPoPWm2WGebZI+kR1bn3qbaN2uOw/W+ajhh22XZs2e5027KkcZqVXjfrGlf+jqrLVuLTsJaXTtZEiRYqc4/wNkDOG6CGscFoAAAAASUVORK5CYII=");
}

.c-social--hatena {
  background-color: #00A4DE;
}

.c-social--hatena::before {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAEQklEQVR4Ae2aA7TrWBSG86yxzcWxbdu2bS6MPQtje675bNs26le3V3XSpP/snXXR9uRZyb2Ttf4y2c139vnPabKPdPUrN3QKdW4QCegm/bl2f6nUfodU4hgulTnW02uZlKPX2CnSf8uu0LOPNEoqsd0j/b70QOn997tvFohUU9ND+nftDVKJfTwFSHFQU6jUkaHzmSz9Y7tVqkEPEaQYosR1f2sGNA5gLtm11gw9VgxT0J04EwxBgskVph5zu/Q+ugsg7InW7qRZAIQy45gm/bXucAGEjS14wtSypwnmYQGkdXSCtWQfI4JYwhvCSOYz6lqyBTOiGIHkrJcRe86oa8GK6togPcsduHaiH28tiOLthYXiz94gvTIvgmdnR3D/9BAuH+fHsYM96FOx4ZgnDV+PN4rinUyf7VCQfpVO/LGuBaqWg5YTpZKy9J2s5pDMaoikVSxpzODrVc04erDbMOajM8PIqIVxnpgV3vEgfxII/9iWbLz/YE8CB9S6hJiPEYiiFcZ70qwgvHGrvz4/am4QRdMQk1XEFFV/ndsA6PRQCr3KTQwy2pfEWSO9OH6YBxeO8eHL5U2IK5oA4ogp2LfGaV6QWlcce1Z3nGAPavXf1rYIICubZexeZSEQ1hvkh/yNu9vfthi6mdkj9e44Dqhz6fPFAGrxowZ5dD+0bTwsL23M4PSRXnObfU2LjJ/WNOPblc0oscd47tD3yZEaMipqKGMXj/XxhGpuED7hfOV/7k9lUeWM4/zRPvaOtecRHSiZxUMzQuhuZpCUqiFILR8ghdJZxBTjuYT3uXiMz7wg4/xJ8oAfp4/w4uxRXlw/MYAfVzcjoWhCZv6i43tXWGj45fmi0hkTMjM3msZ+ef+5zqcM/UJzzu/rOsSTqmlAuNW/WN4ItWjfFc0yDq5zG8R2oD8p/zNTgOxJGalzx4WMzKOM7J+XER6S75kWxEhfAiO9Sdw9Ncij264BmRpK4bYpQVw9IaD745EZYR0urWqGs3ubR7qRbqfj8v+X8TF3Eky3XQEiqxoaMyoaSE2yyidjOGrxPpeP8xXE+25VsxDvj3Ux9K0w6fUID8mvzosUtHRfivf1ShHkVzJ/n4qdc6krzOZaq/g7hcRZ4ZP3JrOYHEzhwekhw1a+bJwftpisHyOTnHGFs7bjbz7cMjmAj5Y24uMi8WcfLGnEu4sb8NbCKJ6fE9GNe84or36J230jMXmf1xdE+QqSX+94s7O669cbG1d3VquZtyQu6//7Wp3wlqld6Sw3sX0WzEjACGSU5UBKHONFEK5jcwnYOiAZqcT+uAjCxXiuY3MJ2AImJ4hZ9PpIAYRXFHAx3gJeYZCoVGq7V7qzpscGFgygBxfjuY5N0kyZCYYosT9rtGBAgOFiPNexuQRsMk/M4kxsaAmHIF5RwMV4rmNzCZirpzxm76JFNQEendjY7AnuTl1hmZP19R9vzf1c/J0ilAAAAABJRU5ErkJggg==");
}
.c-sp-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
  border-bottom: 1px solid var(--color-gray-border-lighter);
  color: var(--color-white);
}

.c-sp-nav__item--has-child .c-sp-nav__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.c-sp-nav__icon {
  width: 20px;
  aspect-ratio: 1/1;
  position: relative;
  transition: none;
  display: inline-block;
}

.c-sp-nav__icon::before,
.c-sp-nav__icon::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: #ffffff;
  transition-property: opacity, rotate;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-sp-nav__icon::before {
  rotate: 0deg;
}

.c-sp-nav__icon::after {
  rotate: 90deg;
}

.c-sp-nav__link.is-expanded .c-sp-nav__icon::after {
  opacity: 0;
  rotate: 180deg;
}

.c-sp-nav__sub-list {
  display: grid;
  grid-template-rows: 0fr;
  transition-property: grid-template-rows, margin-top, margin-bottom;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.c-sp-nav__sub-list.is-expanded {
  grid-template-rows: 1fr;
  margin-top: 18px;
  margin-bottom: 10px;
}

.c-sp-nav__sub-list-contents {
  overflow: hidden;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-sp-nav__sub-link {
  display: block;
}

/* h2相当のサブタイトル */
.c-subtitle--h2, .wp-contents h2 {
  font-size: 36px;
  line-height: 1.4411764706;
  font-weight: 500;
}

.c-subtitle--h2::after, .wp-contents h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(to right, var(--color-main) 0%, var(--color-main) 23.2%, var(--color-gray-border-light) 23.2%, var(--color-gray-border-light) 100%);
}

/* h3相当のサブタイトル */
.c-subtitle--h3, .wp-contents h3 {
  padding-left: 18px;
  padding-bottom: 8px;
  font-size: 28px;
  line-height: 1.4230769231;
  font-weight: 500;
  position: relative;
}

.c-subtitle--h3::before, .wp-contents h3::before {
  content: "";
  width: 4px;
  display: block;
  background: var(--color-main);
  position: absolute;
  top: 0.2em;
  left: 0;
  bottom: 0;
}

.c-tag {
  display: inline-block;
  min-height: 23px;
  min-width: 98px;
  padding: 0 12px;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 999px;
  font-size: 12px;
  line-height: 23px;
  text-align: center;
  color: var(--color-white);
  transition-property: color, background;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.c-title {
  font-size: 30px;
  font-weight: 600;
  position: relative;
}

.c-title[data-en]::after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 4px;
  left: 0;
  background-color: var(--color-main);
  border-radius: 50%;
}

.c-title[data-en]::before {
  content: attr(data-en);
  display: block;
  padding-left: 18px;
  font-size: 18px;
  font-weight: normal;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--color-main);
}

.c-title--white {
  color: var(--color-white);
}

.c-title--white[data-en]::before {
  color: var(--color-white);
}

.c-title--white[data-en]::after {
  background-color: var(--color-white);
}

.c-title--large {
  font-size: 48px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-links > * {
  display: grid;
  place-content: center;
  width: 44px;
  aspect-ratio: 1/1;
}

.page-numbers:not(.dots, .prev, .next) {
  border: 1px solid var(--color-gray-border-light);
  border-radius: 6px;
  font-size: 16px;
  transition-property: background;
  transition-duration: color;
  transition-timing-function: border;
}

.page-numbers.current {
  background: var(--color-main);
  color: #fff;
  border: 1px solid var(--color-main);
}
.page-numbers.dots {
  font-size: 20px;
}

.page-numbers.prev,
.page-numbers.next {
  position: relative;
  border-radius: 6px;
  transition-property: background;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.page-numbers.prev::after,
.page-numbers.next::after {
  content: "";
  width: 7px;
  aspect-ratio: 7/13;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="7.591" height="13.061" viewBox="0 0 7.591 13.061"><path d="M583.735,3803.205l6,6-6,6" transform="translate(-583.204 -3802.675)" fill="none" stroke="%23232323" stroke-width="1.5"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.page-numbers.prev::after {
  rotate: 180deg;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.article__date {
  color: var(--color-gray-text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

h2.article__title {
  margin-top: 8px;
}
.aside {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.aside__title {
  font-size: 18px;
  line-height: 1.7222222222;
  font-weight: 500;
}

.aside__container:first-child .aside__title {
  margin-top: -0.5em;
}

.aside__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 11px;
  background: linear-gradient(to right, var(--color-main) 0%, var(--color-main) 46.1%, var(--color-gray-border-light) 46.1%, var(--color-gray-border-light) 100%);
}

.aside__contetns {
  margin-top: 20px;
}

.aside__contetns:has(.side-monthly-list) {
  margin-top: 14px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-list__item {
  container: layout inline-size;
}

.blog-slider {
  position: relative;
}

.blog-slider .c-card {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.blog-slider .blog-swiper {
  padding: 12px;
  margin-top: -12px;
  margin-left: -12px;
  margin-right: calc(50% - 50vw - 40px);
}

.blog-slider .swiper-slide {
  width: 344px;
}

.blog-slider .swiper-nav-wrap {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.blog-slider .swiper-pagination {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.blog-slider .swiper-button-prev,
.blog-slider .swiper-button-next {
  width: auto;
  height: auto;
  position: relative;
  left: initial;
  right: initial;
  z-index: 0;
}

.blog-slider .swiper-button-prev {
  rotate: 180deg;
}

.blog-slider .swiper-button-prev::before,
.blog-slider .swiper-button-next::before {
  content: "";
  width: 100%;
  height: 10px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.blog-slider .swiper-button-prev::after,
.blog-slider .swiper-button-next::after {
  content: "";
  width: 147.0588235294%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% + 15px) -50%;
  z-index: -2;
  transition-property: scale;
  transition-duration: 0.3s;
  transition-timing-function: var(--transition-cubic);
}
.blog-slider .swiper-button-prev .arrow,
.blog-slider .swiper-button-next .arrow {
  width: 34px;
  aspect-ratio: 34/14;
  display: block;
  color: var(--color-main);
}

.blog-slider .swiper-button-prev .arrow svg,
.blog-slider .swiper-button-next .arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: initial;
}

.blog-slider .swiper-pagination-bullet-active {
  background: var(--color-main);
}

.blog {
  overflow-x: hidden;
}

.breadcrumb__list {
  --item-gap: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px var(--item-gap);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: var(--item-gap);
  font-size: 14px;
  line-height: 1.4285714286;
}

.breadcrumb__item::after {
  content: "";
  width: 6px;
  aspect-ratio: 6.061/10.707;
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6.061" height="10.707" viewBox="0 0 6.061 10.707"><path id="パス_236" data-name="パス 236" d="M584.088,3813.559l-.707-.707,4.646-4.646-4.646-4.646.707-.707,5.354,5.354Z" transform="translate(-583.381 -3802.852)" fill="%237F7F7F"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.breadcrumb__item:last-child::after {
  display: none;
}

.breadcrumb__item a {
  color: var(--color-main);
  padding: 10px 0;
}
.company__container {
  display: grid;
  grid-template-columns: 1fr 39.5%;
  gap: 40px;
  align-items: center;
}

.company__contents {
  padding-top: 20px;
}

.company__lead {
  font-size: 36px;
  line-height: 1.6944444444;
  font-weight: 600;
}

.company__texts {
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.7222222222;
}

.company__img {
  width: 100%;
  aspect-ratio: 440/340;
  border-radius: 6px;
  overflow: hidden;
}

.company__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-info__logo {
  width: 184px;
  color: var(--color-main);
}

.footer-info__name {
  font-size: 12px;
  margin-top: 4px;
}

.footer-info__address {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.7333333333;
  font-style: normal;
}

.footer-info__button {
  margin-top: 30px;
  min-width: 330px;
}

.hamburger {
  width: 44px;
  aspect-ratio: 1/1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: currentColor;
}

.header.is-fixed .hamburger,
body.is-menu-open .hamburger {
  color: var(--color-black);
}

.hamburger span {
  display: block;
  width: 59.0909090909%;
  height: 2px;
  background-color: currentColor;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
  transform-origin: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(2px);
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.header-button {
  width: 100%;
  max-width: 200px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-sub);
  border: 1px solid var(--color-sub);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.4s var(--transition-cubic), color 0.4s var(--transition-cubic);
}
.header-button .icon svg {
  display: block;
  aspect-ratio: 1/1;
  margin-top: 2px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-switch__button {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4285714286;
  opacity: 0.6;
  color: currentColor;
  transition: opacity 0.4s var(--transition-cubic);
}

.lang-switch__button.--current {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.logo {
  display: block;
  aspect-ratio: 189/34;
}

.logo__link,
.logo__icon {
  display: block;
  width: 100%;
  height: 100%;
}

.logo__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mv {
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./images/bg_mv.jpg");
}

.mv__contents {
  padding-left: var(--padding-pc);
  padding-bottom: 105px;
  color: var(--color-white);
}

.mv__title {
  font-size: 80px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--font-en);
}

.mv__lead {
  margin-top: 4px;
  font-size: 32px;
  line-height: 1.438;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.mv__text {
  margin-top: 58px;
  font-size: 18px;
  line-height: 1.7222222222;
  font-weight: 600;
}

.mv__images {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.mv__images picture,
.mv__images img,
.mv__images video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__box01 {
  position: absolute;
  top: 0;
  right: 0;
  width: min(652px, 100% - 884px);
  height: 81.25%;
}

.mv__box02 {
  position: absolute;
  top: 0;
  right: min(652px, 100% - 884px);
  width: min(570px, 37.109375%);
  height: 42.5%;
}

.mv__box03 {
  position: absolute;
  bottom: 6.5%;
  right: 0;
  width: min(652px, 100% - 884px);
  height: 22.5%;
}

.mv__box03-inner {
  margin-left: 8.6153846154%;
  width: 80%;
  max-width: 344px;
  height: 100%;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__text {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: currentColor;
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.nav__textafter {
  content: "";
  width: 0%;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 6px;
  left: 0;
  transition-property: width;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.nav__item--parent {
  position: relative;
}

.nav__item--parent .nav__text {
  margin-right: 19px;
}

.nav__item--parent .nav__text::before {
  content: "";
  width: 11px;
  aspect-ratio: 10/6;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10.483" height="6" viewBox="0 0 10.483 6"><path d="M94.964,0l-.758.758,4.483,4.483L94.205,9.725l.758.758,5.242-5.242Z" transform="translate(10.483 -94.205) rotate(90)" fill="%23ffffff"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -8px;
  translate: 100% -50%;
  transition-property: rotate, background-image;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

body.home .header.is-fixed .nav__item--parent .nav__text::before,
body:not(.home) .header .nav__item--parent .nav__text::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10.483" height="6" viewBox="0 0 10.483 6"><path d="M94.964,0l-.758.758,4.483,4.483L94.205,9.725l.758.758,5.242-5.242Z" transform="translate(10.483 -94.205) rotate(90)" fill="currentColor"/></svg>');
}

.nav__sub-menu {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 50%;
  bottom: -6px;
  translate: -50% 100%;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.nav__item--parent.is-open .nav__text {
  color: currentColor;
}

.nav__item--parent.is-open .nav__text::before {
  rotate: 180deg;
}

.nav__item--parent.is-open .nav__sub-menu {
  opacity: 1;
  visibility: visible;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./images/bg_blog_pc.jpg");
}

.page-container {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
}

.page-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 70px;
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 50%;
  color: var(--color-white);
  position: fixed;
  bottom: 60px;
  right: var(--padding-pc);
  z-index: var(--z-page-top);
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.6s;
  transition-timing-function: var(--transition-cubic);
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-top__icon {
  display: block;
  width: 15px;
  height: 15px;
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.page-top__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-top__text {
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
.recruit {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/bg_recruit_pc.jpg);
  position: relative;
  z-index: 0;
  color: #fff;
}

/* 背景オーバーレイ */
.recruit::before {
  content: "";
  display: block;
  background-color: var(--color-main-dark);
  opacity: 0.5;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.recruit__container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.recruit__copy {
  font-size: 65px;
  line-height: 1.0769230769;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.recruit__copy .cross {
  font-weight: normal;
}

.recruit__contents {
  max-width: 440px;
  margin-left: auto;
}

.recruit__text {
  margin-top: 36px;
  font-size: 20px;
}

.recruit__button {
  margin-top: 48px;
}

.search-window {
  padding: 4px 24px;
  border-radius: 999px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-window__input {
  width: 200px;
  border: none;
  outline: none;
  line-height: 1.5;
}

.search-window__button svg {
  --icon-search-fill: var(--color-black);
  display: block;
  aspect-ratio: 1/1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service {
  background: var(--color-gray);
}

.side-blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-blog-list__link {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
}

.side-blog-list__img {
  width: 100%;
  aspect-ratio: 80/50;
  overflow: hidden;
}

.side-blog-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-property: scale;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.side-blog-list__title {
  margin-top: -0.5em;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6666666667;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.side-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.side-monthly-list__link {
  display: flex;
  padding: 13px 0;
  font-size: 15px;
  line-height: 1.7333333333;
  border-bottom: 1px solid var(--color-gray-border);
  position: relative;
  transition-property: color, border-color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.side-monthly-list__link::before {
  content: "";
  width: 0%;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transition-property: width;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.side-monthly-list__link::after {
  content: "";
  width: 8px;
  aspect-ratio: 7.591/13.061;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="7.591" height="13.061" viewBox="0 0 7.591 13.061"><path d="M583.735,3803.205l6,6-6,6" transform="translate(-583.204 -3802.675)" fill="none" stroke="%236a6a6a" stroke-width="1.5"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
  position: relative;
  z-index: 1;
  transition-property: background-image;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.side-tag-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.side-tag-list__link {
  font-size: 15px;
  line-height: 1.7333333333;
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.single-nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-areas: "prev back next";
  gap: 24px;
  align-items: center;
}

.single-nav__prev {
  grid-area: prev;
  text-align: left;
}

.single-nav__back {
  grid-area: back;
  text-align: center;
}

.single-nav__next {
  grid-area: next;
  text-align: right;
}

.single-nav__back .c-button {
  max-width: 300px;
}

.single-page .sub-page__contents {
  margin-top: 42px;
}

.single-page__title {
  font-size: 42px;
  line-height: 1.6904761905;
  font-weight: 500;
}

.single-page__info {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.single-page__date {
  font-size: 16px;
}

.single-page__category {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-page__body {
  margin-top: 54px;
}

.single-page__thumbnail {
  width: 100%;
  aspect-ratio: 812/360;
  margin-bottom: 40px;
}
.single-page__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-page__social {
  margin-top: 100px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.single-page__nav {
  margin-top: 100px;
}

.single-page__social + .single-page__nav {
  margin-top: 64px;
}

.single-page__related {
  margin-top: 120px;
}

.single-related__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-menu {
  width: 100vw;
  height: 100dvh;
  padding: calc(var(--header-height) + 17px) 12px 0 24px;
  background-color: var(--color-white);
  color: var(--color-black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-menu__inner {
  height: 100%;
  padding-right: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sp-menu__nav {
  flex: 1;
}

.sp-menu .c-nav-list__link,
.sp-menu .c-nav-list__sub-link {
  color: var(--color-black);
}

.sp-menu .c-nav-list__item--parent .c-nav-list__link span::before,
.sp-menu .c-nav-list__item--parent .c-nav-list__link span::after {
  background: var(--color-black);
}

.sp-menu__contact {
  margin-top: 40px;
  padding-bottom: 22px;
  text-align: center;
}

.sp-menu__contact .c-button--cta {
  max-width: 400px;
}

.sub-blog__pagination {
  margin-top: 64px;
}

.sub-menu {
  min-width: 230px;
  background-color: var(--color-white);
  padding: 20px 24px;
  border-radius: 6px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4);
  color: var(--color-black);
}

.sub-menu__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sub-menu__link {
  display: inline-block;
  padding: 4px 0;
  font-size: 14px;
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.sub-menu__link::before {
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  bottom: 2px;
  left: 0;
  transition-property: width;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}
.sub-mv {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./images/bg_sub-mv_pc.jpg");
  color: var(--color-white);
}

.sub-mv__inner {
  min-height: 300px;
}

.sub-mv__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 90px 0;
}

.sub-mv__content:has(.en) {
  padding: 70px 0;
}

.sub-mv__title .en {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 1.44;
  font-weight: normal;
  font-family: var(--font-en);
}

.sub-mv__title .en::before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: currentColor;
}

.sub-mv__title .ja {
  font-size: 42px;
  line-height: 1.6904761905;
  font-weight: 500;
}

.sub-news__select {
  display: flex;
  justify-content: flex-end;
}

.sub-news__list {
  margin-top: 58px;
}

.sub-news__pagination {
  margin-top: 64px;
}

.sub-page {
  background: #fff;
}

.sub-page__contents {
  margin-top: 80px;
  margin-bottom: 120px;
}
:where(.wp-contents) {
  font-size: 18px;
  line-height: 1.7222222222;
}

:where(.wp-contents) > *:not(:last-child),
.wp-block-group__inner-container > *:not(:last-child) {
  margin-bottom: 20px;
}

/* タイトル
------------------------------*/
.wp-contents h2 {
  margin-top: 80px;
  margin-bottom: 40px;
}

.wp-contents h3 {
  margin-top: 60px;
  margin-bottom: 30px;
}

.wp-contents h4 {
  margin-top: 40px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--color-sub);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}

.wp-contents h4::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  margin-top: 0.4em;
  border: 4px solid var(--color-main);
  border-radius: 50%;
}

.wp-contents h5 {
  margin-top: 32px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.4444444444;
  font-weight: 500;
}
/* テキスト
------------------------------*/
.wp-contents a {
  color: var(--color-main);
}
.wp-contents a[target=_blank]::after {
  content: "";
  width: 0.9375em;
  aspect-ratio: 15.187/15.037;
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15.187" height="15.037" viewBox="0 0 15.187 15.037"><g id="link" transform="translate(-931.891 16.033)"><path id="パス_152" data-name="パス 152" d="M2696.319,348.091h-4.844l.036,9.858h9.718v-4.183" transform="translate(-1759.082 -359.444)" fill="none" stroke="%23124897" stroke-width="1"/><g id="flowKitConnector" transform="translate(931.104 -6.624) rotate(-45)"><path id="line" d="M0,0H9.539" transform="translate(3.029 4.557)" fill="none" stroke="%23124897" stroke-width="1"/><path id="rightEdge" d="M0,0,3.593,3.764,0,7.528" transform="translate(9.556 0.879)" fill="none" stroke="%23124897" stroke-width="1"/></g></g></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

/* グループ化 */
.wp-contents .wp-block-group {
  padding: 25px;
  border-radius: 6px;
}

.wp-contents .wp-block-group.has-frame {
  border: 1px solid var(--color-gray-border-light);
  border-radius: 6px;
}

/* 引用 */
.wp-contents blockquote {
  padding: 25px;
  background: var(--color-gray-bg);
}

/* ボタン
------------------------------*/
.wp-contents .wp-block-buttons {
  margin-bottom: 48px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.wp-contents .wp-block-button__link {
  display: inline-block;
  min-width: 344px;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  padding: 15px 48px;
  background: transparent;
  font-size: 18px;
  line-height: 1.7222222222;
  font-weight: 500;
  color: var(--color-main);
  text-align: center;
  position: relative;
  transition-property: color, background, opacity;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.wp-contents .wp-block-button__link::after {
  content: "";
  width: 1.1666666667em;
  aspect-ratio: 21.188/15.102;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="21.188" height="15.102" viewBox="0 0 21.188 15.102"><path d="M14292.075,18019.5l6.11-5.7H14280v-1.5h18.182l-6.106-5.7,1.021-1.1,8.091,7.553-8.091,7.549Z" transform="translate(-14280 -18005.498)" fill="%23124897"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
/* button-secondary */
.wp-contents .button-secondary .wp-block-button__link {
  background: var(--color-main);
  color: var(--color-white);
  border-color: var(--color-main);
  transition-property: color, background, opacity;
  transition-duration: 0.4s;
  transition-timing-function: var(--transition-cubic);
}

.wp-contents .button-secondary .wp-block-button__link::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="21.188" height="15.102" viewBox="0 0 21.188 15.102"><path d="M14292.075,18019.5l6.11-5.7H14280v-1.5h18.182l-6.106-5.7,1.021-1.1,8.091,7.553-8.091,7.549Z" transform="translate(-14280 -18005.498)" fill="%23fff"/></svg>');
}
/* button-link */
.wp-contents .button-link .wp-block-button__link {
  min-width: initial;
  border: initial;
  border-radius: initial;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-weight: 600;
  color: var(--color-main);
}

.wp-contents .button-link .wp-block-button__link::after {
  position: initial;
  translate: initial;
  content: "";
  width: 31px;
  aspect-ratio: 31/27;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="31" height="27" viewBox="0 0 31 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.501 0C24.9568 0 31.001 6.04416 31.001 13.5C31.001 20.9558 24.9568 27 17.501 27C11.6232 27 6.62389 23.2431 4.77051 18H5.83984C7.64677 22.6793 12.1843 26 17.501 26C24.4045 26 30.001 20.4036 30.001 13.5C30.001 6.59644 24.4045 1 17.501 1C12.1843 1 7.64677 4.32072 5.83984 9H4.77051C6.62389 3.75686 11.6232 0 17.501 0Z" fill="%23124897"/><path d="M13.1865 18.3936L18.5859 14.001H0V13.001H18.5879L13.1885 8.60059L13.8154 7.8252L20.7959 13.499L13.8154 19.1748L13.1865 18.3936Z" fill="%23124897"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
/* button-download */
.wp-contents .button-download .wp-block-button__link::after {
  content: "";
  width: 1.1875em;
  aspect-ratio: 19/19.57;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 16.8223H17V12.5713H18.5V18.3232H0V12.5713H1.5V16.8223ZM10 10.0625L14.7324 5.50195L15.7734 6.58203L9.25 12.8721L2.73047 6.58203L3.77344 5.50098L8.5 10.0615V0H10V10.0625Z" fill="%23124897"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
/* リンクリスト
------------------------------*/
.link-list {
  margin-top: 8px;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.link-list__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--color-main);
  font-size: 16px;
  color: var(--color-main);
  position: relative;
  transition-duration: 0.4s;
  transition-property: color, border-color, background;
  transition-timing-function: var(--transition-cubic);
}

.link-list__link::after {
  content: "";
  width: 12px;
  aspect-ratio: 12/15;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="15" viewBox="0 0 12 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.67285 14.293L0 7.31543L0.775391 6.68457L5.17285 12.0889L5.17285 0L6.17285 0L6.17285 12.0957L10.5752 6.68457L11.3516 7.31543L5.67285 14.293Z" fill="%23124897"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
/* テーブル
------------------------------*/
.wp-contents .wp-block-table {
  margin-bottom: 40px;
}

.wp-contents .wp-block-table table,
.wp-contents .wp-block-table thead,
.wp-contents .wp-block-table tbody,
.wp-contents .wp-block-table tr,
.wp-contents .wp-block-table th,
.wp-contents .wp-block-table td {
  border: none;
  border-collapse: collapse;
}

.wp-contents .wp-block-table tr {
  border-bottom: 1px solid #c2c2c2;
}

.wp-contents .wp-block-table tr > *:not(:last-child) {
  border-right: 1px solid #c2c2c2;
}

.wp-contents .wp-block-table th,
.wp-contents .wp-block-table td {
  padding: 20px;
}

.wp-contents .wp-block-table th {
  font-weight: normal;
  background: var(--color-main);
  color: var(--color-white);
}

.wp-contents .wp-block-table table:not(.has-fixed-layout) th {
  text-align: left;
}

.wp-contents .wp-block-table.has-fixed-layout {
  text-align: center;
}
/* リスト
------------------------------*/
.wp-contents .wp-block-list {
  margin-bottom: 40px;
}

.wp-contents .wp-block-list .wp-block-list {
  margin-bottom: 0;
}

.wp-contents .wp-block-list li:not(:last-child) {
  margin-bottom: 6px;
}

/* 番号なしリスト */
.wp-contents ul.wp-block-list {
  list-style: none;
}

.wp-contents ul.wp-block-list > li {
  position: relative;
  padding-left: 15px;
}

.wp-contents ul.wp-block-list > li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--color-main);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}

.wp-contents ul.wp-block-list ul.wp-block-list > li::before {
  background: var(--color-gray-text-light);
  left: 4px;
}

/* 番号ありリスト（ol） */
.wp-contents ol.wp-block-list {
  list-style: none;
  counter-reset: number 0;
}

.wp-contents ol.wp-block-list > li {
  position: relative;
  padding-left: 24px;
  counter-increment: number 1;
}

.wp-contents ol.wp-block-list > li::before {
  content: counter(number) ".";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* カラムデザイン
------------------------------*/
.wp-contents .wp-block-columns {
  margin-bottom: 40px;
  gap: 40px;
  align-items: center !important;
}

.wp-contents .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* 画像
------------------------------*/
.wp-contents .wp-block-image {
  margin-bottom: 40px;
}

.wp-contents .wp-block-columns .wp-block-image {
  margin-bottom: 0;
}

.wp-contents .wp-block-image figcaption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4166666667;
  color: var(--color-gray-text);
  text-align: center;
}

/* 埋め込み
------------------------------*/
.wp-contents .wp-block-embed {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 40px;
}

.wp-contents .wp-block-columns .wp-block-embed {
  margin-bottom: 0;
}

.wp-contents .wp-block-embed .wp-block-embed__wrapper,
.wp-contents .wp-block-embed iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-sp-only {
  display: none;
}
.u-uppercase {
  text-transform: uppercase;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

@media screen and (min-width: 769px){
  button.c-nav-list__link {
    cursor: default;
  }
}

@media screen and (max-width: 1300px){
  .mv {
    min-height: 600px;
  }
  .mv__contents {
    padding-bottom: 60px;
  }
  .mv__title {
    font-size: 56px;
  }
  .mv__lead {
    font-size: 24px;
  }
  .mv__text {
    margin-top: 40px;
  }
  .mv__box01 {
    width: min(652px, 100% - 670px);
  }
  .mv__box02 {
    right: min(652px, 100% - 670px);
  }
  .mv__box03 {
    width: min(652px, 100% - 670px);
  }
}

@media screen and (max-width: 1100px){
  .header {
    height: var(--header-height);
  }
  .header__inner {
    padding-right: calc(var(--padding-pc) - 9px);
  }
  .header__nav,
  .header__button {
    display: none;
  }
  .header__hamburger {
    display: block;
    margin-left: auto;
  }
}

@media screen and (max-width: 1023px){
  :root {
    --header-height: 65px;
  }
}

@media screen and (max-width: 768px){
  .footer__body {
    padding: 64px 0;
  }
  .footer__container {
    flex-direction: column;
    gap: 40px;
  }
  .footer__nav-wrap {
    display: block;
    margin-left: 0;
    width: 100%;
  }
  .footer__bottom {
    padding: 10px 0;
  }
  .header__inner {
    padding-right: var(--padding-sp);
    padding-left: var(--padding-sp);
  }
  .header__logo {
    width: 184px;
  }
  .header__inner {
    padding-top: 10px;
    padding-left: var(--padding-sp);
    padding-right: calc(var(--padding-sp) - 9px);
  }
  .inner {
    padding-right: var(--padding-sp);
    padding-left: var(--padding-sp);
  }
  .section__link {
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
  }
  .section__contents {
    margin-top: 32px;
  }
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .c-button {
    padding: 0 18px;
    min-height: 62px;
    font-size: 16px;
  }
  .c-button--cta {
    padding: 18px 12px;
  }
  .c-card__img {
    aspect-ratio: 280/180;
  }
  .c-card__title {
    font-size: 15px;
  }
  .c-card__date {
    font-size: 12px;
  }
  .c-card--archive {
    display: block;
    padding: 20px;
  }
  .c-card--archive .c-card__img {
    aspect-ratio: 287/160;
  }
  .c-card--archive .c-card__contents {
    display: block;
  }
  .c-card--archive .c-card__title {
    margin-top: 11px;
  }
  .c-card--archive .c-card__tags {
    margin-top: 14px;
  }
  .c-card--archive .c-card__hash-tags {
    margin-top: 8px;
  }
  .c-card--archive .c-card__date {
    margin-top: 15px;
    margin-bottom: 0;
  }
  .c-hash-tag {
    font-size: 12px;
  }
  .c-link__text {
    font-size: 15px;
  }
  .c-nav-list__link {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--color-gray-border-light);
  }
  .c-nav-list__item--parent .c-nav-list__link span {
    display: block;
    position: relative;
  }
  .c-nav-list__item--parent .c-nav-list__link span::before,
  .c-nav-list__item--parent .c-nav-list__link span::after {
    content: "";
    display: block;
    width: 17px;
    height: 1px;
    background: var(--color-black);
    position: absolute;
    top: 50%;
    right: 0;
    transition-property: rotate, opacity;
    transition-duration: 0.4s;
    transition-timing-function: var(--transition-cubic);
  }
  .c-nav-list__item--parent .c-nav-list__link span::after {
    rotate: 90deg;
  }
  .c-nav-list__item--parent .c-nav-list__link.is-list-expanded span::after {
    rotate: 180deg;
    opacity: 0;
  }
  a.c-nav-list__link::after,
  a.c-nav-list__sub-link::after {
    display: none;
  }
  .c-nav-list__sub-list {
    overflow: hidden;
    padding-top: 0;
    transition-property: padding-top;
    transition-duration: 0.4s;
    transition-timing-function: var(--transition-cubic);
  }
  .c-nav-list__sub-list-wrap.is-expanded .c-nav-list__sub-list {
    padding-top: 14px;
  }
  .c-news-box {
    min-height: initial;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 12px;
  }
  .c-news-box__date {
    font-size: 12px;
  }
  .c-news-box__title {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
  .c-news-item {
    min-height: initial;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 21px 0;
  }
  .c-news-item::after {
    display: none;
  }
  .c-news-item__date {
    font-size: 12px;
  }
  .c-news-item__title {
    font-size: 15px;
    -webkit-line-clamp: 3;
    width: 100%;
  }
  .c-other-nav {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .c-other-nav__link {
    text-decoration: none;
    font-size: 14px;
  }
  .c-other-nav__link--outer {
    display: inline-flex;
    gap: 8px;
  }
  .c-other-nav__link--outer .icon svg {
    width: 15px;
    aspect-ratio: 15/15;
  }
  .c-service-box {
    aspect-ratio: 327/183;
    padding: 20px;
  }
  .c-service-box__title {
    font-size: 20px;
  }
  .c-service-box__title .icon {
    width: 36px;
  }
  .c-subtitle--h2, .wp-contents h2 {
    font-size: 24px;
  }
  .c-subtitle--h2::after, .wp-contents h2::after {
    margin-top: 12px;
    background: linear-gradient(to right, var(--color-main) 0%, var(--color-main) 120px, var(--color-gray-border-light) 120px, var(--color-gray-border-light) 100%);
  }
  .c-subtitle--h3, .wp-contents h3 {
    padding-left: 16px;
    font-size: 24px;
  }
  .c-title {
    font-size: 24px;
  }
  .c-title[data-en]::after {
    top: 1px;
  }
  .c-title[data-en]::before {
    font-size: 12px;
  }
  .nav-links {
    gap: 9px;
  }
  .nav-links > * {
    width: 32px;
  }
  .page-numbers:not(.dots, .prev, .next) {
    font-size: 15px;
  }
  .page-numbers.dots {
    width: initial;
    font-size: 18px;
  }
  .article-list {
    gap: 60px;
  }
  .article__date {
    margin-bottom: 8px;
  }
  h2.article__title {
    margin-top: 8px;
  }
  .aside__title {
    font-size: 20px;
  }
  .aside__title::after {
    background: linear-gradient(to right, var(--color-main) 0%, var(--color-main) 120px, var(--color-gray-border-light) 120px, var(--color-gray-border-light) 100%);
  }
  .aside__contetns {
    margin-top: 25px;
  }
  .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .blog-slider .blog-swiper {
    margin-right: -12px;
  }
  .blog-slider .swiper-slide {
    width: 100%;
  }
  .blog-slider .swiper-nav-wrap {
    margin-top: 40px;
    gap: 24px;
  }
  .blog-slider .swiper-button-prev .arrow,
  .blog-slider .swiper-button-next .arrow {
    width: 30px;
  }
  .blog .section__contents {
    margin-top: 40px;
  }
  .blog .section__link {
    margin-top: 40px;
  }
  .breadcrumb__list {
    display: inline;
  }
  .breadcrumb__item {
    display: inline;
    font-size: 12px;
  }
  .breadcrumb__item::after {
    margin-right: 12px;
    margin-left: 12px;
  }
  .breadcrumb__item:last-child::after {
    display: none;
  }
  .company__container {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: initial;
  }
  .company__contents {
    padding-top: 0;
  }
  .company__lead {
    font-size: 20px;
    line-height: 1.7;
  }
  .company__texts {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7333333333;
  }
  .company__img {
    max-width: 400px;
    aspect-ratio: 327/229;
    margin-right: auto;
    margin-left: auto;
  }
  .footer-info__name {
    margin-top: 10px;
  }
  .footer-info__address {
    margin-top: 34px;
  }
  .footer-info__button {
    margin-top: 16px;
    min-width: initial;
  }
  .mv {
    min-height: initial;
    flex-direction: column;
    align-items: flex-start;
  }
  .mv__images {
    display: contents;
  }
  .mv__contents {
    order: 2;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
    padding-bottom: 0;
    margin-top: 20px;
  }
  .mv__title {
    font-size: 50px;
  }
  .mv__lead {
    margin-top: 6px;
    font-size: 16px;
  }
  .mv__text {
    margin-top: 22px;
    font-size: 12px;
  }
  .mv__box01,
  .mv__box02,
  .mv__box03 {
    position: relative;
    bottom: initial;
    right: initial;
    width: initial;
    height: initial;
  }
  .mv__box01 {
    order: 1;
    width: 100%;
    height: 260px;
  }
  .mv__box02 {
    order: 4;
    margin-top: -63px;
    width: 63.2%;
    aspect-ratio: 237/141;
  }
  .mv__box03 {
    order: 3;
    width: 48%;
    margin-top: 35px;
    margin-left: auto;
    aspect-ratio: 180/94;
    z-index: 1;
  }
  .mv__box03-inner {
    margin-left: 0;
    width: 100%;
    max-width: initial;
  }
  .nav__text::after {
    display: none;
  }
  .news-list {
    gap: 20px;
  }
  .news {
    background-image: url("./images/bg_blog_sp.jpg");
  }
  .news .section__contents {
    margin-top: 40px;
  }
  .page-container {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .page-top {
    width: 40px;
    right: var(--padding-sp);
    bottom: 20px;
  }
  .page-top__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(0px 0px 99.9% 99.9%);
    border: 0;
  }
  .recruit {
    background-image: url(./images/bg_recruit_sp.jpg);
  }
  .recruit__container {
    grid-template-columns: 1fr;
    gap: 74px;
    align-items: initial;
  }
  .recruit__copy {
    font-size: 50px;
    line-height: 1.119047619;
  }
  .recruit__contents {
    max-width: 100%;
    margin-left: initial;
  }
  .recruit__text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7333333333;
  }
  .recruit__button {
    margin-top: 20px;
  }
  .service-list {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
  .side-blog-list__link {
    grid-template-columns: 100px 1fr;
    gap: 12px;
  }
  .side-blog-list__img {
    aspect-ratio: 100/60;
  }
  .side-blog-list__title {
    font-size: 15px;
    line-height: 1.7333333333;
  }
  .side-monthly-list__link {
    padding: 15px 0;
  }
  .side-tag-list {
    gap: 9px;
  }
  .single-nav {
    gap: 46px 24px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "back back" "prev next";
  }
  .single-nav__back .c-button {
    max-width: 100%;
  }
  .single-page .sub-page__contents {
    margin-top: 56px;
  }
  .single-page__title {
    font-size: 28px;
    line-height: 1.7142857143;
  }
  .single-page__info {
    margin-top: 12px;
  }
  .single-page__date {
    font-size: 12px;
    color: var(--color-gray-text);
  }
  .single-page__info:has(.single-page__tag) .single-page__date {
    width: 100%;
  }
  .single-page__body {
    margin-top: 36px;
  }
  .single-page__social {
    margin-top: 80px;
  }
  .single-page__nav {
    margin-top: 64px;
  }
  .single-page__related {
    margin-top: 100px;
  }
  .single-related__list {
    margin-top: 25px;
    grid-template-columns: 1fr;
  }
  .sub-menu__link::before {
    display: none;
  }
  .sub-mv {
    background-image: url("./images/bg_sub-mv_sp.jpg");
  }
  .sub-mv__inner {
    min-height: 188px;
  }
  .sub-mv__content {
    gap: 8px;
    padding: 40px 0 36px;
  }
  .sub-mv__content:has(.en) {
    padding: 37px 0;
  }
  .sub-mv__title .en {
    font-size: 12px;
  }
  .sub-mv__title .ja {
    font-size: 28px;
  }
  .sub-news__pagination {
    margin-top: 40px;
  }
  .sub-page__contents {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  :where(.wp-contents) {
    font-size: 15px;
    line-height: 1.7333333333;
  }
  :where(.wp-contents) > *:not(:last-child) {
    margin-bottom: 16px;
  }
  .wp-contents h2 {
    margin-top: 30px;
    margin-bottom: 24px;
  }
  .wp-contents h3 {
    margin-top: 30px;
    margin-bottom: 24px;
  }
  .wp-contents h4 {
    margin-top: 30px;
    margin-bottom: 16px;
    font-size: 20px;
  }
  .wp-contents h4::before {
    width: 16px;
  }
  .wp-contents h5 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 16px;
  }
  .wp-contents .wp-block-group {
    padding: 20px;
  }
  .wp-contents blockquote {
    padding: 20px;
  }
  .wp-contents .wp-block-buttons {
    margin-bottom: 32px;
    flex-direction: column;
    gap: 32px;
  }
  .wp-contents .wp-block-button:not(.button-link) {
    width: 100%;
  }
  .wp-contents .wp-block-button__link {
    width: 100%;
    min-width: initial;
    font-size: 15px;
  }
  .wp-contents .wp-block-button__link {
    padding-left: 40px;
    padding-right: 40px;
  }
  .link-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .link-list__link {
    font-size: 14px;
    padding: 8px 15px;
  }
  .link-list__link::after {
    right: 14px;
  }
  .wp-contents .wp-block-table {
    margin-bottom: 32px;
  }
  .wp-contents .wp-block-table {
    font-size: 14px;
  }
  .wp-contents .wp-block-table th,
  .wp-contents .wp-block-table td {
    min-width: 120px;
  }
  .wp-contents .wp-block-table:has(.has-fixed-layout) {
    width: 100%;
    overflow-x: auto;
  }
  .wp-contents .wp-block-table:has(.has-fixed-layout) table {
    width: -moz-max-content;
    width: max-content;
  }
  .wp-contents .wp-block-table:has(.has-fixed-layout) th,
  .wp-contents .wp-block-table:has(.has-fixed-layout) td {
    min-width: 220px;
  }
  .wp-contents .wp-block-list {
    margin-bottom: 32px;
  }
  .wp-contents ul.wp-block-list ul.wp-block-list > li {
    padding-left: 20px;
  }
  .wp-contents ol.wp-block-list ol.wp-block-list > li {
    padding-left: 20px;
  }
  .wp-contents ol.wp-block-list ol.wp-block-list > li::before {
    left: 4px;
  }
  .wp-contents .wp-block-columns {
    margin-bottom: 20px;
    gap: 20px;
  }
  .wp-contents .wp-block-columns.column-sp-reverse {
    flex-direction: column-reverse;
  }
  .wp-contents .wp-block-image {
    margin-bottom: 32px;
  }
  .wp-contents .wp-block-embed {
    margin-bottom: 32px;
  }
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: block;
  }
}

@media (hover: hover){
  a:hover {
    opacity: 0.7;
  }
  .c-card:hover {
    opacity: 1;
  }
  .c-card:hover .c-card__img img {
    scale: 1.05;
  }
  .c-card:hover .c-card__title {
    color: var(--color-main);
  }
  .c-link:hover {
    opacity: 1;
  }
  .c-link__text:hover {
    color: var(--color-main);
    opacity: 1;
  }
  .c-link__text:hoverafter {
    width: 100%;
  }
  a.c-nav-list__link:hover,
  a.c-nav-list__sub-link:hover {
    color: var(--color-main);
    opacity: 1;
  }
  a.c-nav-list__link:hoverafter,
  a.c-nav-list__sub-link:hoverafter {
    width: 100%;
  }
  .c-news-box:hover {
    opacity: 1;
    color: var(--color-main);
  }
  .c-news-item:hover::after {
    translate: 0 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18.454" height="15.102" viewBox="0 0 18.454 15.102"><path id="合体_8" data-name="合体 8" d="M6439.343,20278l6.1-5.7H6430v-1.5h15.454l-6.109-5.7,1.023-1.1,8.087,7.549-8.087,7.553Z" transform="translate(-6429.999 -20263.998)" fill="%23124897"/></svg>');
  }
  .c-news-item:hover {
    opacity: 1;
    color: var(--color-main);
  }
  .c-other-nav__link:hover {
    opacity: 1;
  }
  .c-other-nav__link:hover .text {
    text-decoration: underline;
  }
  .c-service-box:hover {
    opacity: 1;
  }
  .c-service-box:hover .c-service-box__bg {
    transform: scale(1.05);
  }
  .c-social:hover {
    opacity: 0.7;
  }
  a.c-tag:hover {
    opacity: 1;
    color: var(--color-main);
    background: var(--color-white);
  }
  .page-numbers:not(.current, .dots, .prev, .next):hover {
    background: var(--color-main);
    color: #fff;
    border: 1px solid var(--color-main);
    opacity: 1;
  }
  .page-numbers.prev:hover,
  .page-numbers.next:hover {
    opacity: 1;
    background-color: var(--color-gray-bg);
  }
  .blog-slider .swiper-button-prev:hover::after,
  .blog-slider .swiper-button-next:hover::after {
    scale: 1.1;
  }
  .breadcrumb__item a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .header-button:hover {
    opacity: 1;
    background: var(--color-white);
    color: var(--color-sub);
    --icon-mail-fill: var(--color-sub);
  }
  .lang-switch__button:hover {
    opacity: 1;
  }
  .nav__text:hover {
    color: var(--color-main);
    opacity: 1;
  }
  .nav__text:hoverafter {
    width: 100%;
  }
  .nav__text:hover {
    opacity: 1;
  }
  .home .header .nav__text:hover {
    color: var(--color-white);
  }
  .header.is-fixed .nav__text:hover {
    color: var(--color-main);
  }
  .page-top:hover {
    opacity: 0.7;
  }
  .page-top:hover .page-top__icon {
    transform: translateY(-25%);
  }
  .side-blog-list__link:hover {
    opacity: 1;
  }
  .side-blog-list__link:hover .side-blog-list__img img {
    scale: 1.1;
  }
  .side-blog-list__link:hover .side-blog-list__title {
    color: var(--color-main);
  }
  .side-monthly-list__link:hover {
    color: var(--color-main);
    opacity: 1;
  }
  .side-monthly-list__link:hover::before {
    width: 100%;
  }
  .side-monthly-list__link:hover {
    opacity: 1;
    color: var(--color-main);
    border-color: var(--color-gray-border);
  }
  .side-monthly-list__link:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="7.591" height="13.061" viewBox="0 0 7.591 13.061"><path d="M583.735,3803.205l6,6-6,6" transform="translate(-583.204 -3802.675)" fill="none" stroke="%23124897" stroke-width="1.5"/></svg>');
  }
  .side-tag-list__link:hover {
    opacity: 1;
    color: var(--color-main);
  }
  .sub-menu__link:hover {
    opacity: 1;
    color: var(--color-main);
  }
  .sub-menu__link:hover::before {
    width: 100%;
  }
  .wp-contents a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .wp-contents .wp-block-button__link:hover {
    opacity: 1;
    background: var(--color-main);
    color: var(--color-white);
  }
  .wp-contents .wp-block-button__link:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="21.188" height="15.102" viewBox="0 0 21.188 15.102"><path d="M14292.075,18019.5l6.11-5.7H14280v-1.5h18.182l-6.106-5.7,1.021-1.1,8.091,7.553-8.091,7.549Z" transform="translate(-14280 -18005.498)" fill="%23ffffff"/></svg>');
  }
  .wp-contents .button-secondary .wp-block-button__link:hover {
    background: var(--color-white);
    color: var(--color-main);
  }
  .wp-contents .button-secondary .wp-block-button__link:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="21.188" height="15.102" viewBox="0 0 21.188 15.102"><path d="M14292.075,18019.5l6.11-5.7H14280v-1.5h18.182l-6.106-5.7,1.021-1.1,8.091,7.553-8.091,7.549Z" transform="translate(-14280 -18005.498)" fill="%23124897"/></svg>');
  }
  .wp-contents .button-link .wp-block-button__link:hover {
    opacity: 1;
    background: initial;
    color: var(--color-main);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .wp-contents .button-link .wp-block-button__link:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg width="31" height="27" viewBox="0 0 31 27" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.501 0C24.9568 0 31.001 6.04416 31.001 13.5C31.001 20.9558 24.9568 27 17.501 27C11.6232 27 6.62389 23.2431 4.77051 18H5.83984C7.64677 22.6793 12.1843 26 17.501 26C24.4045 26 30.001 20.4036 30.001 13.5C30.001 6.59644 24.4045 1 17.501 1C12.1843 1 7.64677 4.32072 5.83984 9H4.77051C6.62389 3.75686 11.6232 0 17.501 0Z" fill="%23124897"/><path d="M13.1865 18.3936L18.5859 14.001H0V13.001H18.5879L13.1885 8.60059L13.8154 7.8252L20.7959 13.499L13.8154 19.1748L13.1865 18.3936Z" fill="%23124897"/></svg>');
  }
  .wp-contents .button-download .wp-block-button__link:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 16.8223H17V12.5713H18.5V18.3232H0V12.5713H1.5V16.8223ZM10 10.0625L14.7324 5.50195L15.7734 6.58203L9.25 12.8721L2.73047 6.58203L3.77344 5.50098L8.5 10.0615V0H10V10.0625Z" fill="%23fff"/></svg>');
  }
  .link-list__link:hover {
    opacity: 1;
    background: var(--color-main);
    color: var(--color-white);
  }
  .link-list__link:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="15" viewBox="0 0 12 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.67285 14.293L0 7.31543L0.775391 6.68457L5.17285 12.0889L5.17285 0L6.17285 0L6.17285 12.0957L10.5752 6.68457L11.3516 7.31543L5.67285 14.293Z" fill="%23ffffff"/></svg>');
  }
}
