@charset "UTF-8";
/**
 * ViewPort Mixin and setting rem to pixel.
 */
/** ここでデザインファイルのサイズを入力 */
/**
 * mixin
 */
/**
 * pxをvwで返す関数
 */
/** デスクトップ上でpxをvwを返す */
/** モバイル上でpxをvwを返す */
/** largeDisplay（1536px以上）でウィンドウサイズサイズに追従するための関数 */
/**
 * Colors
 */
.two-column {
  display: flex;
  gap: 70rem;
  width: 1184rem;
  margin: 70rem auto 0;
}
@media (max-width: 768px) {
  .two-column {
    margin: 0 auto;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.two-column .column-left {
  width: 840rem;
}
@media (max-width: 768px) {
  .two-column .column-left {
    width: 100%;
  }
}
.two-column .column-right {
  width: 308rem;
  height: -moz-max-content;
  height: max-content;
  position: sticky;
  top: 100rem;
  left: 0;
}
@media (max-width: 768px) {
  .two-column .column-right {
    display: none;
    width: 100%;
  }
}

.blog-column {
  padding: 36rem 24rem;
  background: #fff;
  border-radius: 24rem;
}
.blog-column + .blog-column {
  margin-top: 48rem;
}
.blog-column .heading2 {
  margin-bottom: 24rem;
}
.blog-column .heading2 .en {
  color: var(--key-1, #FF9000);
  font-size: 30rem;
  font-style: normal;
  font-weight: 600;
}
.blog-column .heading2 .ja {
  display: block;
  margin-top: 12rem;
  font-size: 16rem;
  font-style: normal;
  font-weight: 700;
}
.blog-column .blog-item {
  display: flex;
  gap: 14rem;
  align-items: center;
  padding: 22rem 0;
  border-top: 1px solid #D7D7D7;
}
.blog-column .blog-item:last-of-type {
  border-bottom: 1px solid #D7D7D7;
}
.blog-column .blog-item .blog-image {
  width: 72rem;
  aspect-ratio: 2/3;
  border-radius: 12rem;
  position: relative;
  height: 72rem;
  overflow: hidden;
}
.blog-column .blog-item .blog-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-column .blog-item .blog-text {
  font-size: 16rem;
  font-style: normal;
  font-weight: 700;
  flex: 1;
  text-align: left;
  line-height: 156%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.body-inner {
  background: #FF9000;
}
@media (max-width: 768px) {
  .body-inner {
    background: #fff;
  }
}

.two-column {
  margin: 0 auto;
  padding-top: 175rem;
}
@media (max-width: 768px) {
  .two-column {
    padding-top: 100rem;
    margin-bottom: 100rem;
  }
}

.heading1 {
  margin-bottom: 30rem;
  color: #fff;
}
@media (max-width: 768px) {
  .heading1 {
    color: #FF9000;
  }
}
.heading1 .en {
  display: block;
  margin-bottom: 10rem;
  font-size: 48rem;
  font-weight: 600;
}
.heading1 .ja {
  font-size: 16rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2rem;
}
@media (max-width: 768px) {
  .heading1 .ja {
    color: #000;
  }
}

.staff-item {
  padding: 48rem;
  background: #fff;
  border-radius: 48rem;
  display: flex;
  gap: 48rem;
  font-size: 15rem;
  text-align: left;
  line-height: 167%;
  font-weight: 400;
}
@media (max-width: 768px) {
  .staff-item {
    padding: 0;
    width: 82%;
    margin: 24rem auto 0;
    flex-direction: column;
  }
}
.staff-item + .staff-item {
  margin-top: 24rem;
}
@media (max-width: 768px) {
  .staff-item + .staff-item {
    margin-top: 90rem;
  }
}
.staff-item .staff-left,
.staff-item .staff-right {
  flex-basis: calc(50% - 24rem);
}
.staff-item .staff-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 24rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .staff-item .staff-image {
    margin-bottom: 24rem;
  }
}
.staff-item .staff-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.staff-item .info-item {
  display: block;
}
.staff-item .info-item .desktop-only {
  display: inline-block;
}
@media (max-width: 768px) {
  .staff-item .info-item .desktop-only {
    display: none;
  }
}
@media (max-width: 768px) {
  .staff-item .info-item {
    padding: 22rem 0;
    line-height: 177%;
    border-top: 1px solid #B4B4B4;
  }
}
@media (max-width: 768px) {
  .staff-item .info-item:last-of-type {
    border-bottom: 1px solid #B4B4B4;
  }
}
.staff-item .info-item .title {
  color: var(--key-1, #FF9000);
  font-size: 18rem;
  font-style: normal;
  font-weight: 700;
  display: block;
}
.staff-item .info-item .value {
  font-size: 18rem;
}
.staff-item .heading3 {
  font-size: 20rem;
  font-weight: 600;
  display: block;
  z-index: 2;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  margin-bottom: 15rem;
}
.staff-item .heading3::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: #FF9000;
  position: absolute;
  bottom: 1rem;
  left: 0;
  z-index: -1;
}
.staff-item .appeal {
  border-radius: 24rem;
  background: rgba(255, 144, 0, 0.1);
  padding: 24rem;
  margin-top: 24rem;
}
@media (max-width: 768px) {
  .staff-item .appeal .heading3 {
    margin: 0 auto 15rem;
  }
}
.staff-item .thoughts,
.staff-item .message {
  margin-top: 35rem;
}
.staff-item .info {
  font-size: 15rem;
  margin: 15rem auto;
}
.staff-item .job,
.staff-item .kana {
  font-size: 15rem;
  display: block;
  font-weight: 700;
}
@media (max-width: 768px) {
  .staff-item .job,
  .staff-item .kana {
    text-align: center;
  }
}
.staff-item .name {
  font-size: 24rem;
  font-weight: 700;
  display: block;
  margin: 10rem auto;
}
@media (max-width: 768px) {
  .staff-item .name {
    text-align: center;
  }
}