@charset "UTF-8";
/* -------------------- Mixins -------------------- */
/* -------------------- Noto Sans Japanese -------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Noto+Serif+JP:400,700&amp;subset=japanese");
/* -------------------- Hanken Grotesk Regular -------------------- */
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
.top-hero {
  /* -------------------- 再生/停止ボタン -------------------- */
  /* -------------------- ドット -------------------- */
}
@media screen and (min-width: 768px) {
  .top-hero {
    position: relative;
    width: 100%;
    max-height: 50rem;
  }
}
.top-hero__swiper {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-hero__swiper {
    max-height: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__swiper {
    max-height: 100%;
  }
}
.top-hero .swiper {
  position: relative;
  width: 100%;
  height: auto;
}
.top-hero .swiper-slide {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-hero .swiper-slide {
    height: 50rem;
  }
}
@media screen and (max-width: 1440px) {
  .top-hero .swiper-slide {
    height: auto;
  }
}
.top-hero .swiper-slide img {
  position: absolute; /* 親基準で位置決め */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央に配置 */
  min-width: 100%; /* 横幅100%以上で拡大 */
  height: auto;
}
@media screen and (max-width: 1440px) {
  .top-hero .swiper-slide img {
    position: static;
    transform: none;
  }
}
.top-hero .slider-controlbar {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-hero .slider-controlbar {
    left: 50%;
    transform: translateX(-50%);
    bottom: 6.875rem;
    z-index: 5;
    gap: 1rem;
    width: 100%;
    max-width: 965px;
  }
}
@media screen and (max-width: 1024px) {
  .top-hero .slider-controlbar {
    bottom: 6.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero .slider-controlbar {
    bottom: calc(16 / 390 * 100vw);
    left: calc(16 / 390 * 100vw);
    gap: calc(11 / 390 * 100vw);
  }
}
.top-hero .slider-controlbar .top-hero__pagination {
  position: static;
  flex: 1;
  text-align: left;
}
.top-hero .swiper-toggle {
  position: relative;
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--c-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.top-hero .swiper-toggle::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_pause-w.svg) no-repeat center;
  background-size: contain;
  transition: none;
}
.top-hero .swiper-toggle.paused::before {
  background: url(../img/common/icon_play-w.svg) no-repeat center;
  background-size: contain;
}
.top-hero .swiper-toggle:hover {
  transform: scale(1.1);
}
.top-hero .swiper-toggle:hover::before {
  transform: translate(-50%, -50%) scale(0.9090909091);
}
.top-hero .swiper-pagination-bullets {
  bottom: 10px !important;
}
.top-hero .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top-hero .swiper-pagination-bullets .swiper-pagination-bullet {
    width: calc(5.6 / 390 * 100vw);
    height: calc(5.6 / 390 * 100vw);
    margin: 0 px calc(2.8 / 390 * 100vw);
  }
}
.top-hero .swiper-pagination-bullets .swiper-pagination-bullet:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}
.top-hero .swiper-pagination-bullets .swiper-pagination-bullet:focus:focus:not(:focus-visible) {
  outline: none;
}
.top-hero .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: red !important;
}

/* -------------------- キャッチコピー -------------------- */
.top-hero__catchphrase {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
}
.top-hero__catchphrase > img {
  display: inline-block;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .top-hero__catchphrase > img {
    width: 34.5368916797%;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__catchphrase > img {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .top-hero__catchphrase {
    top: 3.75rem;
    max-width: 1274px;
    height: 27.5rem;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .top-hero__catchphrase {
    top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__catchphrase {
    top: auto;
    bottom: calc(15 / 390 * 100vw);
    height: 44.5vw;
    padding-inline: calc(16 / 390 * 100vw);
    text-align: right;
  }
}

/* -------------------- ヘッドラインニュース -------------------- */
.top-hero__headline {
  display: flex;
}
@media screen and (min-width: 768px) {
  .top-hero__headline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: transparent;
    width: 60.3125rem;
    max-width: 965px;
  }
}
@media screen and (max-width: 965px) {
  .top-hero__headline {
    width: 100%;
    max-width: 100%;
  }
}
.top-hero__headline-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* 縮まないように */
  background-image: var(--grad-red);
}
@media screen and (min-width: 768px) {
  .top-hero__headline-heading {
    width: 5rem; /* 固定幅 */
    gap: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__headline-heading {
    width: calc(56 / 390 * 100vw); /* 固定幅 */
    gap: calc(4 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .top-hero__headline-heading > img {
    width: 1.8125rem;
    height: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__headline-heading > img {
    width: calc(20 / 390 * 100vw);
    height: calc(21 / 390 * 100vw);
  }
}
.top-hero__headline-title {
  white-space: nowrap;
  color: var(--c-white);
  font-family: var(--ff-hanken);
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-hero__headline-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__headline-title {
    font-size: calc(13 / 390 * 100vw);
  }
}
.top-hero__headline-body-wrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow: hidden; /* ネイティブスクロール非表示 */
  background-image: linear-gradient(155deg, #070707 0%, #2c2c2c 100%);
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .top-hero__headline-body-wrapper {
    height: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__headline-body-wrapper {
    height: calc(85 / 390 * 100vw);
    opacity: 1;
  }
}
.top-hero__headline-body-wrapper .scroll-btn {
  position: absolute;
  right: 0;
  z-index: 10;
  background: transparent;
  width: 10px;
  height: 10px;
  cursor: pointer;
  display: none; /* 初期は非表示 */
  border-top: 1px solid var(--c-white);
  border-right: 1px solid var(--c-white);
}
.top-hero__headline-body-wrapper .scroll-up {
  top: 20%;
  transform: translateX(calc(-100% - 13px)) rotate(315deg);
}
.top-hero__headline-body-wrapper .scroll-down {
  bottom: 20%;
  transform: translateX(calc(-100% - 13px)) rotate(135deg);
}
.top-hero__headline-body {
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
@media screen and (min-width: 768px) {
  .top-hero__headline-body {
    height: 100%;
    padding: 1.0625rem 1.25rem 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__headline-body {
    height: 100%;
    padding: calc(14 / 390 * 100vw) calc(14 / 390 * 100vw) calc(14 / 390 * 100vw);
  }
}
.top-hero__headline-body::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.top-hero__news-item {
  color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .top-hero__news-item + .top-hero__news-item {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__news-item + .top-hero__news-item {
    margin-top: calc(16 / 390 * 100vw);
  }
}
.top-hero__news-date {
  white-space: nowrap;
  font-family: var(--ff-hanken);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .top-hero__news-date {
    margin-bottom: 0.1875rem;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__news-date {
    font-size: calc(11 / 390 * 100vw);
  }
}
.top-hero__news-text {
  font-family: var(--ff-noto-sans);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-hero__news-text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-hero__news-text {
    font-size: calc(12 / 390 * 100vw);
  }
}

/* -------------------- スペシャルコンテンツ -------------------- */
.sec01 {
  background-color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .sec01__inner {
    padding-block: 4.6875rem 3.75rem;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec01__inner {
    padding-block: calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
    padding-inline: calc(20 / 390 * 100vw);
  }
}
.sec01__title {
  display: flex;
  flex-direction: column;
  background: none;
  text-align: center;
  font-weight: 500;
  color: inherit;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sec01__title {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__title {
    font-size: calc(26 / 390 * 100vw);
  }
}
.sec01__title::before {
  content: attr(data-label);
  display: block;
  line-height: 1.5;
  font-family: var(--ff-hanken);
  color: var(--c-red);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sec01__title::before {
    margin-bottom: 0rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .sec01__title::before {
    margin-bottom: 4px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__title::before {
    margin-bottom: calc(0 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.sec01__lead {
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sec01__lead {
    margin-top: 0.875rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__lead {
    margin-top: calc(13 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec01 .col2-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2.1875rem;
    width: 100%;
    max-width: 74.6875rem;
    margin-top: 3.75rem;
    margin-inline: auto;
  }
  .sec01 .col2-wrap > * {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec01 .col2-wrap {
    margin-top: calc(34 / 390 * 100vw);
  }
}
.sec01__card {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec01__card {
    max-width: 35.3125rem;
  }
}
.sec01__card--data .sec01__card-title strong {
  position: relative;
}
.sec01__card--data .sec01__card-title strong::after {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  right: 24%;
  width: 1.3125rem;
  height: 1.1875rem;
  background: url(../img/top/icon_crown.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec01__card--data .sec01__card-title strong::after {
    top: -6px;
    right: 21.5%;
    width: calc(13 / 390 * 100vw);
    height: calc(12 / 390 * 100vw);
  }
}
.sec01__card-title {
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  color: var(--c-gray);
}
@media screen and (min-width: 768px) {
  .sec01__card-title {
    margin-bottom: 0.875rem;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__card-title {
    margin-bottom: calc(17.15 / 390 * 100vw);
    font-size: calc(15.4 / 390 * 100vw);
  }
}
.sec01__card-title strong {
  display: block;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .sec01__card-title strong {
    margin-bottom: 0.656875rem;
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__card-title strong {
    margin-bottom: calc(7.4 / 390 * 100vw);
    font-size: calc(23.1 / 390 * 100vw);
  }
}
.sec01__card-title em {
  font-style: normal;
  color: var(--c-red);
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sec01__card-title em {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__card-title em {
    font-size: calc(31.5 / 390 * 100vw);
  }
}
.sec01__card-img {
  border: 4px solid var(--c-red);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .sec01__card-img {
    margin-bottom: 1.375rem;
  }
}
.sec01__card-img a, .sec01__card-img a:link, .sec01__card-img a:visited, .sec01__card-img a:hover, .sec01__card-img a:active {
  display: block;
  cursor: pointer;
}
@media (any-hover: hover) {
  .sec01__card-img a:hover img {
    transform: scale(1.1);
  }
}
.sec01__card-img a:focus-visible img {
  transform: scale(1.1);
}
.sec01__card-img a:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}
.sec01__card-img a:focus:focus:not(:focus-visible) {
  outline: none;
}
.sec01__card-img img {
  width: 100%;
  transition: transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .sec01__card--movie .sec01__card-img {
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .sec01__card--movie {
    margin-top: calc(70 / 390 * 100vw);
  }
}
.sec01__card--movie .sec01__card-title {
  position: relative;
}
.sec01__card--movie .sec01__card-title::before {
  content: "";
  display: block;
  position: absolute;
  top: -2.8125rem;
  right: 50%;
  transform: translateX(50%);
  width: 3.75rem;
  height: 2.625rem;
  background: url(../img/top/icon_camera.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec01__card--movie .sec01__card-title::before {
    top: calc(-30 / 390 * 100vw);
    width: calc(35 / 390 * 100vw);
    height: calc(24.5 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec01__card--movie .sec01__card-title em {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__card--movie .sec01__card-title em {
    font-size: calc(24.5 / 390 * 100vw);
  }
}
.sec01__card--movie .sec01__card-title strong {
  position: relative;
  display: inline-block;
  color: var(--c-red);
}
@media screen and (min-width: 768px) {
  .sec01__card--movie .sec01__card-title strong {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .sec01__card--movie .sec01__card-title strong {
    font-size: calc(21 / 390 * 100vw);
  }
}
.sec01__card--movie .sec01__card-title strong::before {
  content: "";
  position: absolute;
  left: -3.375rem;
  bottom: 100%;
  width: 54px;
  height: 2px;
  background-color: currentColor;
  transform: rotate(45deg);
  transform-origin: bottom left;
}
@media screen and (max-width: 767px) {
  .sec01__card--movie .sec01__card-title strong::before {
    top: calc(-2 / 390 * 100vw);
    left: calc(-35 / 390 * 100vw);
    width: calc(35 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
}
.sec01__card--movie .sec01__card-title strong::after {
  content: "";
  position: absolute;
  right: -0.875rem;
  bottom: -4%;
  width: 54px;
  height: 2px;
  background-color: currentColor;
  transform: rotate(135deg);
  transform-origin: bottom right;
}
@media screen and (max-width: 767px) {
  .sec01__card--movie .sec01__card-title strong::after {
    bottom: calc(0 / 390 * 100vw);
    right: calc(0 / 390 * 100vw);
    width: calc(35 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
}
/* -------------------- スクロール画像コンテンツ -------------------- */
.scrolling-images {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.js-infiniteloop {
  --loop-duration: 10s;
  overflow: hidden;
}
.js-infiniteloop_inner {
  display: flex;
}
.js-infiniteloop[data-direction=left] .js-infiniteloop_inner {
  justify-content: flex-start;
}
.js-infiniteloop[data-direction=right] .js-infiniteloop_inner {
  justify-content: flex-end;
}
.js-infiniteloop.is-paused .js-infiniteloop-item {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.js-infiniteloop .control-bar {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 965px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 965px) {
  .js-infiniteloop .control-bar {
    width: 100%;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .js-infiniteloop .control-bar {
    padding-inline: calc(29.75 / 390 * 100vw);
    bottom: calc(20.75 / 390 * 100vw);
  }
}

.js-infiniteloop-item {
  flex-shrink: 0;
  max-width: initial;
  white-space: nowrap;
}
.js-infiniteloop-item > img {
  width: auto;
}
@media screen and (min-width: 768px) {
  .js-infiniteloop-item > img {
    height: 20.875rem;
  }
}
@media screen and (max-width: 767px) {
  .js-infiniteloop-item > img {
    height: calc(238 / 390 * 100vw);
  }
}
.js-infiniteloop-item > * {
  flex-shrink: 0;
}
.js-infiniteloop-item.left {
  -webkit-animation: infiniteloop-left var(--loop-duration) linear infinite;
          animation: infiniteloop-left var(--loop-duration) linear infinite;
}
.js-infiniteloop-item.right {
  -webkit-animation: infiniteloop-right var(--loop-duration) linear infinite;
          animation: infiniteloop-right var(--loop-duration) linear infinite;
}

.control-bar .infiniteloop__toggle {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--c-white);
  transition: transform 0.2s ease;
}
.control-bar .infiniteloop__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_pause-w.svg) no-repeat center;
  background-size: contain;
  transition: none;
}
.control-bar .infiniteloop__toggle.paused::before {
  background: url(../img/common/icon_play-w.svg) no-repeat center;
  background-size: contain;
}
.control-bar .infiniteloop__toggle:hover {
  transform: scale(1.1111111111);
}
.control-bar .infiniteloop__toggle:hover::before {
  transform: translate(-50%, -50%) scale(0.9);
}

@-webkit-keyframes infiniteloop-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infiniteloop-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes infiniteloop-right {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes infiniteloop-right {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
/* -------------------- 仕事と人を知る -------------------- */
.sec02 {
  position: relative;
  background-image: var(--grad-red);
}
@media screen and (min-width: 768px) {
  .sec02 {
    height: 56.25rem;
  }
}
@media screen and (max-width: 767px) {
  .sec02 {
    height: auto;
    padding-bottom: calc(200 / 390 * 100vw);
  }
}
.sec02__inner {
  width: 965px;
  margin: 0 auto;
}
@media (max-width: 965px) {
  .sec02__inner {
    width: 100%;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec02__inner {
    padding-inline: calc(20 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec02 .contents {
    display: flex;
    justify-content: flex-end;
    padding-block: 3.75rem;
  }
  .sec02 .contents::after {
    content: "";
    position: absolute;
    top: 6.25rem;
    left: 40%;
    width: 27.5rem;
    height: 27.5rem;
    background: url(../img/top/deco_sec02.svg) no-repeat center;
    background-size: contain;
    z-index: 0;
    mix-blend-mode: multiply;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .contents {
    padding-block: calc(30 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
}
.sec02 .contents__title {
  display: flex;
  flex-direction: column;
  background: none;
  text-align: left;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sec02 .contents__title {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .contents__title {
    font-size: calc(26 / 390 * 100vw);
  }
}
.sec02 .contents__title::before {
  content: attr(data-label);
  display: block;
  line-height: 1.5;
  font-family: var(--ff-hanken);
  color: var(--c-white);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sec02 .contents__title::before {
    margin-bottom: 0.125rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .sec02 .contents__title::before {
    margin-bottom: 4px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .contents__title::before {
    margin-bottom: calc(0 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.sec02 .contents__image {
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1440px) {
  .sec02 .contents__image {
    width: 45.1388888889vw;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .sec02 .contents__image {
    position: absolute;
    left: 0;
    top: 3.75rem;
    height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .contents__image {
    width: calc(360 / 390 * 100vw);
    margin-left: calc(-20 / 390 * 100vw);
  }
}
.sec02 .contents__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 1441px) {
  .sec02 .contents__image {
    width: 46.5104166667vw; /* ブラウザ幅に応じて比例拡大 */
  }
  .sec02 .contents__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: 100%;
    transform: translate(-50%, -50%);
  }
}
.sec02 .contents__text {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .sec02 .contents__text {
    width: 50%;
    margin-top: 1.875rem;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .contents__text {
    margin-top: calc(25 / 390 * 100vw);
  }
}
.sec02 .contents__desc {
  color: var(--c-white);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sec02 .contents__desc {
    margin-top: 1.4375rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .contents__desc {
    margin-top: calc(13 / 390 * 100vw);
    margin-bottom: calc(23 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}

/* -------------------- 人財育成 -------------------- */
.sec03 {
  position: relative;
  background-color: var(--c-white);
}
.sec03::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 88.1944444444%;
  height: 500px;
  margin-right: 10.625rem;
  background-image: var(--grad-gray);
  z-index: 0;
}
@media (min-width: 1441px) {
  .sec03::after {
    width: 88.1944444444vw;
  }
}
@media screen and (max-width: 767px) {
  .sec03::after {
    width: 100vw;
    height: calc(420 / 390 * 100vw);
    z-index: 0;
  }
}
@media screen and (min-width: 768px) {
  .sec03 {
    padding-bottom: 150px;
  }
  .sec03::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 0;
    z-index: 1;
    width: 380px;
    height: 530px;
    background: url(../img/top/deco_sec03.svg) no-repeat right bottom;
    background-size: contain;
    mix-blend-mode: multiply;
  }
}
@media screen and (max-width: 767px) {
  .sec03 {
    overflow: hidden;
  }
}
.sec03__inner {
  width: 965px;
  margin: 0 auto;
}
@media (max-width: 965px) {
  .sec03__inner {
    width: 100%;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec03__inner {
    position: relative;
    z-index: 1;
    padding-block: calc(30 / 390 * 100vw) calc(40 / 390 * 100vw);
    padding-inline: calc(20 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec03 .contents {
    display: flex;
    justify-content: flex-start;
    padding-block: 3.75rem 6.25rem;
  }
}
.sec03 .contents__title {
  display: flex;
  flex-direction: column;
  background: none;
  text-align: left;
  font-weight: 500;
  color: var(--c-gray);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sec03 .contents__title {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec03 .contents__title {
    font-size: calc(26 / 390 * 100vw);
  }
}
.sec03 .contents__title::before {
  content: attr(data-label);
  display: block;
  line-height: 1.5;
  font-family: var(--ff-hanken);
  color: var(--c-red);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sec03 .contents__title::before {
    margin-bottom: 0.125rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .sec03 .contents__title::before {
    margin-bottom: 4px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .sec03 .contents__title::before {
    margin-bottom: calc(0 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.sec03 .contents__image {
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1440px) {
  .sec03 .contents__image {
    width: 50vw;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .sec03 .contents__image {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 3.75rem;
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .sec03 .contents__image {
    width: calc(370 / 390 * 100vw);
    margin-top: calc(30 / 390 * 100vw);
    margin-right: calc(-20 / 390 * 100vw);
  }
}
.sec03 .contents__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 1441px) {
  .sec03 .contents__image {
    height: 480px;
    width: 50vw; /* ブラウザ幅に応じて比例拡大 */
    position: absolute;
    right: 0;
    top: 3.75rem;
  }
  .sec03 .contents__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: 100%;
    transform: translate(-50%, -50%);
  }
}
.sec03 .contents__text {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .sec03 .contents__text {
    width: 50%;
    margin-top: 1.875rem;
    margin-right: auto;
  }
}
.sec03 .contents__desc {
  color: var(--c-gray);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .sec03 .contents__desc {
    margin-top: 1.25rem;
    margin-bottom: 2.75rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .sec03 .contents__desc {
    margin-top: calc(13 / 390 * 100vw);
    margin-bottom: calc(22 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.sec03 .contents .btn--base {
  border: 1px solid var(--c-gray);
}
/* -------------------- 社員インタビュー -------------------- */
.top-work {
  position: relative;
  z-index: 2;
  /* next / prev ボタン */
  /* ボタン */
  /* -------------------- 再生/停止ボタン -------------------- */
}
@media screen and (min-width: 768px) {
  .top-work {
    margin-top: -360px;
  }
}
@media screen and (max-width: 767px) {
  .top-work {
    margin-top: calc(-200 / 390 * 100vw);
  }
}
.top-work__title {
  display: flex;
  flex-direction: column;
  background: none;
  text-align: left;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.5;
  letter-spacing: 0.1em;
  width: 965px;
  margin: 0 auto;
}
@media (max-width: 965px) {
  .top-work__title {
    width: 100%;
    padding-inline: 15px;
  }
}
@media screen and (min-width: 768px) {
  .top-work__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .top-work__title {
    padding-inline: calc(20 / 390 * 100vw);
    font-size: calc(20 / 390 * 100vw);
  }
}
.top-work__title::before {
  content: attr(data-label);
  display: block;
  line-height: 1.5;
  font-family: var(--ff-hanken);
  color: var(--c-white);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-work__title::before {
    margin-bottom: 0.125rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-work__title::before {
    margin-bottom: 4px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-work__title::before {
    margin-bottom: calc(0 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.top-work .card-slider {
  position: relative;
  width: 100%;
  padding: 25px 0 60px;
}
@media screen and (max-width: 767px) {
  .top-work .card-slider {
    padding: calc(10 / 390 * 100vw) calc(0 / 390 * 100vw) calc(0 / 390 * 100vw);
  }
}
.top-work .card-slider .swiper-wrapper {
  display: flex;
}
.top-work .cardSwiper {
  width: 100%;
  padding-bottom: 40px;
  /* カードデザイン */
}
.top-work .cardSwiper .swiper-wrapper {
  align-items: stretch;
}
.top-work .cardSwiper .swiper-slide {
  width: 300px; /* 固定幅 */
}
@media screen and (max-width: 767px) {
  .top-work .cardSwiper .swiper-slide {
    width: calc(170 / 390 * 100vw); /* SP固定幅 */
  }
}
.top-work .cardSwiper .card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top-work .cardSwiper .card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.top-work .cardSwiper .card__image {
  flex-shrink: 0;
  width: 100%;
}
.top-work .cardSwiper .card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-work .cardSwiper .card__job {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-work .cardSwiper .card__job {
    margin: 20px 0 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top-work .cardSwiper .card__job {
    margin-top: calc(12.47 / 390 * 100vw);
    font-size: calc(9 / 390 * 100vw);
  }
}
.top-work .cardSwiper .card__name {
  font-family: var(--ff-hanken);
  color: var(--c-red);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-work .cardSwiper .card__name {
    margin-top: -5px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .top-work .cardSwiper .card__name {
    margin-top: calc(-3 / 390 * 100vw);
    font-size: calc(13 / 390 * 100vw);
  }
}
.top-work .cardSwiper .card__department {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-work .cardSwiper .card__department {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-work .cardSwiper .card__department {
    margin-top: calc(3 / 390 * 100vw);
    font-size: calc(8 / 390 * 100vw);
  }
}
.top-work .cardSwiper .card__year {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-work .cardSwiper .card__year {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-work .cardSwiper .card__year {
    margin-top: calc(3 / 390 * 100vw);
    font-size: calc(8 / 390 * 100vw);
  }
}
.top-work .swiper-button-prev,
.top-work .swiper-button-next {
  color: transparent;
  background-color: var(--c-white);
}
.top-work .swiper-button-prev:focus,
.top-work .swiper-button-next:focus {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}
.top-work .swiper-button-prev:focus:focus:not(:focus-visible),
.top-work .swiper-button-next:focus:focus:not(:focus-visible) {
  outline: none;
}
.top-work .swiper-button-prev::after,
.top-work .swiper-button-next::after {
  font-size: 24px;
}
.top-work .btn-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 965px;
  margin: 0 auto;
  margin-top: 3.125rem;
}
@media (max-width: 965px) {
  .top-work .btn-wrap {
    width: 100%;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .top-work .btn-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.top-work .btn-wrap .slider-controlbar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .top-work .btn-wrap .slider-controlbar {
    position: static;
    transform: translateY(0);
    width: calc(154 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
  }
}
.top-work .btn-wrap .btn--base {
  padding-inline: 1.875rem;
  border: 1px solid var(--c-gray);
}
@media (max-width: 800px) {
  .top-work .btn-wrap .btn--base {
    width: 42.5%;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-work .btn-wrap .btn--base {
    width: calc(241 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
}
.top-work .btn-wrap .swiper-button-next, .top-work .btn-wrap .swiper-button-prev {
  top: calc(50% - 8px);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--c-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .top-work .btn-wrap .swiper-button-next, .top-work .btn-wrap .swiper-button-prev {
    top: 50%;
    width: calc(42 / 390 * 100vw);
    height: calc(42 / 390 * 100vw);
  }
}
.top-work .btn-wrap .swiper-button-next:hover, .top-work .btn-wrap .swiper-button-prev:hover {
  transform: scale(1.1);
}
.top-work .btn-wrap .swiper-button-next:hover::after, .top-work .btn-wrap .swiper-button-prev:hover::after {
  transform: scale(0.9090909091) translate(-50%, -50%);
}
.top-work .btn-wrap .swiper-button-next {
  right: 0;
}
.top-work .btn-wrap .swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_arr-b.svg) no-repeat center;
  background-size: contain;
  transition: none;
}
.top-work .btn-wrap .swiper-button-next::after:hover {
  transform: scale(1.1);
}
.top-work .btn-wrap .swiper-button-next::after:hover::after {
  transform: scale(0.9090909091) translate(-50%, -50%);
}
.top-work .btn-wrap .swiper-button-prev {
  left: 0;
}
.top-work .btn-wrap .swiper-button-prev::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_arl-b.svg) no-repeat center;
  background-size: contain;
  transition: none;
}
.top-work .swiper-toggle {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--c-gray);
  background-color: var(--c-white);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.top-work .swiper-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_pause-b.svg) no-repeat center;
  background-size: contain;
  transition: none;
}
.top-work .swiper-toggle.paused::before {
  background: url(../img/common/icon_play-b.svg) no-repeat center;
  background-size: contain;
}
.top-work .swiper-toggle:hover {
  transform: scale(1.1);
}
.top-work .swiper-toggle:hover::before {
  transform: translate(-50%, -50%) scale(0.9090909091);
}
@media screen and (max-width: 767px) {
  .top-work .swiper-toggle {
    width: calc(42 / 390 * 100vw);
    height: calc(42 / 390 * 100vw);
  }
}

/* -------------------- 採用情報 -------------------- */
.sec04 {
  position: relative;
  background: url(../img/top/bg_sec04.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .sec04 {
    height: 400px;
  }
  .sec04::before {
    content: "";
    position: absolute;
    top: -190px;
    right: 0;
    z-index: 1;
    display: block;
    width: 154px;
    height: 356px;
    background: url(../img/top/deco_sec04.svg) no-repeat center;
    background-size: contain;
    mix-blend-mode: normal;
  }
}
@media screen and (max-width: 767px) {
  .sec04 {
    background: url(../img/top/bg_sec04-sp.jpg) no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .sec04 .sec04__inner {
    padding-block: 5.9375rem 6.25rem;
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec04 .sec04__inner {
    padding-block: calc(35 / 390 * 100vw) calc(40 / 390 * 100vw);
    padding-inline: calc(20 / 390 * 100vw);
  }
}
.sec04__title {
  display: flex;
  flex-direction: column;
  background: none;
  text-align: center;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sec04__title {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec04__title {
    font-size: calc(26 / 390 * 100vw);
  }
}
.sec04__title::before {
  content: attr(data-label);
  display: block;
  line-height: 1.5;
  font-family: var(--ff-hanken);
  color: var(--c-white);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sec04__title::before {
    margin-bottom: 0.125rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .sec04__title::before {
    margin-bottom: 4px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .sec04__title::before {
    margin-bottom: calc(0 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec04 .col3-wrap {
    display: flex;
    gap: 2.9375rem;
    width: 100%;
    max-width: 965px;
    margin-top: 50px;
    margin-inline: auto;
  }
}
@media (max-width: 965px) {
  .sec04 .col3-wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec04 .col3-wrap {
    width: calc(203 / 390 * 100vw);
    margin-top: calc(24.4 / 390 * 100vw);
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .sec04 .col3-wrap .col {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .sec04 .col3-wrap .col {
    width: 100%;
  }
  .sec04 .col3-wrap .col + .col .btn--line {
    border-top: none;
  }
}
.sec04 .col3-wrap .col .btn {
  width: 100%;
}
@media (max-width: 965px) {
  .sec04 .btn--line {
    width: 100%;
  }
}

/* -------------------- オープンカンパニー -------------------- */
.sec05 {
  padding-block: 8.25rem 6.25rem;
  padding-inline: 15px;
  background-color: #FEFFEA;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><pattern id="g" x="0" y="0" width="18" height="18" patternUnits="userSpaceOnUse"><path d="M0 18H18M18 0V18" stroke="%23e1e3d0" stroke-width="1" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec05 {
    padding-block: calc(60 / 390 * 100vw) calc(40 / 390 * 100vw);
    padding-inline: calc(20 / 390 * 100vw);
    background-color: #FEFFEA;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="12px"><defs><pattern id="g" x="0" y="0" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M0 12H12M12 0V12" stroke="%23e1e3d0" stroke-width="1.5" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
  }
}
.sec05__inner {
  position: relative;
  width: 965px;
  margin-inline: auto;
  background-color: var(--c-white);
  border: 2px solid var(--c-gray);
}
@media screen and (min-width: 768px) {
  .sec05__inner {
    padding-block: 5.9375rem 5rem;
  }
}
@media (max-width: 965px) {
  .sec05__inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec05__inner {
    padding-block: calc(50 / 390 * 100vw) calc(40 / 390 * 100vw);
    padding-inline: calc(30 / 390 * 100vw);
  }
}
.sec05__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: none;
}
.sec05__title img {
  width: auto;
  max-width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .sec05__title {
    top: -2.6875rem;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .sec05__title {
    width: calc(244.34 / 390 * 100vw);
    height: calc(56 / 390 * 100vw);
    top: calc(-16 / 390 * 100vw);
  }
}
.sec05__lead {
  display: inline;
  background: linear-gradient(transparent 70%, #FFEE00 70%);
  font-weight: 500;
  color: var(--c-gray);
}
@media screen and (min-width: 768px) {
  .sec05__lead {
    font-size: 1.75rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .sec05__lead {
    font-size: calc(20 / 390 * 100vw);
    line-height: 1.5;
  }
}
.sec05__desc {
  line-height: 2.3;
}
@media screen and (min-width: 768px) {
  .sec05__desc {
    margin-top: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec05__desc {
    margin-top: calc(11 / 390 * 100vw);
    text-align: left;
    font-size: calc(14 / 390 * 100vw);
  }
}
.sec05 .info-box {
  margin-top: 4.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec05 .info-box {
    margin-top: calc(20 / 390 * 100vw);
  }
}
.sec05 .info-box .info-box__ttl {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: var(--c-gray);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.sec05 .info-box .info-box__ttl::before {
  content: "";
  position: absolute;
  left: -1.7em;
  bottom: 90%;
  width: 45px;
  height: 2px;
  background-color: var(--c-gray);
  transform: rotate(43deg);
  transform-origin: bottom left;
}
@media screen and (max-width: 767px) {
  .sec05 .info-box .info-box__ttl::before {
    top: calc(-2 / 390 * 100vw);
    left: calc(-35 / 390 * 100vw);
    width: calc(35 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
}
.sec05 .info-box .info-box__ttl::after {
  content: "";
  position: absolute;
  right: -0.4em;
  bottom: 6%;
  width: 45px;
  height: 2px;
  background-color: var(--c-gray);
  transform: rotate(136deg);
  transform-origin: bottom right;
}
@media screen and (max-width: 767px) {
  .sec05 .info-box .info-box__ttl::after {
    bottom: calc(0 / 390 * 100vw);
    right: calc(0 / 390 * 100vw);
    width: calc(35 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec05 .info-box .info-box__ttl {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec05 .info-box .info-box__ttl {
    margin-bottom: calc(20 / 390 * 100vw);
    font-size: calc(16.8 / 390 * 100vw);
  }
}
.sec05 .info-box .col2-wrap {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sec05 .info-box .col2-wrap {
    display: flex;
    gap: 3.75rem;
    margin-top: 1.4375rem;
    width: 560px;
  }
}
@media screen and (max-width: 767px) {
  .sec05 .info-box .col2-wrap {
    width: calc(244 / 390 * 100vw);
    margin-top: calc(0 / 390 * 100vw);
  }
}
.sec05 .info-box .col2-wrap .col a {
  display: block;
}
@media screen and (min-width: 768px) {
  .sec05 .info-box .col2-wrap .col a {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .sec05 .info-box .col2-wrap .col a:hover {
    opacity: 0.8;
  }
}
.sec05 .info-box .col2-wrap .col a img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec05 .info-box .col2-wrap .col + .col {
    margin-top: calc(10 / 390 * 100vw);
  }
}
/*# sourceMappingURL=top.css.map */