@charset "UTF-8";
/*###################################################################
※※※※ 直接編集禁止 ※※※※
このCSSファイルはSassから生成されていますので直接編集しないようご注意ください。
  編集は拡張子「.scss」ファイルを編集して当ファイルにコンパイルしてください。
  もしくは別途cssファイルを作成して読み込ませてください。
###################################################################*/
:root {
  --base: #fff;
  --main: #0d3e8d;
  --accent: #319f2f;
  --bg: #f6f7fa;
  --text: #333;
}

/*###################################################################
  base（共通設定）
###################################################################*/
/*----------------------------------
  html
----------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  container-type: inline-size;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

img {
  width: 100%;
  height: auto;
}

/*###################################################################
  animation（共通設定）
###################################################################*/
/*----------------------------------
  zoom
----------------------------------*/
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*----------------------------------
  loop-left
----------------------------------*/
@-webkit-keyframes loop-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*----------------------------------
  fade-down
----------------------------------*/
@-webkit-keyframes fade-down {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-down {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*###################################################################
  header（module）
###################################################################*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.is-drawer-active .header {
  z-index: 30;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding: 0 5.5555555556cqw 0 7.0833333333cqw;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 5.3333333333cqw 0 6.6666666667cqw;
  }
}
.header__logo {
  max-width: 24.375cqw;
  width: 100%;
  margin-top: 1.4583333333cqw;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 41.8666666667cqw;
    margin-top: 3.7333333333cqw;
  }
}
.is-drawer-active .header__logo {
  visibility: hidden;
}

.header-nav {
  max-width: 44.4444444444cqw;
  width: 100%;
  height: 5cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--base);
  border-radius: 10px;
  margin-top: 0.9722222222cqw;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav_sticky {
  position: fixed;
  top: 0.9722222222cqw;
  right: 5.5555555556cqw;
  -webkit-box-shadow: 0 2px 10px rgba(13, 62, 141, 0.15);
          box-shadow: 0 2px 10px rgba(13, 62, 141, 0.15);
  -webkit-animation: fade-down 0.5s ease;
          animation: fade-down 0.5s ease;
}
.header-nav__items {
  max-width: 36.9444444444cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.header-nav__link {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .header__logo-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .header__logo-link:hover, .header__logo-link:focus {
    opacity: 0.7;
  }
  .header-nav__link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .header-nav__link:hover, .header-nav__link:focus {
    color: var(--main);
  }
}
/*###################################################################
  footer（module）
###################################################################*/
.footer {
  border-top: 2px solid var(--main);
}
@media (max-width: 768px) {
  .footer {
    max-width: 500px;
    container-type: inline-size;
    border-top: none;
    margin-inline: auto;
  }
}
.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8.1944444444cqw 10.7638888889cqw 0 10.4861111111cqw;
}
@media (max-width: 768px) {
  .footer__inner {
    max-width: 89.3333333333cqw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 2px solid var(--main);
    margin-inline: auto;
    padding: 23.2cqw 0 0;
  }
}
.footer__logo-box {
  width: 28.4027777778cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .footer__logo-box {
    width: 89.3333333333cqw;
    row-gap: 2.184cqw;
  }
}
.footer__address {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 600;
  line-height: 2.25;
  text-align: center;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer__address {
    font-size: 3.4946666667cqw;
    line-height: 2.25;
  }
}

.footer-nav {
  width: 36.9444444444cqw;
  margin-top: 4.9305555556cqw;
}
@media (max-width: 768px) {
  .footer-nav {
    width: 89.3333333333cqw;
    margin-top: 16.1866666667cqw;
  }
}
.footer-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 768px) {
  .footer-nav__items {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 13.0666666667cqw 17.3333333333cqw;
  }
}
.footer-nav__link {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer-nav__link {
    font-size: 4.2666666667cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer__logo-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .footer__logo-link:hover, .footer__logo-link:focus {
    opacity: 0.7;
  }
  .footer-nav__link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .footer-nav__link:hover, .footer-nav__link:focus {
    color: var(--main);
  }
}
.footer-copyright {
  height: 4.1666666667cqw;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  margin-top: 9.2361111111cqw;
}
@media (max-width: 768px) {
  .footer-copyright {
    height: min(16cqw, 80px);
    font-size: 4.2666666667cqw;
    margin-top: min(28.8cqw, 144px);
  }
}

.footer-page-top {
  width: 5.5555555556cqw;
  height: 5.5555555556cqw;
  display: grid;
  place-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background-color: var(--accent);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 768px) {
  .footer-page-top {
    width: min(21.3333333333cqw, 106.67px);
    height: min(21.3333333333cqw, 106.67px);
    right: 0;
    bottom: 0;
  }
}
.footer-page-top_show {
  visibility: visible;
  opacity: 1;
}
.footer-page-top::before {
  content: "";
  width: 42.5%;
  aspect-ratio: 34/20;
  background: url(../images/icon-page-top-arrow.svg) no-repeat center center/contain;
}

@media (hover: hover) and (pointer: fine) {
  .footer-page-top {
    -webkit-transition: opacity 0.4s, background-color 0.4s;
    transition: opacity 0.4s, background-color 0.4s;
  }
  .footer-page-top:hover, .footer-page-top:focus {
    background-color: var(--main);
  }
}
/*###################################################################
  c-title（module）
###################################################################*/
/*###################################################################
  c-link（module）
###################################################################*/
.c-link-1 {
  max-width: 200px;
  width: 100%;
  height: 53px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 41px;
     -moz-column-gap: 41px;
          column-gap: 41px;
  color: var(--main);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border: 1px solid var(--main);
  padding-left: 25px;
}
.c-link-1::after {
  content: "";
  min-width: 26px;
  aspect-ratio: 26/8;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-link-arrow-2.svg);
          mask-image: url(../images/icon-link-arrow-2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

.c-link-2 {
  max-width: 140px;
  width: 100%;
  height: 39px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  color: var(--main);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border: 1px solid var(--main);
  padding-left: 12px;
}
.c-link-2::after {
  content: "";
  min-width: 26px;
  aspect-ratio: 26/8;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-link-arrow-2.svg);
          mask-image: url(../images/icon-link-arrow-2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

.c-link-3 {
  max-width: 12.5cqw;
  width: 100%;
  height: 3.0957638889cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.3948611111cqw;
     -moz-column-gap: 2.3948611111cqw;
          column-gap: 2.3948611111cqw;
  background-color: var(--main);
  color: var(--base);
  font-size: max(0.9722222222cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-inline: 1.4602777778cqw 1.0041666667cqw;
}
@media (max-width: 768px) {
  .c-link-3 {
    max-width: 48cqw;
    height: 11.8877333333cqw;
    -webkit-column-gap: 9.1962666667cqw;
       -moz-column-gap: 9.1962666667cqw;
            column-gap: 9.1962666667cqw;
    font-size: 3.7333333333cqw;
    padding-inline: 5.6074666667cqw 3.856cqw;
  }
}
.c-link-3::after {
  content: "";
  min-width: 1.51875cqw;
  margin-left: auto;
  aspect-ratio: 26/8;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-link-arrow-2.svg);
          mask-image: url(../images/icon-link-arrow-2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 768px) {
  .c-link-3::after {
    min-width: 5.832cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-link-3 {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .c-link-3:hover, .c-link-3:focus {
    background-color: var(--accent);
  }
  .c-link-2 {
    -webkit-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
  }
  .c-link-2::after {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .c-link-2:hover, .c-link-2:focus {
    background-color: var(--main);
    color: var(--base);
  }
  .c-link-2:hover::after, .c-link-2:focus::after {
    background-color: var(--base);
  }
  .c-link-1 {
    -webkit-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
  }
  .c-link-1::after {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .c-link-1:hover, .c-link-1:focus {
    background-color: var(--main);
    color: var(--base);
  }
  .c-link-1:hover::after, .c-link-1:focus::after {
    background-color: var(--base);
  }
}
/*###################################################################
  br（module）
###################################################################*/
.br-1000-b {
  display: none;
}
@media (max-width: 1000px) {
  .br-1000-b {
    display: block;
  }
}
.br-900-b {
  display: none;
}
@media (max-width: 900px) {
  .br-900-b {
    display: block;
  }
}
.br-800-b {
  display: none;
}
@media (max-width: 800px) {
  .br-800-b {
    display: block;
  }
}
.br-sp-b {
  display: none;
}
@media (max-width: 768px) {
  .br-sp-b {
    display: block;
  }
}
.br-600-b {
  display: none;
}
@media (max-width: 600px) {
  .br-600-b {
    display: block;
  }
}
.br-500-b {
  display: none;
}
@media (max-width: 500px) {
  .br-500-b {
    display: block;
  }
}

/*###################################################################
  hamburger（module）
###################################################################*/
.hamburger {
  width: 17.6cqw;
  height: 10.6666666667cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 30;
  background-color: var(--main);
  border-radius: 8px;
  margin-top: 1.3333333333cqw;
  padding: 0 1.6cqw 0 1.3333333333cqw;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger_sticky {
  position: fixed;
  top: 1.3333333333cqw;
  right: 5.3333333333cqw;
  margin-top: 0;
  -webkit-animation: fade-down 0.5s ease;
          animation: fade-down 0.5s ease;
}
.is-drawer-active .hamburger {
  position: fixed;
  top: 1.3333333333cqw;
  right: 5.3333333333cqw;
  margin-top: 0;
  -webkit-animation: none;
          animation: none;
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(2.6666666667cqw) rotate(45deg);
      -ms-transform: translateY(2.6666666667cqw) rotate(45deg);
          transform: translateY(2.6666666667cqw) rotate(45deg);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(-2.6666666667cqw) rotate(-45deg);
      -ms-transform: translateY(-2.6666666667cqw) rotate(-45deg);
          transform: translateY(-2.6666666667cqw) rotate(-45deg);
}
.hamburger__label {
  color: var(--base);
  font-size: 2.6666666667cqw;
  font-weight: 500;
  line-height: 1;
}
.hamburger__line {
  width: 6.1333333333cqw;
  height: 2px;
  position: relative;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  background-color: var(--base);
}
.hamburger__line::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: -2.6666666667cqw;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--base);
}
.hamburger__line::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 2.6666666667cqw;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--base);
}

@media (hover: hover) and (pointer: fine) {
  .hamburger {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .hamburger:hover {
    background-color: var(--accent);
  }
}
/*###################################################################
  drawer（module）
###################################################################*/
.drawer {
  width: 80cqw;
  height: 100vh;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 15;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--main);
  overflow: auto;
  overscroll-behavior-y: contain;
  visibility: hidden;
}
@media (min-width: 769px) {
  .drawer {
    display: none;
  }
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}
.drawer_position {
  position: fixed;
  top: 0;
  right: 0;
}
.drawer__top {
  width: 100%;
  height: 13.3333333333cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--base);
  padding-left: 6.6666666667cqw;
}
.drawer__logo {
  max-width: 41.8666666667cqw;
  width: 100%;
}
.drawer__inner {
  padding-bottom: 26.6666666667cqw;
}
.drawer__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.drawer__link {
  height: 16cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: var(--base);
  font-size: 4.2666666667cqw;
  font-weight: 500;
  line-height: 1;
  padding: 0 6.6666666667cqw;
}
.drawer__link::after {
  content: "";
  width: 1.8666666667cqw;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 6.6666666667cqw;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid var(--base);
  border-right: 1px solid var(--base);
}

.is-drawer-active {
  height: 100%;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .drawer__link {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .drawer__link:hover, .drawer__link:focus {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.drawer-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  inset: 0;
  z-index: 5;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 769px) {
  .drawer-bg {
    display: none;
  }
}

.is-drawer-active .drawer-bg {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  visibility: visible;
  opacity: 0.8;
}

/*###################################################################
  hover（module）
###################################################################*/
@media (hover: hover) and (pointer: fine) {
  .op {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op:hover, .op:focus {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fn {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fn:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-im {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-im:hover, .op-im:focus {
    opacity: 0.7 !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fnim {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fnim:hover {
    opacity: 0.7 !important;
  }
}
/*###################################################################
  lower（module）
###################################################################*/
.lower-mv__bg {
  height: 34.7222222222cqw;
  position: relative;
  background: url(../images/lower-mv-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
  background-image: image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
}
@media (max-width: 768px) {
  .lower-mv__bg {
    height: 60cqw;
  }
}
.lower-mv__title {
  width: 44.7916666667cqw;
  height: 11.9444444444cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625cqw;
  position: absolute;
  bottom: 0;
  left: -0.2777777778cqw;
  z-index: 0;
  padding: 2.3263888889cqw 0 0 7.0833333333cqw;
}
@media (max-width: 768px) {
  .lower-mv__title {
    width: 100%;
    height: 27.7333333333cqw;
    row-gap: 1.3333333333cqw;
    left: 0;
    padding: 5.3333333333cqw 0 0 7.2cqw;
  }
}
.lower-mv__title::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--bg);
  -webkit-mask-image: url(../images/lower-mv-panel.svg);
          mask-image: url(../images/lower-mv-panel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: calc(100% + 1px) calc(100% + 1px);
          mask-size: calc(100% + 1px) calc(100% + 1px);
}
.lower-mv__jp {
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .lower-mv__jp {
    font-size: 4.2666666667cqw;
  }
}
.lower-mv__en {
  background: -webkit-gradient(linear, left top, right top, from(var(--main)), to(var(--accent)));
  background: -webkit-linear-gradient(left, var(--main), var(--accent));
  background: linear-gradient(to right, var(--main), var(--accent));
  color: transparent;
  font-size: max(3.3333333333cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.1875;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 768px) {
  .lower-mv__en {
    font-size: 8.5333333333cqw;
  }
}

/*###################################################################
  WordPressテスト環境用設定
###################################################################*/
.mce-content-body {
  display: flow-root;
  zoom: 1;
}
.mce-content-body::after {
  content: "";
  display: block;
  clear: both;
}
.mce-content-body {
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.875;
  word-break: break-word;
}
.mce-content-body > *:first-child {
  margin-top: 0;
}
.mce-content-body.acf_content {
  overflow: auto;
}
.mce-content-body h1 {
  font-size: inherit;
  font-weight: normal;
}
.mce-content-body h2,
.mce-content-body h3,
.mce-content-body h4,
.mce-content-body h5,
.mce-content-body h6 {
  font-weight: bold;
  line-height: 1.75;
  margin: 3em 0 1.5em;
  clear: both;
}
.mce-content-body h2 {
  font-size: 1.375rem;
  border-left: 5px solid var(--main);
  padding-left: 10px;
  padding: 2px 0 2px 10px;
}
.mce-content-body h3 {
  font-size: 1.375rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main);
}
.mce-content-body h4 {
  font-size: 1.25rem;
}
.mce-content-body h5 {
  font-size: 1.125rem;
}
.mce-content-body h6 {
  font-size: 1rem;
}
.mce-content-body pre {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 7px 12px;
  overflow: auto;
  margin-top: 1.5em;
}
.mce-content-body p {
  line-height: 1.8;
  margin-top: 1.5em;
}
.mce-content-body em {
  font-style: italic;
}
.mce-content-body blockquote {
  margin: 1.5em 0;
  border-left: 5px solid #ddd;
  padding: 0.5em 0 0.5em 10px;
  color: #777;
}
.mce-content-body blockquote > *:first-child {
  margin-top: 0;
}
.mce-content-body ul,
.mce-content-body ol {
  margin-top: 1.5em;
  padding-left: 0;
  clear: both;
}
.mce-content-body ul ul,
.mce-content-body ul ol,
.mce-content-body ol ul,
.mce-content-body ol ol {
  margin-top: 0;
}
.mce-content-body ul {
  list-style-type: disc;
}
.mce-content-body ol {
  list-style-type: decimal;
}
.mce-content-body li {
  margin-left: 1.5em;
}
.mce-content-body a {
  color: #0000ee;
  text-decoration: underline;
}
.mce-content-body img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.mce-content-body hr {
  margin-top: 1.5em;
  clear: both;
}
.mce-content-body .aligncenter {
  margin-right: auto;
  margin-left: auto;
}
.mce-content-body .aligncenter:not([class*=wp-block-]) {
  display: block;
}
.mce-content-body .alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.mce-content-body .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.mce-content-body .wp-caption,
.mce-content-body [class*=wp-image] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
.mce-content-body .wp-caption-text {
  margin-top: 0;
}
.mce-content-body figure {
  margin-top: 1.5em;
}
.mce-content-body figcaption {
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: center;
  margin-top: 0.5em;
}
.mce-content-body .wp-block-image a {
  display: inline-block;
}
.mce-content-body div.wp-block-image {
  display: contents;
}
.mce-content-body .wp-block-table {
  overflow-x: auto;
}
.mce-content-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.mce-content-body .wp-block-table th,
.mce-content-body .wp-block-table td {
  border: 1px solid #ddd;
  padding: 10px;
}
.mce-content-body .wp-block-table th {
  background-color: var(--bg);
}
.mce-content-body .wp-block-embed.aligncenter {
  text-align: center;
}
.mce-content-body .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.mce-content-body .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.mce-content-body .wp-block-embed iframe {
  max-width: 100%;
}
.mce-content-body .wp-block-button__link {
  background-color: var(--main);
  color: var(--base);
  text-decoration: none;
  border-radius: 0;
}
.mce-content-body .wp-block-file {
  font-size: 1rem;
  line-height: 1.75;
}
.mce-content-body .wp-block-file .wp-block-file__button {
  font-size: 0.875rem;
  border-radius: 0;
}
.mce-content-body .alignwide,
.mce-content-body .alignfull {
  max-width: 100%;
  margin-inline: 0;
}

/*###################################################################
  top（page）
###################################################################*/
.top-mv {
  position: relative;
  background-color: var(--bg);
  padding-bottom: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .top-mv {
    padding-bottom: 0;
  }
}
.top-mv__slide {
  position: relative;
}
.top-mv__img {
  max-width: 94.4444444444cqw;
  width: 100%;
  overflow: hidden;
  margin-inline: auto 0;
}
@media (max-width: 768px) {
  .top-mv__img {
    max-width: 94.6666666667cqw;
  }
}
.top-mv__catch {
  max-width: 45.4861111111cqw;
  width: 100%;
  height: 18.4722222222cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 0.625cqw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding-left: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .top-mv__catch {
    max-width: 98.1333333333cqw;
    height: 48.2666666667cqw;
    row-gap: 2.4cqw;
    padding-right: 12.1333333333cqw;
    padding-left: 5.4666666667cqw;
  }
}
.top-mv__catch::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0.6944444444cqw;
  z-index: -1;
  background-color: var(--bg);
  -webkit-mask-image: url(../images/top-mv-catch.svg);
          mask-image: url(../images/top-mv-catch.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
@media (max-width: 768px) {
  .top-mv__catch::before {
    inset: 0 0 0 4.8cqw;
    -webkit-mask-image: url(../images/top-mv-catch_sp.svg);
            mask-image: url(../images/top-mv-catch_sp.svg);
  }
}
.top-mv__lead {
  font-size: max(2.7777777778cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-mv__lead {
    font-size: 6.9333333333cqw;
  }
}
.top-mv__lead_2 {
  font-weight: 700;
  line-height: 1.4583;
}
@media (max-width: 768px) {
  .top-mv__lead_2 {
    line-height: 1.4333;
  }
}
.top-mv__lead_3 {
  color: var(--accent);
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .top-mv__lead_3 {
    font-size: 6.4cqw;
    line-height: 1.4583;
  }
}
.top-mv__copy {
  font-size: max(3.3333333333cqw, 0.625rem);
  font-weight: 600;
  line-height: 1.4167;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-mv__copy {
    font-size: 8cqw;
    line-height: 1.4333;
  }
}
.top-mv__copy_2 {
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .top-mv__copy_2 {
    line-height: 1.6;
  }
}
.top-mv__copy_3 {
  line-height: 1.1667;
  text-align: center;
}
@media (max-width: 768px) {
  .top-mv__copy_3 {
    font-size: 9.6cqw;
    line-height: 1.6667;
  }
}
.top-mv__copy-row {
  display: block;
}
.top-mv__copy-row_company {
  color: var(--main);
  font-size: max(4.8611111111cqw, 0.625rem);
  line-height: 1.1714;
}
@media (max-width: 768px) {
  .top-mv__copy-row_company {
    font-size: 13.3333333333cqw;
    line-height: 1.34;
  }
}
.top-mv__copy-row_wide {
  line-height: 1.4792;
}
@media (max-width: 768px) {
  .top-mv__copy-row_wide {
    line-height: 1.6667;
  }
}
.top-mv__copy-sm {
  font-size: max(2.7777777778cqw, 0.625rem);
}
@media (max-width: 768px) {
  .top-mv__copy-sm {
    font-size: 8cqw;
  }
}
.top-mv__em {
  color: var(--main);
}
.top-mv__em_accent {
  color: var(--accent);
}
.top-mv__em_lg {
  font-size: max(3.3333333333cqw, 0.625rem);
}
@media (max-width: 768px) {
  .top-mv__em_lg {
    font-size: 8cqw;
  }
}
.top-mv__en {
  position: absolute;
  top: 6.9444444444cqw;
  left: 1.9444444444cqw;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--main)), to(var(--accent)));
  background: -webkit-linear-gradient(top, var(--main), var(--accent));
  background: linear-gradient(to bottom, var(--main), var(--accent));
  color: transparent;
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: 0.06em;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 768px) {
  .top-mv__en {
    top: 17.6cqw;
    left: 0;
    font-size: 3.7333333333cqw;
    line-height: 1.93;
  }
}
.top-mv .swiper-slide-active img,
.top-mv .swiper-slide-duplicate-active img,
.top-mv .swiper-slide-prev img {
  -webkit-animation: zoom 7s linear 0s normal both;
          animation: zoom 7s linear 0s normal both;
}

.top-about {
  background-color: var(--bg);
}
@media (max-width: 768px) {
  .top-about_pos {
    position: relative;
    z-index: 1;
    margin-top: -1px;
  }
}
.top-about__inner {
  min-height: 62.5cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: relative;
  padding: 7.7777777778cqw 0 3.2638888889cqw 10.5555555556cqw;
}
@media (max-width: 768px) {
  .top-about__inner {
    max-width: 500px;
    min-height: 0;
    container-type: inline-size;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: min(6.9333333333cqw, 34.67px);
    margin-inline: auto;
    padding: min(19.0666666667cqw, 95.33px) 0 min(18.5333333333cqw, 92.67px);
  }
}
.top-about__img {
  max-width: 39.4444444444cqw;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-about__img {
    max-width: 89.3333333333cqw;
  }
}
.top-about__body {
  max-width: 47.2222222222cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.8055555556cqw;
}
@media (max-width: 768px) {
  .top-about__body {
    max-width: 89.3333333333cqw;
    row-gap: 6.9333333333cqw;
  }
}
.top-about__body::before {
  content: "";
  width: 100%;
  height: 2px;
  position: relative;
  top: -2px;
  background-color: var(--accent);
}
@media (max-width: 768px) {
  .top-about__body::before {
    top: -1px;
  }
}
.top-about__title {
  color: var(--accent);
  font-size: max(2.2222222222cqw, 0.625rem);
  font-weight: 600;
  line-height: 2.2188;
}
@media (max-width: 768px) {
  .top-about__title {
    font-size: 8.5333333333cqw;
    line-height: 1.75;
    text-align: center;
  }
}
.top-about__title-sm {
  font-size: max(1.6666666667cqw, 0.625rem);
}
@media (max-width: 768px) {
  .top-about__title-sm {
    font-size: 6.4cqw;
  }
}
.top-about__text {
  max-width: 39.3055555556cqw;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.1875;
}
@media (max-width: 768px) {
  .top-about__text {
    max-width: 100%;
    font-size: 4.2666666667cqw;
  }
}
.top-about__logo {
  max-width: 42.3611111111cqw;
  width: 100%;
  position: absolute;
  top: 27.7083333333cqw;
  left: 1.9444444444cqw;
}
@media (max-width: 768px) {
  .top-about__logo {
    max-width: 42.4cqw;
    position: static;
  }
}

@media (max-width: 768px) {
  .top-features {
    max-width: 500px;
    container-type: inline-size;
    margin-inline: auto;
  }
}
.top-features_pos {
  margin-top: 4.4444444444cqw;
}
@media (max-width: 768px) {
  .top-features_pos {
    margin-top: 0;
  }
}
.top-features__inner {
  max-width: 85.7638888889cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  padding: 3.1944444444cqw 0 4.1666666667cqw;
}
@media (max-width: 768px) {
  .top-features__inner {
    max-width: 100%;
    padding: 15.4666666667cqw 5.3333333333cqw 12.88cqw;
  }
}
.top-features__title {
  background: -webkit-gradient(linear, left top, right top, from(var(--main)), to(var(--accent)));
  background: -webkit-linear-gradient(left, var(--main), var(--accent));
  background: linear-gradient(to right, var(--main), var(--accent));
  color: transparent;
  font-size: max(4.4444444444cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 768px) {
  .top-features__title {
    font-size: 10.6666666667cqw;
  }
}
.top-features__items {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 6.1805555556cqw;
}
@media (max-width: 768px) {
  .top-features__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 11.2cqw;
  }
}
.top-features__item {
  max-width: 39.6527777778cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .top-features__item {
    max-width: 88cqw;
  }
}
.top-features__img {
  max-width: 34.7222222222cqw;
  width: 100%;
  margin-left: 2.3611111111cqw;
}
@media (max-width: 768px) {
  .top-features__img {
    max-width: 81.6cqw;
    margin-left: 0;
  }
}
.top-features__body {
  max-width: 34.7222222222cqw;
  width: 100%;
  min-height: 9.375cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  row-gap: 1.0416666667cqw;
  background-color: var(--main);
  color: var(--base);
  text-align: center;
  margin-left: 4.9305555556cqw;
  padding-block: 1.6666666667cqw;
}
@media (max-width: 768px) {
  .top-features__body {
    max-width: 81.6cqw;
    min-height: 26.9285333333cqw;
    row-gap: 2.4cqw;
    margin-left: 6.4cqw;
    padding-block: 0;
  }
}
@media (max-width: 768px) {
  .top-features__body_short {
    min-height: 25.0666666667cqw;
  }
}
.top-features__lead {
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .top-features__lead {
    font-size: 4.2666666667cqw;
    line-height: 1.3781;
  }
}
.top-features__lead-lg {
  font-size: max(2.2222222222cqw, 0.625rem);
  line-height: 0;
}
@media (max-width: 768px) {
  .top-features__lead-lg {
    font-size: 5.3333333333cqw;
  }
}
.top-features__text {
  max-width: 31.3888888889cqw;
  width: 100%;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 600;
  line-height: 2.25;
  text-align: left;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-features__text {
    max-width: 73.8101333333cqw;
    font-size: 3.9781333333cqw;
    line-height: 1.4777;
  }
}
.top-features__text_narrow {
  max-width: 28.0555555556cqw;
}
@media (max-width: 768px) {
  .top-features__text_narrow {
    max-width: 66.0362666667cqw;
    font-size: 3.4666666667cqw;
    line-height: 1.6974;
  }
}

.top-area {
  background: url(../images/top-area-bg.webp) no-repeat center center/100% 100%;
  background-image: -webkit-image-set(url(../images/top-area-bg.webp) 1x, url(../images/top-area-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-area-bg.webp) 1x, url(../images/top-area-bg@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-area {
    background-image: -webkit-image-set(url(../images/top-area-bg_sp.webp) 1x, url(../images/top-area-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-area-bg_sp.webp) 1x, url(../images/top-area-bg_sp@2x.webp) 2x);
  }
}
.top-area_pos {
  margin-top: 3.8888888889cqw;
}
@media (max-width: 768px) {
  .top-area_pos {
    margin-top: 0;
  }
}
.top-area__inner {
  min-height: 56.4583333333cqw;
  position: relative;
  padding-top: 9.9305555556cqw;
}
@media (max-width: 768px) {
  .top-area__inner {
    max-width: 500px;
    min-height: min(197.6cqw, 988px);
    container-type: inline-size;
    margin-inline: auto;
    padding-top: min(27.2cqw, 136px);
  }
}
.top-area__img {
  max-width: 52.2916666667cqw;
  width: 100%;
  position: absolute;
  top: 5.7638888889cqw;
  left: 36.1111111111cqw;
}
@media (max-width: 768px) {
  .top-area__img {
    max-width: 93.3333333333cqw;
    top: 90.6666666667cqw;
    left: 1.3333333333cqw;
  }
}
.top-area__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.875cqw;
  position: relative;
}
@media (max-width: 768px) {
  .top-area__title {
    row-gap: 2.1333333333cqw;
  }
}
.top-area__title-jp {
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .top-area__title-jp {
    font-size: 6.4cqw;
  }
}
.top-area__title-en {
  background: -webkit-gradient(linear, left top, right top, from(var(--main)), to(var(--accent)));
  background: -webkit-linear-gradient(left, var(--main), var(--accent));
  background: linear-gradient(to right, var(--main), var(--accent));
  color: transparent;
  font-size: max(4.4444444444cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 768px) {
  .top-area__title-en {
    font-size: 13.3333333333cqw;
  }
}
.top-area__text {
  max-width: max(37.9166666667cqw, 340px);
  position: relative;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.1875;
  letter-spacing: 0.06em;
  margin-top: 5.0694444444cqw;
  margin-left: 12.3611111111cqw;
}
@media (max-width: 768px) {
  .top-area__text {
    max-width: 89.3333333333cqw;
    font-size: 4.2666666667cqw;
    margin-top: 5.3333333333cqw;
    margin-left: 5.6cqw;
  }
}

.top-business {
  background: url(../images/top-business-bg.webp) no-repeat center center/100% 100%;
  background-image: -webkit-image-set(url(../images/top-business-bg.webp) 1x, url(../images/top-business-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-business-bg.webp) 1x, url(../images/top-business-bg@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-business {
    background-image: -webkit-image-set(url(../images/top-area-business_sp.webp) 1x, url(../images/top-area-business_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-area-business_sp.webp) 1x, url(../images/top-area-business_sp@2x.webp) 2x);
  }
}
.top-business_pos {
  margin-top: -4.3090277778cqw;
}
@media (max-width: 768px) {
  .top-business_pos {
    margin-top: max(-16.2666666667cqw, -81.33px);
  }
}
.top-business__inner {
  padding: 8.1944444444cqw 5.5555555556cqw 7.2222222222cqw 5.6944444444cqw;
}
@media (max-width: 768px) {
  .top-business__inner {
    max-width: 500px;
    container-type: inline-size;
    margin-inline: auto;
    padding: min(34.1333333333cqw, 170.67px) 0 min(31.0666666667cqw, 155.33px);
  }
}
.top-business__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.875cqw;
  color: var(--base);
}
@media (max-width: 768px) {
  .top-business__title {
    row-gap: 4.2666666667cqw;
  }
}
.top-business__title-jp {
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .top-business__title-jp {
    font-size: 6.4cqw;
  }
}
.top-business__title-en {
  font-size: max(4.4444444444cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 768px) {
  .top-business__title-en {
    font-size: 13.3333333333cqw;
  }
}
.top-business__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 2.2916666667cqw;
}
@media (max-width: 768px) {
  .top-business__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20.8cqw;
  }
}
.top-business__cards {
  max-width: 41.0416666667cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.8472222222cqw;
  margin-top: 0.5555555556cqw;
}
@media (max-width: 768px) {
  .top-business__cards {
    max-width: 89.3333333333cqw;
    row-gap: 9.0666666667cqw;
    margin-top: 0;
  }
}
.top-business__card {
  max-width: 32.0833333333cqw;
  width: 100%;
  height: 16.9444444444cqw;
  position: relative;
}
@media (max-width: 768px) {
  .top-business__card {
    max-width: 100%;
    height: 48.4cqw;
  }
}
.top-business__card_service {
  margin-left: 8.9583333333cqw;
}
@media (max-width: 768px) {
  .top-business__card_service {
    margin-left: 0;
  }
}
.top-business__link {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.top-business__panel {
  width: 29.8611111111cqw;
  height: 15.3472222222cqw;
  position: absolute;
  top: 1.5972222222cqw;
  left: 2.2222222222cqw;
  background-color: var(--accent);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .top-business__panel {
    width: 83.1466666667cqw;
    height: 42.7333333333cqw;
    top: 5.6cqw;
    left: 6.1333333333cqw;
  }
}
.top-business__panel::after {
  content: "";
  width: 2.6388888889cqw;
  aspect-ratio: 38/11;
  position: absolute;
  right: 0.9722222222cqw;
  bottom: 0.9722222222cqw;
  background: url(../images/icon-link-arrow-1.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top-business__panel::after {
    width: 7.2cqw;
    right: 2.6666666667cqw;
    bottom: 3.7333333333cqw;
  }
}
.top-business__panel-label {
  position: absolute;
  top: 3.0506944444cqw;
  right: 1.7618055556cqw;
  color: var(--base);
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .top-business__panel-label {
    top: 7.3066666667cqw;
    right: 3.68cqw;
    font-size: 6.4cqw;
  }
}
.top-business__panel-en {
  position: absolute;
  bottom: -0.2083333333cqw;
  left: 4.2638888889cqw;
  color: var(--base);
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .top-business__panel-en {
    bottom: -0.9413333333cqw;
    left: 3.5733333333cqw;
    font-size: 6.4cqw;
  }
}
.top-business__panel-en_service {
  left: 5.2083333333cqw;
}
@media (max-width: 768px) {
  .top-business__panel-en_service {
    left: 2.9333333333cqw;
  }
}
.top-business__img {
  max-width: 27.7777777778cqw;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .top-business__img {
    max-width: 77.3333333333cqw;
  }
}
.top-business__main-img {
  max-width: 34.8611111111cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .top-business__main-img {
    max-width: 89.3333333333cqw;
    margin-top: 17.8666666667cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-business__img img {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .top-business__link:hover .top-business__img img, .top-business__link:focus .top-business__img img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.top-works {
  background: url(../images/top-works-bg.webp) no-repeat center center/100% 100%;
  background-image: -webkit-image-set(url(../images/top-works-bg.webp) 1x, url(../images/top-works-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-works-bg.webp) 1x, url(../images/top-works-bg@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-works {
    background-image: -webkit-image-set(url(../images/top-works-bg_sp.webp) 1x, url(../images/top-works-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-works-bg_sp.webp) 1x, url(../images/top-works-bg_sp@2x.webp) 2x);
  }
}
.top-works_pos {
  margin-top: -4.0833333333cqw;
}
@media (max-width: 768px) {
  .top-works_pos {
    margin-top: max(-18.552cqw, -92.76px);
  }
}
.top-works__inner {
  padding: 11.1111111111cqw 0 11.3694444444cqw;
}
@media (max-width: 768px) {
  .top-works__inner {
    padding: min(26.4cqw, 132px) 0 min(30.8186666667cqw, 154.09px);
  }
}
.top-works__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.875cqw;
}
@media (max-width: 768px) {
  .top-works__title {
    max-width: 500px;
    container-type: inline-size;
    row-gap: min(1.0666666667cqw, 5.33px);
    margin-inline: auto;
  }
}
.top-works__title-jp {
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .top-works__title-jp {
    font-size: 6.4cqw;
  }
}
.top-works__title-en {
  background: -webkit-gradient(linear, left top, right top, from(var(--main)), to(var(--accent)));
  background: -webkit-linear-gradient(left, var(--main), var(--accent));
  background: linear-gradient(to right, var(--main), var(--accent));
  color: transparent;
  font-size: max(4.4444444444cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 768px) {
  .top-works__title-en {
    font-size: 13.3333333333cqw;
  }
}
.top-works__slider {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 2.8472222222cqw;
}
@media (max-width: 768px) {
  .top-works__slider {
    margin-top: min(10.1333333333cqw, 50.67px);
  }
}
.top-works__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-left 30s linear infinite;
          animation: loop-left 30s linear infinite;
}
.top-works__item {
  width: 22.4969930556cqw;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.7666666667cqw;
}
@media (max-width: 768px) {
  .top-works__item {
    width: min(57.0666666667cqw, 285.33px);
    margin-right: min(1.8666666667cqw, 9.33px);
  }
}
.top-works__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.top-works__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-works__btn {
  margin-top: 4.0298611111cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-works__btn {
    margin-top: min(16.8cqw, 84px);
  }
}

.top-news_pos {
  margin-top: 1.0611111111cqw;
}
@media (max-width: 768px) {
  .top-news_pos {
    margin-top: min(10.248cqw, 51.24px);
  }
}
.top-news__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 3.8888888889cqw;
     -moz-column-gap: 3.8888888889cqw;
          column-gap: 3.8888888889cqw;
  padding: 4.375cqw 8.4027777778cqw 7.6388888889cqw 5.5555555556cqw;
}
@media (max-width: 768px) {
  .top-news__inner {
    max-width: 500px;
    container-type: inline-size;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
    padding: 0 0 min(27.4666666667cqw, 137.33px);
  }
}
.top-news__title {
  width: 12.9861111111cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  row-gap: 0.8680555556cqw;
  margin-top: -0.6597222222cqw;
}
@media (max-width: 768px) {
  .top-news__title {
    width: 49.8666666667cqw;
    row-gap: 5.2cqw;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: -0.6666666667cqw;
  }
}
.top-news__title-jp {
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .top-news__title-jp {
    font-size: 6.4cqw;
    text-align: center;
  }
}
.top-news__title-en {
  background: -webkit-gradient(linear, left top, right top, from(var(--main)), to(var(--accent)));
  background: -webkit-linear-gradient(left, var(--main), var(--accent));
  background: linear-gradient(to right, var(--main), var(--accent));
  color: transparent;
  font-size: max(4.4444444444cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 768px) {
  .top-news__title-en {
    font-size: 13.3333333333cqw;
  }
}
.top-news__items {
  width: 45.625cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625cqw;
  margin-top: 2.0138888889cqw;
  margin-left: 9.9305555556cqw;
}
@media (max-width: 768px) {
  .top-news__items {
    width: 89.3333333333cqw;
    row-gap: 5.3333333333cqw;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 10.6666666667cqw;
    margin-left: 0;
  }
}
.top-news__post {
  border-bottom: 1px dashed #b9b9b9;
  padding-bottom: 0.625cqw;
}
@media (max-width: 768px) {
  .top-news__post {
    padding-bottom: 5.3333333333cqw;
  }
}
.top-news__post-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.3333333333cqw;
     -moz-column-gap: 3.3333333333cqw;
          column-gap: 3.3333333333cqw;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .top-news__post-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 4.2666666667cqw;
    padding-inline: 5.0666666667cqw;
  }
}
.top-news__date {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.top-news__post-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-news__post-title {
    white-space: normal;
  }
}
.top-news__no-post {
  width: 45.625cqw;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.06em;
  border-bottom: 1px dashed #b9b9b9;
  margin-top: 2.0138888889cqw;
  margin-left: 9.9305555556cqw;
  padding-bottom: 0.625cqw;
}
@media (max-width: 768px) {
  .top-news__no-post {
    width: 89.3333333333cqw;
    font-size: 4.2666666667cqw;
    text-align: center;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 10.6666666667cqw;
    margin-left: 0;
    padding-bottom: 5.3333333333cqw;
  }
}
.top-news__btn {
  margin-top: 2.4305555556cqw;
}
@media (max-width: 768px) {
  .top-news__btn {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 8.5333333333cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-news__post-link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .top-news__post-link:hover, .top-news__post-link:focus {
    color: var(--main);
  }
}
/*###################################################################
  archive（page）
###################################################################*/
.archive__band {
  height: 9.5833333333cqw;
  background-color: var(--bg);
}
@media (max-width: 768px) {
  .archive__band {
    height: min(16cqw, 80px);
  }
}
.archive__inner {
  max-width: 88.8888888889cqw;
  width: 100%;
  margin-inline: auto;
  padding: 3.5416666667cqw 0 13.8194444444cqw;
}
@media (max-width: 768px) {
  .archive__inner {
    max-width: 500px;
    container-type: inline-size;
    padding: min(10.6666666667cqw, 53.33px) 0 min(48.8cqw, 244px);
  }
}
.archive__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 768px) {
  .archive__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 16cqw;
  }
}
.archive__list {
  max-width: 58.9583333333cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5.0694444444cqw;
}
@media (max-width: 768px) {
  .archive__list {
    max-width: 89.3333333333cqw;
    row-gap: 13.3333333333cqw;
  }
}
.archive__post-title {
  height: 4.5138888889cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .archive__post-title {
    height: auto;
    font-size: 4.8cqw;
    text-align: left;
    word-break: break-all;
    padding: 3.2cqw 4cqw;
  }
}
.archive__post-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.2916666667cqw;
     -moz-column-gap: 2.2916666667cqw;
          column-gap: 2.2916666667cqw;
  margin-top: 1.4583333333cqw;
}
@media (max-width: 768px) {
  .archive__post-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5.3333333333cqw;
    margin-top: 4cqw;
  }
}
.archive__thumb {
  max-width: 18.0555555556cqw;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 768px) {
  .archive__thumb {
    max-width: 89.3333333333cqw;
  }
}
.archive__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive__post-content {
  max-width: 38.6111111111cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: 2.7083333333cqw;
}
@media (max-width: 768px) {
  .archive__post-content {
    max-width: 89.3333333333cqw;
    row-gap: 5.3333333333cqw;
  }
}
.archive__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.1944444444cqw;
     -moz-column-gap: 3.1944444444cqw;
          column-gap: 3.1944444444cqw;
}
@media (max-width: 768px) {
  .archive__meta {
    -webkit-column-gap: 5.3333333333cqw;
       -moz-column-gap: 5.3333333333cqw;
            column-gap: 5.3333333333cqw;
  }
}
.archive__cat {
  min-width: 6.1805555556cqw;
  height: 2.2222222222cqw;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .archive__cat {
    min-width: 23.7333333333cqw;
    height: 8.5333333333cqw;
    font-size: 3.7333333333cqw;
  }
}
.archive__date {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .archive__date {
    font-size: 3.7333333333cqw;
  }
}
.archive__excerpt {
  width: 100%;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.1875;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .archive__excerpt {
    font-size: 3.7333333333cqw;
  }
}
.archive__no-post {
  font-size: max(1.3888888889cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.1875;
  text-align: center;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .archive__no-post {
    font-size: 4.2666666667cqw;
  }
}
.archive__pagination {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  margin-top: 17.2222222222cqw;
}
@media (max-width: 768px) {
  .archive__pagination {
    font-size: 4.2666666667cqw;
    margin-top: 16cqw;
  }
}
.archive__pagination ul.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.3888888889cqw;
     -moz-column-gap: 1.3888888889cqw;
          column-gap: 1.3888888889cqw;
}
@media (max-width: 768px) {
  .archive__pagination ul.page-numbers {
    -webkit-column-gap: 5.3333333333cqw;
       -moz-column-gap: 5.3333333333cqw;
            column-gap: 5.3333333333cqw;
  }
}
.archive__pagination .page-numbers.current {
  color: var(--main);
}

.single__inner {
  max-width: 88.8888888889cqw;
  width: 100%;
  margin-inline: auto;
  padding: 3.5416666667cqw 0 13.8194444444cqw;
}
@media (max-width: 768px) {
  .single__inner {
    max-width: 500px;
    container-type: inline-size;
    padding: min(10.6666666667cqw, 53.33px) 0 min(48.8cqw, 244px);
  }
}
.single__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 768px) {
  .single__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 16cqw;
  }
}
.single__post {
  max-width: 58.9583333333cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .single__post {
    max-width: 89.3333333333cqw;
  }
}
.single__post-title {
  height: 4.5138888889cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .single__post-title {
    height: auto;
    font-size: 4.8cqw;
    padding: 3.2cqw 4cqw;
  }
}
.single__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.1944444444cqw;
     -moz-column-gap: 3.1944444444cqw;
          column-gap: 3.1944444444cqw;
  margin-top: 1.4583333333cqw;
}
@media (max-width: 768px) {
  .single__meta {
    -webkit-column-gap: 5.3333333333cqw;
       -moz-column-gap: 5.3333333333cqw;
            column-gap: 5.3333333333cqw;
    margin-top: 4cqw;
  }
}
.single__cat {
  min-width: 6.1805555556cqw;
  height: 2.2222222222cqw;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .single__cat {
    min-width: 23.7333333333cqw;
    height: 8.5333333333cqw;
    font-size: 3.7333333333cqw;
  }
}
.single__date {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .single__date {
    font-size: 3.7333333333cqw;
  }
}
.single__thumb {
  width: 100%;
  margin-top: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .single__thumb {
    margin-top: 5.3333333333cqw;
  }
}
.single__editor {
  margin-top: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .single__editor {
    margin-top: 6.6666666667cqw;
  }
}
.single__page-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.3888888889cqw;
     -moz-column-gap: 1.3888888889cqw;
          column-gap: 1.3888888889cqw;
  color: var(--main);
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-top: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .single__page-links {
    -webkit-column-gap: 4cqw;
       -moz-column-gap: 4cqw;
            column-gap: 4cqw;
    font-size: 3.7333333333cqw;
    margin-top: 6.6666666667cqw;
  }
}
.single__page-links-label {
  color: var(--text);
}

.single-pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  color: var(--main);
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-top: 5.5555555556cqw;
}
@media (max-width: 768px) {
  .single-pager {
    font-size: 3.7333333333cqw;
    margin-top: 13.3333333333cqw;
  }
}
.single-pager__blank {
  min-width: 5.5555555556cqw;
}
@media (max-width: 768px) {
  .single-pager__blank {
    min-width: 16cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .single-pager__link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .single-pager__link:hover, .single-pager__link:focus {
    opacity: 0.7;
  }
}
.archive-side {
  max-width: 18.3333333333cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.6805555556cqw;
}
@media (max-width: 768px) {
  .archive-side {
    max-width: 89.3333333333cqw;
    row-gap: 6.6666666667cqw;
  }
}
.archive-side__title {
  height: 4.5138888889cqw;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .archive-side__title {
    height: 13.3333333333cqw;
    font-size: 4.2666666667cqw;
  }
}
.archive-side__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.0416666667cqw;
}
@media (max-width: 768px) {
  .archive-side__items {
    row-gap: 3.2cqw;
  }
}
.archive-side__link {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .archive-side__link {
    font-size: 4.2666666667cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .archive__pagination a {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .archive__pagination a:hover, .archive__pagination a:focus {
    opacity: 0.7;
  }
  .archive-side__link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .archive-side__link:hover, .archive-side__link:focus {
    color: var(--main);
  }
}
/*###################################################################
  business（page）
###################################################################*/
.business1_pos {
  margin-top: 6.9444444444cqw;
}
@media (max-width: 768px) {
  .business1_pos {
    margin-top: min(16cqw, 80px);
  }
}
.business1__inner {
  max-width: 88.8888888889cqw;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .business1__inner {
    max-width: 500px;
    container-type: inline-size;
  }
}
.business1__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 768px) {
  .business1__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 8cqw;
  }
}
.business1__box {
  max-width: 44.4444444444cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .business1__box {
    max-width: 89.3333333333cqw;
  }
}
.business1__title {
  color: var(--accent);
  font-size: max(2.2222222222cqw, 0.625rem);
  font-weight: 600;
  line-height: 2.21875;
  border-bottom: 2px solid var(--accent);
  padding-bottom: calc(1.8055555556cqw - 2px);
}
@media (max-width: 768px) {
  .business1__title {
    font-size: 5.8666666667cqw;
    line-height: 1.75;
    padding-bottom: calc(4.2666666667cqw - 2px);
  }
}
.business1__lead {
  font-size: max(1.5277777778cqw, 0.625rem);
  font-weight: 600;
  line-height: 1.59091;
  margin-top: 1.8055555556cqw;
}
@media (max-width: 768px) {
  .business1__lead {
    font-size: 4.5333333333cqw;
    line-height: 1.75;
    margin-top: 5.3333333333cqw;
  }
}
.business1__text {
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.1875;
  margin-top: 1.7361111111cqw;
}
@media (max-width: 768px) {
  .business1__text {
    font-size: 4cqw;
    margin-top: 4.2666666667cqw;
  }
}
.business1__img {
  max-width: 42.0833333333cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .business1__img {
    max-width: 89.3333333333cqw;
  }
}

.business2_pos {
  margin-top: 8.6111111111cqw;
}
@media (max-width: 768px) {
  .business2_pos {
    margin-top: min(16cqw, 80px);
  }
}
.business2__inner {
  max-width: 66.3888888889cqw;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 13.75cqw;
}
@media (max-width: 768px) {
  .business2__inner {
    max-width: 500px;
    container-type: inline-size;
    padding-bottom: min(48.8cqw, 244px);
  }
}
.business2__box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2.0138888889cqw;
  border: 1px solid var(--main);
  margin-inline: auto;
  padding: calc(2.3611111111cqw - 1px) calc(2.6388888889cqw - 1px);
}
@media (max-width: 768px) {
  .business2__box {
    max-width: 89.3333333333cqw;
    row-gap: 5.3333333333cqw;
    padding: calc(6.4cqw - 1px) calc(5.3333333333cqw - 1px);
  }
}
.business2__title {
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.6666666667cqw, 0.625rem);
  font-weight: 600;
  line-height: 1.45833;
  white-space: nowrap;
  padding: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .business2__title {
    font-size: 4.2666666667cqw;
    white-space: normal;
    padding: 2.1333333333cqw;
  }
}
.business2__text {
  width: 100%;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.1875;
}
@media (max-width: 768px) {
  .business2__text {
    font-size: 4cqw;
  }
}

/*###################################################################
  works（page）
###################################################################*/
.works__inner {
  max-width: 88.8888888889cqw;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .works__inner {
    max-width: 500px;
    container-type: inline-size;
  }
}
.works__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 1.5277777778cqw;
     -moz-column-gap: 1.5277777778cqw;
          column-gap: 1.5277777778cqw;
  border-bottom: 3px solid var(--main);
}
@media (max-width: 768px) {
  .works__head {
    max-width: 89.3333333333cqw;
    -webkit-column-gap: 3.7333333333cqw;
       -moz-column-gap: 3.7333333333cqw;
            column-gap: 3.7333333333cqw;
    margin-inline: auto;
  }
}
.works__mark {
  min-width: 1.3194444444cqw;
  height: 4.8611111111cqw;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, var(--accent)), color-stop(50%, var(--main)));
  background: -webkit-linear-gradient(top, var(--accent) 50%, var(--main) 50%);
  background: linear-gradient(to bottom, var(--accent) 50%, var(--main) 50%);
}
@media (max-width: 768px) {
  .works__mark {
    min-width: 3.2cqw;
    height: 11.7333333333cqw;
  }
}
.works__title {
  color: var(--main);
  font-size: max(2.0833333333cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.26667;
  white-space: nowrap;
  margin-top: -0.1388888889cqw;
}
@media (max-width: 768px) {
  .works__title {
    font-size: 5.3333333333cqw;
    line-height: 2.2;
    margin-top: -0.5333333333cqw;
  }
}
.works__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 3.5416666667cqw;
  margin-top: 2.5cqw;
}
@media (max-width: 768px) {
  .works__list {
    max-width: 89.3333333333cqw;
    gap: 5.3333333333cqw;
    margin-top: 6.4cqw;
    margin-inline: auto;
  }
}
.works__item {
  max-width: 26.3888888889cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .works__item {
    max-width: 42cqw;
  }
}
.works__link {
  width: 100%;
  overflow: hidden;
  display: block;
}
.works__link img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works1_pos {
  margin-top: 5.2777777778cqw;
}
@media (max-width: 768px) {
  .works1_pos {
    margin-top: min(13.3333333333cqw, 66.67px);
  }
}
.works1__link {
  aspect-ratio: 380/307;
}

.works2 {
  background: url(../images/works2-bg.webp) no-repeat center center/100% 100%;
  background-image: -webkit-image-set(url(../images/works2-bg.webp) 1x, url(../images/works2-bg@2x.webp) 2x);
  background-image: image-set(url(../images/works2-bg.webp) 1x, url(../images/works2-bg@2x.webp) 2x);
  padding: 8.0555555556cqw 0 12.7381944444cqw;
}
@media (max-width: 768px) {
  .works2 {
    padding: min(16cqw, 80px) 0 min(21.3333333333cqw, 106.67px);
  }
}
.works2_pos {
  margin-top: 6.6666666667cqw;
  margin-bottom: 9.6229166667cqw;
}
@media (max-width: 768px) {
  .works2_pos {
    margin-top: min(13.3333333333cqw, 66.67px);
    margin-bottom: min(21.3333333333cqw, 106.67px);
  }
}
.works2__head {
  border-bottom-color: var(--accent);
}
.works2__mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, var(--main)), color-stop(50%, var(--accent)));
  background: -webkit-linear-gradient(top, var(--main) 50%, var(--accent) 50%);
  background: linear-gradient(to bottom, var(--main) 50%, var(--accent) 50%);
}
.works2__link {
  aspect-ratio: 380/285;
}

@media (hover: hover) and (pointer: fine) {
  .works__link img {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .works__link:hover img, .works__link:focus img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*###################################################################
  company（page）
###################################################################*/
.company1 {
  padding-bottom: 5.4166666667cqw;
}
@media (max-width: 768px) {
  .company1 {
    padding-bottom: min(16cqw, 80px);
  }
}
.company1__band {
  height: 5cqw;
  background-color: var(--bg);
}
@media (max-width: 768px) {
  .company1__band {
    height: min(10.6666666667cqw, 53.33px);
  }
}
.company1__bg {
  background: url(../images/company1-bg.webp) no-repeat center center/100% 100%;
  background-image: image-set(url(../images/company1-bg.webp) 1x, url(../images/company1-bg@2x.webp) 2x), -webkit-gradient(linear, left top, left bottom, color-stop(9.06%, var(--bg)), color-stop(9.06%, transparent));
  background-image: -webkit-image-set(url(../images/company1-bg.webp) 1x, url(../images/company1-bg@2x.webp) 2x), -webkit-linear-gradient(top, var(--bg) 9.06%, transparent 9.06%);
  background-image: image-set(url(../images/company1-bg.webp) 1x, url(../images/company1-bg@2x.webp) 2x), linear-gradient(to bottom, var(--bg) 9.06%, transparent 9.06%);
  padding: 11.8055555556cqw 0 11.0958333333cqw;
}
@media (max-width: 768px) {
  .company1__bg {
    padding: min(16cqw, 80px) 0 min(16cqw, 80px);
  }
}
.company1__inner {
  width: 100%;
}
@media (max-width: 768px) {
  .company1__inner {
    max-width: 500px;
    container-type: inline-size;
    margin-inline: auto;
  }
}
.company1__list {
  max-width: max(36.7361111111cqw, 330.63px);
  width: 100%;
  color: var(--base);
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .company1__list {
    max-width: 89.3333333333cqw;
    font-size: 4cqw;
  }
}
.company1__row {
  height: 5cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--base);
  padding-left: max(0.9027777778cqw, 8.13px);
}
@media (max-width: 768px) {
  .company1__row {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 0.5333333333cqw;
    padding: 2.6666666667cqw 0 2.6666666667cqw 2.1333333333cqw;
  }
}
.company1__label {
  min-width: max(9.4444444444cqw, 85px);
}
@media (max-width: 768px) {
  .company1__label {
    min-width: auto;
  }
}
.company1__data {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .company1__data {
    white-space: normal;
  }
}
.company1__link {
  color: inherit;
}
.company1__gmap {
  max-width: 60.4861111111cqw;
  width: 100%;
  height: auto;
  aspect-ratio: 871/481;
  display: block;
  margin-top: 1.8902777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .company1__gmap {
    max-width: 89.3333333333cqw;
    margin-top: 6.4cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .company1__link {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .company1__link:hover, .company1__link:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  page-404（page）
###################################################################*/
.page-404__inner {
  padding: 8.3333333333cqw 0 14.375cqw;
}
@media (max-width: 768px) {
  .page-404__inner {
    max-width: 500px;
    container-type: inline-size;
    margin-inline: auto;
    padding: min(16cqw, 80px) 0 min(48.8cqw, 244px);
  }
}
.page-404__title {
  max-width: 69.4444444444cqw;
  color: var(--main);
  font-size: max(2.2222222222cqw, 0.625rem);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .page-404__title {
    max-width: 89.3333333333cqw;
    font-size: 5.3333333333cqw;
  }
}
.page-404__text {
  max-width: 69.4444444444cqw;
  font-size: max(1.1111111111cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.1875;
  text-align: center;
  margin-top: 2.0833333333cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .page-404__text {
    max-width: 89.3333333333cqw;
    font-size: 4.2666666667cqw;
    text-align: left;
    margin-top: 5.3333333333cqw;
  }
}
.page-404__btn {
  margin-top: 4.1666666667cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .page-404__btn {
    margin-top: 10.6666666667cqw;
  }
}

/*###################################################################
  js-（js制御用）
###################################################################*/