@charset "UTF-8";
/**
 * ViewPort Mixin and setting rem to pixel.
 */
/** ここでデザインファイルのサイズを入力 */
/**
 * mixin
 */
/**
 * pxをvwで返す関数
 */
/** デスクトップ上でpxをvwを返す */
/** モバイル上でpxをvwを返す */
/** largeDisplay（1536px以上）でウィンドウサイズサイズに追従するための関数 */
/**
 * Colors
 */
.company-section {
  padding: 48rem;
  background: #fff;
  border-radius: 48rem;
}
@media (max-width: 768px) {
  .company-section {
    width: 88%;
    margin: 0 auto;
    padding: 0;
    background: unset;
    border-radius: 0;
  }
}
.company-section .heading2 {
  display: flex;
  align-items: center;
  gap: 20rem;
  margin-bottom: 20rem;
  font-size: 24rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .company-section .heading2 {
    flex-direction: column;
    justify-content: center;
  }
}
.company-section .heading2 .logo {
  width: 60rem;
}
@media (max-width: 768px) {
  .company-section .heading2 .logo {
    width: 120rem;
  }
}
.company-section video, .company-section iframe {
  width: 100%;
  height: 418rem;
  border-radius: 24rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company-section video, .company-section iframe {
    height: 49vw;
    border-radius: 18rem;
  }
}
.company-section .text {
  font-size: 15rem;
  font-weight: 400;
  line-height: 166%;
  text-align: left;
}
.company-section + .company-section {
  margin-top: 48rem;
}