@charset "UTF-8";
/* ----------------------------------------------
header
------------------------------------------------- */
@keyframes m_fixed {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  99% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: unset;
  }
}
@keyframes remove {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  99% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: unset;
  }
}
#header .top.remove {
  animation: none;
}
#header .top.remove > * {
  animation: remove 1s forwards;
}
#header .top.m_fixed {
  animation: none;
}
#header .top.m_fixed > * {
  animation: m_fixed 1s forwards;
}

/* ----------------------------------------------
business
------------------------------------------------- */
@keyframes fadein {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  99% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: unset;
  }
}
#business {
  position: relative;
}
#business.view .pop {
  position: fixed;
  max-height: calc(100vh - var(--hsize, 113px));
}
#business.view .contents {
  height: calc(100vh - var(--hsize, 113px));
}
#business.end .contents {
  bottom: 0;
  height: calc(100vh - var(--hsize, 113px));
}
#business.end:not(.is-visible) .contents {
  display: none;
}
#business .bgs .bg {
  position: sticky;
  top: max(0px, var(--hsize, 0px));
}
#business .bgs .bg img {
  width: 100%;
  min-height: calc(100vh - var(--hsize, 0px));
  -o-object-fit: cover;
     object-fit: cover;
}
#business.is-visible .contents {
  position: absolute;
  bottom: 0px;
}
#business .contents {
  position: sticky;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#business .contents .block {
  position: relative;
  align-content: center;
  container-type: inline-size;
}
#business .contents .block .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#business .contents .block .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#business .contents .block .heading {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 30px;
}
#business .contents .block.view {
  width: min(935px, 60%);
  margin-left: auto;
  padding-bottom: 60px;
  margin-top: auto;
  animation: fadein 1s linear forwards;
}
#business .contents .block.view .bg {
  display: none;
}
#business .contents .block.view .heading {
  -moz-column-gap: 30px;
       column-gap: 30px;
  text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
}
#business .contents .block.view .heading .num {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 100, "wght" 400;
  font-size: min(18.6748663102cqw, 174.61px);
  line-height: 1;
  color: #fff;
}
#business .contents .block.view .heading .title {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 100, "wght" 700;
  font-size: min(7.5978609626cqw, 71.04px);
  line-height: 0.939893018;
  color: #fff;
}
#business .contents .block.view .text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: min(1.9251336898cqw, 18px);
  line-height: 1.6;
  color: #000;
}
#business .contents .block.view .text span {
  background-color: #fff;
  display: block;
  padding: 9px 30px;
}
#business .contents .block.view .text span:not(:last-child) {
  margin-bottom: 10px;
}
#business .contents .block.view + .block {
  min-height: 100px;
}
#business .contents .block.view + .block .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00479d;
  mix-blend-mode: multiply;
}
#business .contents .block.view + .block .heading {
  display: flex;
}
#business .contents .block:not(.view) {
  min-height: 32px;
}
#business .contents .block:not(.view) .heading {
  position: relative;
  display: none;
}
#business .contents .block:not(.view) .heading .num,
#business .contents .block:not(.view) .heading .title {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 100, "wght" 700;
  font-size: min(1.6875cqw, 27px);
  line-height: 1;
  color: #fff;
}
#business .contents .block:not(.view) .heading .title::before {
  content: "/";
}
#business .contents .block:not(.view) .heading .title br {
  display: none;
}
#business .contents .block:not(.view) .text {
  display: none;
}
#business .contents .block.end .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00479d;
  mix-blend-mode: multiply;
}
#business.is-visible .pop {
  top: unset;
  position: absolute;
}
#business .pop {
  position: absolute;
  top: 100vh;
  transform: translateY(calc(-100% - 60px));
  width: min(100% - min(935px, 60%), 500px);
  max-height: calc(100vh - 70px);
  overflow: clip auto;
  container-type: inline-size;
}
#business .pop::-webkit-scrollbar {
  display: none;
}
#business .pop ul {
  background: linear-gradient(90deg, #00316a 0%, #00469c 100%);
}
#business .pop ul li {
  transition: all 1s;
}
#business .pop ul li a, #business .pop ul li:not(:has(a)) {
  display: flex;
  flex-wrap: wrap;
}
#business .pop ul li a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#business .pop ul li a:hover {
  opacity: 0.6;
}
#business .pop ul li a {
  font-weight: 100;
}
#business .pop ul li.view {
  background-color: #ff0000;
  margin-bottom: 60px;
  transition: padding 0s;
}
#business .pop ul li.view a, #business .pop ul li.view:not(:has(a)) {
  padding: 10px 0 0 10px;
}
#business .pop ul li.view .tx {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: min(10.4cqw, 52px);
  line-height: 1.1;
  color: #fff;
  width: 100%;
  margin-bottom: 10px;
}
#business .pop ul li.view .tx .view-none,
#business .pop ul li.view .tx .sm {
  display: none;
}
#business .pop ul li.view small {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 100, "wght" 700;
  font-size: 34px;
  font-size: min(6.8cqw, 34px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  align-content: center;
}
#business .pop ul li.view .num {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 100, "wght" 400;
  font-size: min(16.86cqw, 84.3px);
  line-height: 1;
  color: #ff0000;
  background-color: #fff;
  order: 1;
  margin-left: auto;
  padding: 8px 19px;
}
#business .pop ul li:not(.view) {
  padding-left: 8%;
  padding-right: 6%;
}
#business .pop ul li:not(.view) a, #business .pop ul li:not(.view):not(:has(a)) {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#business .pop ul li:not(.view) .tx,
#business .pop ul li:not(.view) .num {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: min(5.4cqw, 27px);
  line-height: 1.6;
  color: #fff;
}
#business .pop ul li:not(.view) .tx br {
  display: none;
}
#business .pop ul li:not(.view) .tx .sm {
  font-size: min(3.6cqw, 18px);
}
#business .pop ul li:not(.view) small {
  display: none;
}
#business .pop ul li:not(.view):last-child {
  padding-bottom: 80px;
}
@media (max-width: 999px) {
  #business .contents .block.view {
    padding-bottom: 40px;
  }
  #business .contents .block.view .text span {
    padding: 9px 20px;
  }
  #business .contents .block.view + .block {
    min-height: 80px;
  }
  #business .pop ul li.view {
    margin-bottom: 20px;
  }
  #business .pop ul li.view a, #business .pop ul li.view:not(:has(a)) {
    padding-top: 20px;
  }
  #business .pop ul li:not(.view):last-child {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  #business.view .contents {
    height: auto;
  }
  #business.is-visible .contents {
    bottom: 240px;
  }
  #business .contents {
    padding-top: 80px;
    bottom: 300px;
  }
  #business .contents .block.view {
    animation: fadein 0.3s linear forwards;
    padding-bottom: 30px;
    width: 90%;
  }
  #business .contents .block.view .text {
    font-size: 12px;
  }
  #business .contents .block.view .text span {
    padding: 4px 7px;
  }
  #business .contents .block.view + .block {
    min-height: 60px;
  }
  #business .contents .block:not(.view) {
    display: none;
  }
  #business .pop {
    width: 100%;
    transform: translateY(calc(-100% - 0px));
  }
  #business .pop ul li {
    transition: none;
  }
  #business .pop ul li a {
    transition: none;
  }
  #business .pop ul li.view {
    margin-bottom: 5px;
  }
  #business .pop ul li.view a, #business .pop ul li.view:not(:has(a)) {
    padding-top: 15px;
  }
  #business .pop ul li.view .num {
    font-size: 40px;
    padding: 4px 13px;
  }
  #business .pop ul li.view .tx {
    font-size: 30px;
  }
  #business .pop ul li.view small {
    font-size: 20px;
  }
  #business .pop ul li:not(.view) {
    padding-left: 4%;
    padding-right: 4%;
  }
  #business .pop ul li:not(.view):last-child {
    padding-bottom: 40px;
  }
  #business .pop ul li:not(.view) .tx,
  #business .pop ul li:not(.view) .num {
    font-size: 15px;
  }
  #business .bgs {
    padding-bottom: 230px;
  }
  #business .bgs .bg img {
    height: 400px;
    min-height: 0;
  }
}/*# sourceMappingURL=index-business.css.map */