@charset "UTF-8";
/* -----------------------------------------------
  Variables
--------------------------------------------------*/
:root {
  --color-text: #000;
  --color-bg: #ffffff;
  --color-base: #004098;
  --color-base2: #1b73ec;
  --color-base3: #619edb;
  --color-link: #004098;
  --color-hover: #004098;
  --color-visited: #012659;
  --color-error: #dd0000;
  --swiper-theme-color: #004098;
}

/* -----------------------------------------------
  Mixins
--------------------------------------------------*/
/* CSS Document */
/* ---------------------------------------------
　base modules
------------------------------------------------ */
.container {
  min-height: 300px;
  background: none;
}

.content {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.inner {
  position: relative;
}
@media all and (min-width: 769px) {
  .inner {
    width: min(106rem, 81.5384615385vw);
    margin-inline: auto;
  }
}
@media all and (max-width: 768px) {
  .inner {
    padding-inline: 4.8309178744vw;
  }
}

/* ---------------------------------------------
　keyvisual
------------------------------------------------ */
.keyvisual {
  position: relative;
  margin-top: -8rem;
  color: #fff;
  background: #1b73ec;
  width: 100%;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .keyvisual {
    margin-top: -12.077294686vw;
    background-image: url("../images/bg-kv-sp.png");
    background-position: left top;
    background-size: 95.1690821256vw;
    background-repeat: no-repeat;
  }
}
.keyvisual__bg {
  position: absolute;
  left: min(-19rem, -14.6153846154vw);
  bottom: -260px;
  margin: auto;
  width: 1126px;
  max-width: none;
}
@media all and (max-width: 768px) {
  .keyvisual__bg {
    display: none;
  }
}
.keyvisual__inner {
  position: relative;
}
@media all and (min-width: 769px) {
  .keyvisual__inner {
    max-width: min(120rem, 92.3076923077vw);
    min-height: min(65rem, 50vw);
    margin-inline: auto;
  }
}
@media all and (max-width: 768px) {
  .keyvisual__inner {
    min-height: 157.0048309179vw;
  }
}
.keyvisual__image {
  position: absolute;
  width: 100%;
  overflow: hidden;
  /* 画像ごとに追加アニメーション */
  /* 切り替え背景 */
  /* フェードイン・フェードアウト */
  /* 少しずつ拡大 */
  /* 右→左 */
  /* 左→右 */
}
@media all and (min-width: 769px) {
  .keyvisual__image.kv-main {
    top: 125px;
    right: min(2.5rem, 1.9230769231vw);
    width: min(60.5rem, 46.5384615385vw);
    height: min(42rem, 32.3076923077vw);
  }
}
@media all and (max-width: 768px) {
  .keyvisual__image.kv-main {
    top: 29.7101449275vw;
    inset-inline: 0;
    margin-inline: auto;
    width: 73.0676328502vw;
    height: 50.7246376812vw;
  }
}
.keyvisual__image.kv-upper, .keyvisual__image.kv-lower {
  filter: blur(4px);
}
@media all and (min-width: 769px) {
  .keyvisual__image.kv-upper, .keyvisual__image.kv-lower {
    width: min(30rem, 23.0769230769vw);
  }
}
@media all and (max-width: 768px) {
  .keyvisual__image.kv-upper, .keyvisual__image.kv-lower {
    width: 33.8164251208vw;
  }
}
@media all and (min-width: 769px) {
  .keyvisual__image.kv-upper {
    top: 60px;
    left: 0;
    height: min(23rem, 17.6923076923vw);
  }
}
@media all and (max-width: 768px) {
  .keyvisual__image.kv-upper {
    top: 12.077294686vw;
    left: 3.6231884058vw;
    height: 25.3623188406vw;
  }
}
@media all and (min-width: 769px) {
  .keyvisual__image.kv-lower {
    bottom: 40px;
    left: min(33rem, 25.3846153846vw);
    height: min(23rem, 17.6923076923vw);
  }
}
@media all and (max-width: 768px) {
  .keyvisual__image.kv-lower {
    top: 70.0483091787vw;
    right: 3.6231884058vw;
    height: 25.3623188406vw;
  }
}
.keyvisual__image .kv-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: change-img-anim 15s 0s infinite;
}
.keyvisual__image .kv-image:nth-of-type(2) {
  animation-delay: 5s;
}
.keyvisual__image .kv-image:nth-of-type(3) {
  animation-delay: 10s;
}
.keyvisual__image picture::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.9;
  animation: slide-after 15s infinite;
}
.keyvisual__image .is-kv-01 .kv-image {
  animation: change-img-anim 15s infinite, zoom-anim 15s infinite;
}
.keyvisual__image .is-kv-01::after {
  animation-delay: 15s;
}
.keyvisual__image .is-kv-02 .kv-image {
  animation: change-img-anim 15s infinite 5s, slide-left-anim 15s infinite 5s;
}
.keyvisual__image .is-kv-02::after {
  animation-delay: 5s;
}
.keyvisual__image .is-kv-03 .kv-image {
  animation: change-img-anim 15s infinite 10s, slide-right-anim 15s infinite 10s;
}
.keyvisual__image .is-kv-03::after {
  animation-delay: 10s;
}
@keyframes slide-after {
  0% {
    transform: translateY(100%);
    opacity: 1;
  }
  3% {
    transform: translateY(0);
    opacity: 0.8;
  }
  6% {
    transform: translateY(0);
    opacity: 0.8;
  }
  9% {
    transform: translateY(-100%);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0.6;
  }
}
@keyframes change-img-anim {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom-anim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes slide-left-anim {
  0% {
    transform: translateX(5%) scale(1.1);
  }
  50% {
    transform: translateX(0) scale(1.1);
  }
  100% {
    transform: translateX(-5%) scale(1.1);
  }
}
@keyframes slide-right-anim {
  0% {
    transform: translateX(-5%) scale(1.1);
  }
  50% {
    transform: translateX(0) scale(1.1);
  }
  100% {
    transform: translateX(5%) scale(1.1);
  }
}
.keyvisual__catch {
  position: absolute;
  z-index: 10;
}
@media all and (min-width: 769px) {
  .keyvisual__catch {
    top: min(18rem, 13.8461538462vw);
    left: min(7rem, 5.3846153846vw);
  }
}
@media all and (max-width: 768px) {
  .keyvisual__catch {
    bottom: 0;
    left: 4.8309178744vw;
  }
}
.keyvisual__catch h2 {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-block: 0;
}
.keyvisual__catch h2 .en {
  font-size: 6rem;
  font-weight: normal;
  letter-spacing: 0.07em;
}
@media all and (max-width: 768px) {
  .keyvisual__catch h2 .en {
    font-size: 9.6618357488vw;
  }
}
.keyvisual__catch h2 .ja {
  font-size: 4.6rem;
}
@media all and (max-width: 768px) {
  .keyvisual__catch h2 .ja {
    font-size: 7.4879227053vw;
  }
}
.keyvisual__catch p {
  margin-top: 2rem;
}

/* ---------------------------------------------
　content
------------------------------------------------ */
/* News */
.news {
  padding-top: 8rem;
}
@media all and (max-width: 768px) {
  .news {
    padding-top: 3rem;
  }
}
@media all and (min-width: 769px) {
  .news .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: min(4rem, 3.0769230769vw);
  }
}
@media all and (min-width: 769px) {
  .news__title {
    flex: 0 0 min(24rem, 18.4615384615vw);
  }
}
@media all and (max-width: 768px) {
  .news__title {
    margin-bottom: 2rem;
  }
}
.news__list {
  width: 100%;
  border-top: 1px solid #ddd;
}
.news__list .article__link {
  display: flex;
  align-items: baseline;
  row-gap: 1rem;
  color: #333;
  text-decoration: none;
  padding-block: 3rem;
  border-bottom: 1px solid #ddd;
}
@media all and (max-width: 768px) {
  .news__list .article__link {
    flex-wrap: wrap;
    padding-block: 2rem;
  }
}
@media all and (min-width: 769px) {
  .news__list .article__link:hover {
    color: #004098;
  }
  .news__list .article__link:hover .article__category {
    color: #fff;
    border-color: #004098;
    background: #004098;
  }
  .news__list .article__link:hover .c-icon {
    fill: #004098;
  }
}
.news__list .article__date {
  flex: 0 0 min(10.6rem, 8.1538461538vw);
}
@media all and (max-width: 768px) {
  .news__list .article__date {
    flex-basis: 10.5rem;
  }
}
.news__list .article__category {
  font-weight: bold;
  text-align: center;
  border: 1px solid #ddd;
  flex: 0 0 min(14rem, 10.7692307692vw);
  margin-right: min(2rem, 1.5384615385vw);
  transition: 0.3s;
}
@media all and (max-width: 768px) {
  .news__list .article__category {
    flex-basis: 14rem;
  }
}
.news__list .article__category:empty::before {
  content: "お知らせ";
}
.news__list .article__title {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}
@media all and (max-width: 768px) {
  .news__list .article__title {
    width: 82.1256038647vw;
    flex: initial;
  }
}
.news__list .article__icon {
  margin-left: auto;
  text-align: center;
  flex: 0 0 5rem;
}
@media all and (max-width: 768px) {
  .news__list .article__icon {
    flex: 0 0 6.038647343vw;
  }
}
.news .section__link {
  margin-top: 2.5rem;
  justify-content: center;
}

/* Introduction */
.introduction {
  padding-top: 8rem;
}
@media all and (max-width: 768px) {
  .introduction {
    padding-top: 6rem;
  }
}
@media all and (min-width: 769px) {
  .introduction .inner {
    display: flex;
    column-gap: min(6rem, 4.6153846154vw);
  }
}
.introduction h2 {
  flex-shrink: 0;
  font-size: 3.6rem;
  line-height: inherit;
  margin: 0;
}
@media all and (max-width: 768px) {
  .introduction h2 {
    font-size: 2.5rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.introduction p {
  margin: 0;
}
.introduction__slide {
  display: flex;
  max-width: 100%;
  overflow: hidden;
  margin-top: 5rem;
}
@media all and (max-width: 768px) {
  .introduction__slide {
    margin-top: 2rem;
  }
}
.introduction__slide .slide-item {
  display: flex;
  align-items: normal;
  animation: loop-slide 50s infinite linear 1s both;
}
.introduction__slide .slide-item li {
  width: min(50rem, 38.4615384615vw);
}
@media all and (max-width: 768px) {
  .introduction__slide .slide-item li {
    width: 25rem;
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Strength */
.strength {
  padding-block: 7rem;
  overflow-x: clip;
}
.strength__bg {
  position: absolute;
  max-width: none;
}
@media all and (min-width: 769px) {
  .strength__bg {
    top: 30rem;
    right: -7rem;
    width: min(300rem, 230.7692307692vw);
  }
}
@media all and (max-width: 768px) {
  .strength__bg {
    top: 205.3140096618vw;
    right: -2rem;
    width: 362.3188405797vw;
  }
}
.strength h2 {
  text-align: center;
  margin: 0 0 3rem;
}
.strength h2 .small {
  display: block;
  font-size: 1.6rem;
}
@media all and (max-width: 768px) {
  .strength h2 .small {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.strength h2 .large {
  font-size: 3.6rem;
}
@media all and (max-width: 768px) {
  .strength h2 .large {
    font-size: 2.5rem;
  }
}
.strength h2 .x-large {
  font-size: 5.6rem;
  color: #004098;
}
@media all and (max-width: 768px) {
  .strength h2 .x-large {
    font-size: 3.9rem;
    line-height: 1;
  }
}
.strength__list {
  display: flex;
  align-items: flex-start;
  column-gap: min(8rem, 6.1538461538vw);
}
@media all and (max-width: 768px) {
  .strength__list {
    flex-direction: column;
    row-gap: 3rem;
  }
}
.strength__list-item {
  position: relative;
}
@media all and (min-width: 769px) {
  .strength__list-item:nth-of-type(2) {
    margin-top: 5rem;
  }
}
@media all and (min-width: 769px) {
  .strength__list-item:hover .strength__image::before {
    opacity: 0.6;
  }
  .strength__list-item:hover .strength__image img {
    transform: scale(1.05);
  }
}
.strength__image {
  position: relative;
  overflow: hidden;
}
.strength__image img {
  transition: 0.3s;
}
.strength__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-base);
  transition: 0.3s;
  opacity: 0;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .strength__image {
    width: 100%;
    overflow: hidden;
  }
}
@media all and (max-width: 768px) {
  .strength__image img {
    object-fit: cover;
    aspect-ratio: 374/200;
  }
}
.strength__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media all and (max-width: 768px) {
  .strength__title {
    margin-bottom: 1rem;
  }
}
.strength__title h3 {
  margin: 0;
}
.strength__title h3 span {
  display: block;
}
.strength__title h3 .en {
  font-size: 1.6rem;
  color: #004098;
  margin-bottom: 0.5rem;
}
@media all and (max-width: 768px) {
  .strength__title h3 .en {
    font-size: 1.4rem;
  }
}
.strength__title h3 .ja {
  font-size: 3.6rem;
}
@media all and (max-width: 768px) {
  .strength__title h3 .ja {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 768px) {
  .strength .button__link {
    background: var(--color-link);
  }
  .strength .button__link .c-icon {
    fill: #fff;
  }
}

/* Products */
.products {
  background-color: #f1f6f7;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fff calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fff calc(100% - 1px));
  background-size: 10vw 10vw;
  background-repeat: repeat;
  background-position: top left;
  padding-top: 8rem;
  padding-bottom: 15rem;
}
@media all and (max-width: 768px) {
  .products {
    background-size: 16.66666667vw 16.66666667vw;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}
.products__list {
  display: flex;
  flex-wrap: wrap;
  gap: min(6rem, 4.6153846154vw);
  margin-top: min(5rem, 3.8461538462vw);
}
@media all and (max-width: 768px) {
  .products__list {
    flex-direction: column;
    row-gap: 2rem;
    margin-top: 2.5rem;
  }
}
.products__list-item {
  position: relative;
  padding: min(4rem, 3.0769230769vw);
  background: rgba(0, 64, 152, 0.9);
  color: #fff;
  transition: 0.3s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 0 min(50rem, 38.4615384615vw);
}
@media all and (max-width: 768px) {
  .products__list-item {
    padding: 4.8309178744vw;
    flex-wrap: nowrap;
    column-gap: 3.6231884058vw;
  }
}
@media all and (min-width: 769px) {
  .products__list-item:first-child {
    flex-wrap: nowrap;
    flex: 0 0 100%;
    gap: min(6rem, 4.6153846154vw);
    min-height: min(40rem, 30.7692307692vw);
  }
  .products__list-item:first-child figure {
    width: min(46rem, 35.3846153846vw);
    margin: 0;
  }
}
@media all and (max-width: 768px) {
  .products__list-item:first-child {
    flex-wrap: wrap;
  }
  .products__list-item:first-child figure {
    flex: 100%;
    margin-block: 4rem;
  }
}
@media all and (min-width: 769px) {
  .products__list-item:hover {
    background: rgba(230, 236, 245, 0.9);
    color: var(--color-text);
  }
}
.products__list-item h3 {
  font-size: min(3.6rem, 2.7692307692vw);
  margin: 0;
}
@media all and (max-width: 768px) {
  .products__list-item h3 {
    font-size: 6.038647343vw;
  }
}
.products__list-item h4 {
  font-size: min(2rem, 1.5384615385vw);
  margin: 0;
}
@media all and (max-width: 768px) {
  .products__list-item h4 {
    font-size: 1.8rem;
  }
}
.products__list-item p {
  margin-block: 3rem 0;
}
@media all and (max-width: 768px) {
  .products__list-item p {
    margin-block: 2rem;
  }
}
.products__image {
  width: min(27.5rem, 21.1538461538vw);
  margin: 0 auto min(5rem, 3.8461538462vw);
}
@media all and (max-width: 768px) {
  .products__image {
    flex: 0 0 31.4009661836vw;
    margin: 0 auto;
  }
}
.products__title {
  display: flex;
  align-items: center;
  column-gap: min(2rem, 1.5384615385vw);
  margin-bottom: 2.5rem;
}
@media all and (max-width: 768px) {
  .products__title {
    align-items: baseline;
    margin-bottom: 2rem;
  }
}

/* Case */
.case {
  padding-top: min(10rem, 7.6923076923vw);
  overflow-x: hidden;
}
@media all and (max-width: 768px) {
  .case {
    padding-top: 6rem;
  }
}
@media all and (min-width: 769px) {
  .case .inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: min(4rem, 3.0769230769vw);
    padding-bottom: min(7rem, 5.3846153846vw);
  }
}
.case__bg {
  position: absolute;
  z-index: -1;
}
@media all and (min-width: 769px) {
  .case__bg {
    bottom: 0;
    left: -23rem;
    width: min(68.4rem, 52.6153846154vw);
  }
}
@media all and (max-width: 768px) {
  .case__bg {
    top: -8.4541062802vw;
    right: -9.6618357488vw;
    width: 73.1884057971vw;
  }
}
@media all and (min-width: 769px) {
  .case__title {
    flex: 0 0 min(23rem, 17.6923076923vw);
  }
}
@media all and (max-width: 768px) {
  .case__title {
    margin-bottom: 2rem;
  }
}
.case__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: min(3rem, 2.3076923077vw) min(7rem, 5.3846153846vw);
}
@media all and (max-width: 768px) {
  .case__list {
    gap: 7.2463768116vw 4.8309178744vw;
  }
}
.case__list .article__link {
  color: #333;
  text-decoration: none;
}
@media all and (min-width: 769px) {
  .case__list .article__link:hover .article__image img {
    transform: scale(1.05);
  }
  .case__list .article__link:hover .article__image::before {
    opacity: 0.7;
  }
  .case__list .article__link:hover .article__image figcaption {
    opacity: 1;
    z-index: 1;
  }
}
.case__list .article__image {
  position: relative;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  overflow: hidden;
}
.case__list .article__image img {
  transition: 0.3s;
}
.case__list .article__image figcaption {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: min(1.6rem, 1.2307692308vw);
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}
.case__list .article__image figcaption .c-icon {
  fill: #fff;
}
.case__list .article__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-base);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
.case__list .article__image img:not(.noimage) {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
}
.case__list .article__title {
  font-size: 2rem;
  line-height: inherit;
  margin-block: 2rem 0.5rem;
}
@media all and (max-width: 768px) {
  .case__list .article__title {
    font-size: 1.7rem;
    margin-block: 1rem 0.5rem;
  }
}
@media all and (max-width: 768px) {
  .case .section__link {
    justify-content: center;
    margin-block: 2rem 6rem;
  }
}

.section__cover {
  position: relative;
  width: 100%;
  height: min(40rem, 30.7692307692vw);
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .section__cover {
    height: 48.309178744vw;
  }
}
.section__cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Company */
.company {
  padding-top: min(6rem, 4.6153846154vw);
  overflow-x: clip;
}
@media all and (max-width: 768px) {
  .company {
    padding-top: 3rem;
  }
}
.company .inner {
  padding-bottom: min(12.5rem, 9.6153846154vw);
}
@media all and (max-width: 768px) {
  .company .inner {
    padding-bottom: 3rem;
  }
}
.company .section__title {
  text-align: center;
  margin-bottom: min(3rem, 2.3076923077vw);
}
@media all and (max-width: 768px) {
  .company .section__title {
    margin-bottom: 2rem;
  }
}
.company .section__title .ja {
  margin-top: min(1.5rem, 1.1538461538vw);
}
.company p {
  text-align: center;
}
.company__bg {
  position: absolute;
  max-width: none;
  z-index: -1;
}
@media all and (min-width: 769px) {
  .company__bg {
    bottom: min(8rem, 6.1538461538vw);
    left: -39rem;
    width: min(300rem, 230.7692307692vw);
  }
}
@media all and (max-width: 768px) {
  .company__bg {
    top: 166.6666666667vw;
    left: -38.6473429952vw;
    width: 362.3188405797vw;
  }
}
.company__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: min(5rem, 3.8461538462vw);
}
.company__item-list {
  position: relative;
  flex: 0 0 min(23rem, 17.6923076923vw);
}
@media all and (min-width: 769px) {
  .company__item-list:hover .company__image::before {
    opacity: 0.6;
  }
  .company__item-list:hover .company__image img {
    transform: scale(1.05);
  }
}
@media all and (max-width: 768px) {
  .company__item-list {
    flex-basis: 42.7536231884vw;
    margin-bottom: 3rem;
  }
}
.company__item-list:last-child {
  flex: 100%;
  display: flex;
  align-items: flex-start;
  margin-top: min(6.5rem, 5vw);
}
@media all and (max-width: 768px) {
  .company__item-list:last-child {
    flex-direction: column;
    margin-top: 0;
  }
}
@media all and (min-width: 769px) {
  .company__item-list:last-child .company__image {
    flex: 0 0 min(75rem, 57.6923076923vw);
    margin-right: min(4rem, 3.0769230769vw);
    margin-bottom: 0;
  }
}
.company__item-list:last-child .company__title {
  margin-top: min(5rem, 3.8461538462vw);
  width: min(19rem, 14.6153846154vw);
}
@media all and (max-width: 768px) {
  .company__item-list:last-child .company__title {
    margin-top: 0;
    width: 42.7536231884vw;
  }
}
.company__image {
  position: relative;
  margin-bottom: min(2rem, 1.5384615385vw);
  overflow: hidden;
}
.company__image img {
  transition: 0.3s;
}
.company__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-base);
  transition: 0.3s;
  opacity: 0;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .company__image {
    margin-bottom: 2rem;
  }
}
.company__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media all and (max-width: 768px) {
  .company__title {
    align-items: flex-start;
  }
}
.company__title h3 {
  margin: 0;
}
.company__title h3 span {
  display: block;
}
.company__title h3 .en {
  color: var(--color-base);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
@media all and (max-width: 768px) {
  .company__title h3 .en {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
  }
}
.company__title h3 .ja {
  font-size: 2rem;
}

/* Recruit */
.recruit {
  padding-bottom: min(7.5rem, 5.7692307692vw);
}
@media all and (max-width: 768px) {
  .recruit {
    padding-bottom: 6rem;
  }
}
.recruit__div {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(27rem, 20.7692307692vw);
  background: #1b73ec;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .recruit__div {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem 2rem;
    min-height: 19rem;
  }
}
.recruit__div .section__title {
  color: #fff;
  z-index: 1;
}
@media all and (min-width: 769px) {
  .recruit__div .section__title {
    margin-left: auto;
    margin-right: min(8.5rem, 6.5384615385vw);
    text-align: center;
  }
}
@media all and (max-width: 768px) {
  .recruit__div .section__title {
    flex-direction: row;
    align-items: center;
    column-gap: 1rem;
  }
}
.recruit__div .section__title .en {
  font-size: min(7rem, 5.3846153846vw);
}
@media all and (max-width: 768px) {
  .recruit__div .section__title .en {
    font-size: 4.5rem;
  }
}
.recruit__div .button__link {
  position: absolute;
  right: min(2rem, 1.5384615385vw);
  bottom: min(2rem, 1.5384615385vw);
  z-index: 1;
}
@media all and (max-width: 768px) {
  .recruit__div .button__link {
    top: 2.5rem;
    right: 2.5rem;
  }
}
.recruit__div .recruit__bg {
  transition: 0.3s;
}
@media all and (min-width: 769px) and (min-width: 769px) {
  .recruit__div:hover .button__link {
    background: #f0e126;
  }
}
@media all and (min-width: 769px) {
  .recruit__div:hover .recruit__bg {
    transform: scale(1.05);
  }
}
.recruit__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
}