@charset "UTF-8";
/*
	@include sc(pc) {
		width: 100%;
	}
	@include sc(sp) {
		width: 50%;
	}
*/
/*
	@include hover() {
		opacity: 0.6;
	}
*/
/*
	$line:イラレの行の値
	$size:イラレの文字の値

	@include lh(38, 15);
*/
/*
	@include taJ();
*/
/*
	@extend %rightarr;
*/
/*
Robotoフォント設定
500：Medium（デフォルト）
*/
/*
Interstateフォント設定
400：regular（デフォルト）
700：Bold
*/
/*
Noto Sans CJK JPフォント設定
500：Medium（デフォルト）
700：Bold
*/
/*
	$weight:フォントの太さ

	@include f_min();
	@include f_min(500);
	@include f_min(600);
*/
/*
	$color:色指定
	$stripe:線サイズ
	$spacing:線の空きサイズ
	$height:太さ

	@include dotted(#e6e1d2, 4,4,2);
*/
/*
example
@include dotted-y(#COLOR, WidthPX,SpaceingPX,LengthPX,); 横破線
@include dotted-y(#e6e1d2, 4,4,2,10);
*/
.slogan {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.34rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .slogan {
    font-size: 0.23rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 640px) {
  .slogan__in {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

/* メインビジュアル */
.hero {
  padding-top: 0.8rem;
  position: relative;
  height: 6.4rem;
  display: block;
}
@media screen and (max-width: 640px) {
  .hero {
    padding-top: 0.6rem;
    height: 3.3rem;
  }
}

.hero__bgArea {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 1rem);
  height: 7.2rem;
  border-bottom-left-radius: 0.1rem;
  overflow: hidden;
  z-index: -1;
  display: block;
}
@media screen and (max-width: 640px) {
  .hero__bgArea {
    width: calc(100% - 0.2rem);
    height: 3.9rem;
    aspect-ratio: 3/2;
  }
}
.hero__bgArea.changeHero {
  width: 100%;
  height: 100vh;
  border-bottom-left-radius: 0;
}
@media screen and (max-width: 640px) {
  .hero__bgArea.changeHero {
    width: 100%;
    height: 100vh;
    border-bottom-left-radius: 0;
  }
}

.hero__bg {
  position: relative;
  z-index: -1;
  right: 0;
  top: 0.8rem;
  aspect-ratio: 1220/640;
  width: 100%;
  min-height: 7.2rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .hero__bg {
    top: 0.6rem;
    aspect-ratio: 1.9/1;
    min-height: 3.9rem;
  }
}
.hero__bg.active {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 640px) {
  .hero__bg.active {
    width: 100%;
    height: 100vh;
    border-bottom-left-radius: 0;
  }
}

.hero__titleTextBox {
  position: absolute;
  left: 2rem;
  bottom: 0.72rem;
}
@media screen and (max-width: 640px) {
  .hero__titleTextBox {
    left: 0.5rem;
    bottom: 0.25rem;
  }
}

.hero__titleText {
  font-family: interstate, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .hero__titleText {
    font-size: 0.34rem;
    line-height: 1.18;
  }
}
.hero__titleText--firstStep {
  color: #fff;
}
.hero__titleText--secondStep {
  color: #328cdc;
}

.hero__subTitleText {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.4rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .hero__subTitleText {
    margin-top: 0.1rem;
    font-size: 0.19rem;
  }
}

/* インフォメーション, 技術ブログ*/
.news {
  background-color: #fff;
  padding: 0.9rem 0 1.02rem;
}
@media screen and (max-width: 640px) {
  .news {
    padding: 0.46rem 0 0;
  }
}

.news__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.news__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 640px) {
  .news__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.46rem;
  }
  .news__container::before {
    content: none;
  }
}

.news__box {
  width: 5.2rem;
}
@media screen and (max-width: 640px) {
  .news__box {
    width: 100%;
  }
}

.news__menuBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #000;
  padding-bottom: 0.15rem;
}
@media screen and (max-width: 640px) {
  .news__menuBox {
    border-bottom: 1.5px solid #000;
    padding-bottom: 0.2rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.news__titleBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .news__titleBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news__title {
  font-family: interstate, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.34rem;
  line-height: 1.56;
  letter-spacing: 0.05em;
  color: #328cdc;
}
@media screen and (max-width: 640px) {
  .news__title {
    font-size: 0.25rem;
    line-height: 1;
  }
}

.news__subTitle {
  margin-left: 0.1rem;
}
.news__subTitle::before {
  left: 0.05rem;
}
@media screen and (max-width: 640px) {
  .news__subTitle {
    line-height: 1.56;
    padding-left: 0.22rem;
    margin-top: 0.12rem;
    margin-left: 0;
  }
  .news__subTitle::before {
    left: 0;
  }
}

.news__link {
  position: relative;
  padding-right: 12px;
  font-family: interstate, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.15rem;
  line-height: 1.73;
  letter-spacing: 0;
  color: #12222f;
  margin-top: 0.15rem;
}
@media screen and (max-width: 640px) {
  .news__link {
    margin-top: 0;
    font-size: 0.14rem;
  }
}
.news__link::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.newsTab__item {
  padding: 0.23rem 0 0.15rem;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 640px) {
  .newsTab__item {
    padding: 0.18rem 0 0.12rem;
  }
}

.newsTab__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 640px) {
  .newsTab__box {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.newsTab__time {
  padding-left: 0.18rem;
  position: relative;
  font-family: "Kulim Park", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.14rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 640px) {
  .newsTab__time {
    font-size: 0.12rem;
    padding-left: 0.17rem;
  }
}
.newsTab__time::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0.1rem;
  border: 1px solid #328cdc;
}
@media screen and (max-width: 640px) {
  .newsTab__time::before {
    width: 7.5px;
  }
}

.newsTab__category {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.12rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #328cdc;
  padding-left: 0.15rem;
}
@media screen and (max-width: 640px) {
  .newsTab__category {
    font-size: 0.11rem;
  }
}

.newsTab__caption {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.15rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}
@media screen and (max-width: 640px) {
  .newsTab__caption {
    font-size: 0.14rem;
    line-height: 1.78;
    margin-top: 0.1rem;
  }
}

.nonePosts__text {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.15rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding: 0.23rem 0;
}
@media screen and (max-width: 640px) {
  .nonePosts__text {
    padding: 0.18rem 0;
    font-size: 0.14rem;
    line-height: 1.78;
  }
}

/* 研究開発 */
.researchDevelopment {
  padding: 1rem 0 0.93rem;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
}
.researchDevelopment::before, .researchDevelopment::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.researchDevelopment::before {
  top: 0;
}
.researchDevelopment::after {
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .researchDevelopment {
    padding: 0.5rem 0 0.43rem;
  }
  .researchDevelopment::before {
    content: none;
  }
  .researchDevelopment::after {
    left: -0.3rem;
    width: calc(100% + 0.6rem);
  }
}

@media screen and (max-width: 640px) {
  .research__slogan {
    line-height: 1.2;
  }
}

.research__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  margin: 0.8rem auto;
}
@media screen and (max-width: 640px) {
  .research__box {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0.3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0.38rem auto 0.5rem;
  }
}

@media screen and (max-width: 640px) {
  .research__imageBox {
    margin: 0 -0.1rem;
    width: calc(100% + 0.2rem);
  }
}

.research__image {
  border-radius: 0.1rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .research__image {
    border-radius: 0.05rem;
  }
}

.research__textBox {
  width: 4.4rem;
}
@media screen and (max-width: 640px) {
  .research__textBox {
    width: 100%;
  }
}

.research__title {
  line-height: 1;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  .research__title {
    font-size: 0.35rem;
    line-height: 1.2;
    margin-bottom: 0.15rem;
  }
}

.research__subTitle {
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  .research__subTitle {
    margin-bottom: 0.19rem;
  }
}

.research__text {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
  .research__text {
    font-size: 0.14rem;
    line-height: 2.14;
  }
}

.research__button {
  margin-top: 0.3rem;
}

/* プロジェクト */
.projects {
  position: relative;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 640px) {
  .projects {
    margin-bottom: 0.5rem;
  }
}

.projects__titleBox {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 640px) {
  .projects__titleBox {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -webkit-flex-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.projects__title {
  text-orientation: mixed;
  line-height: 1;
}

.projects__subTitle {
  padding-top: 0.3rem;
  margin-left: 0.15rem;
  padding-left: 0;
}
@media screen and (max-width: 640px) {
  .projects__subTitle {
    font-size: 0.14rem;
    line-height: 1;
    margin-left: 0;
    padding-left: 0;
  }
}
.projects__subTitle::before {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(90deg);
          transform: translate(-50%, 50%) rotate(90deg);
  width: 10px;
  border: 1px solid #328cdc;
}

.projects__list {
  margin-left: auto;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0.2666666667rem;
     -moz-column-gap: 0.2666666667rem;
          column-gap: 0.2666666667rem;
  max-width: 10.8rem;
}
@media screen and (max-width: 640px) {
  .projects__list {
    margin-left: auto;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, auto);
    -webkit-column-gap: 0.15rem;
       -moz-column-gap: 0.15rem;
            column-gap: 0.15rem;
    row-gap: 0.4rem;
    width: 87.3%;
  }
}

.projects__imageBox {
  display: block;
  position: relative;
}

.projects__image {
  border-radius: 0.1rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .projects__image {
    border-radius: 0.06rem;
    aspect-ratio: 260/240;
  }
}

.projects__imageText {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-family: interstate, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.22rem;
  line-height: 1.46;
  letter-spacing: 0;
}
@media screen and (max-width: 640px) {
  .projects__imageText {
    font-size: 0.14rem;
    line-height: 1.14;
  }
}

.projects__textBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0.28rem;
}
@media screen and (max-width: 640px) {
  .projects__textBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}

.projects__num {
  font-family: interstate, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #328cdc;
  position: relative;
  padding-left: 0.17rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  .projects__num {
    padding-left: 0.15rem;
    font-size: 0.15rem;
    line-height: 2.2;
    margin-bottom: 0;
    margin-top: 0.05rem;
  }
}
.projects__num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0.1rem;
  border: 1px solid #328cdc;
}

.projects__text {
  margin-left: 0.18rem;
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.18rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
  .projects__text {
    font-size: 0.14rem;
    line-height: 1.44;
    letter-spacing: -0.08em;
    margin-left: 0;
  }
}

/* 共同研究 */
.collaborating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 0.1rem;
  padding: 0.55rem 0.59rem;
  margin-bottom: 0.75rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .collaborating {
    border: none;
    border-radius: 0.05rem 0 0.05rem 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.35rem 0 0.3rem;
    gap: 0;
    margin-bottom: 0.5rem;
  }
}
.collaborating::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #328cdc;
  border-left: 1px solid #328cdc;
  border-top-left-radius: 0.1rem;
  width: 30%;
  height: 40%;
}
@media screen and (max-width: 640px) {
  .collaborating::before {
    width: 2rem;
    height: 0.3rem;
    border-top-left-radius: 0.05rem;
  }
}
.collaborating::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #328cdc;
  border-right: 1px solid #328cdc;
  border-bottom-right-radius: 0.1rem;
  width: 30%;
  height: 40%;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .collaborating::after {
    width: 2rem;
    height: 0.3rem;
    border-bottom-right-radius: 0.05rem;
  }
}

.collaborating__textBox {
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .collaborating__textBox {
    padding: 0 0.3rem 0.3rem;
    z-index: 0;
  }
}

.collaborating__title {
  line-height: 1;
  margin-bottom: 0.2rem;
}

.collaborating__subTitle {
  margin-bottom: 0.2rem;
}

.collaborating__text {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
  .collaborating__text {
    font-size: 0.12rem;
    line-height: 2.08;
  }
}

@media screen and (max-width: 640px) {
  .collaborating__imageContainer {
    max-width: calc(100% + 0.6rem);
    margin: 0 -0.3rem;
    height: 1rem;
  }
}

@media print, screen and (min-width: 641px) {
  .collaborating__imageBox {
    display: grid;
    max-width: 6.3rem;
    padding-right: 0.2rem;
    z-index: 2;
    position: relative;
    row-gap: 0.16rem;
    -webkit-column-gap: 0.48rem;
       -moz-column-gap: 0.48rem;
            column-gap: 0.48rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .collaborating__imageBox {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.collaborating__imageBox__inr a {
  display: inline-block;
}
.collaborating__imageBox__inr:first-of-type {
  grid-area: 1/1/2/2;
  width: 3.5rem;
}
.collaborating__imageBox__inr:nth-of-type(2) {
  grid-area: 2/1/3/2;
}
.collaborating__imageBox__inr:nth-of-type(3) {
  grid-area: 1/2/3/3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.collaborating__imageLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .collaborating__imageLink {
    padding-right: 0.6rem;
    columns-gap: 0.3rem;
    margin: auto;
  }
}

.collaborating__image--tokyo {
  width: 97.4%;
}
@media screen and (max-width: 640px) {
  .collaborating__image--tokyo {
    height: 0.45rem;
  }
}
.collaborating__image--center {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .collaborating__image--center {
    height: 0.55rem;
  }
}
.collaborating__image--hokkaido {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .collaborating__image--hokkaido {
    height: 0.49rem;
  }
}
.collaborating__image--asahikawa {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .collaborating__image--asahikawa {
    height: 0.7rem;
  }
}
@media screen and (max-width: 640px) {
  .collaborating__image {
    width: auto;
    margin: auto;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}

/* 自社研究所 */
.laboratory {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 0.1rem;
  background-color: #131c21;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 640px) {
  .laboratory {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border-radius: 0.05rem;
    margin: 0 -0.1rem 0.5rem;
    width: calc(100% + 0.2rem);
  }
}

.laboratory__textBox {
  padding: 0.54rem 0.6rem 0;
}
@media screen and (max-width: 640px) {
  .laboratory__textBox {
    padding: 0.37rem 0.3rem 0.33rem;
  }
}

.laboratory__title {
  line-height: 1;
  margin-bottom: 0.2rem;
}

.laboratory__subTitle {
  color: #fff;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 640px) {
  .laboratory__subTitle {
    margin-bottom: 0.2rem;
  }
}

.laboratory__text {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .laboratory__text {
    line-height: 2.14;
    font-size: 0.14rem;
  }
}

.laboratory__imageBox {
  display: block;
}

.laboratory__image {
  border-top-right-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
  vertical-align: bottom;
  width: 6rem;
}
@media screen and (max-width: 640px) {
  .laboratory__image {
    width: 100%;
    border-top-right-radius: 0.05rem;
    border-top-left-radius: 0.05rem;
    border-bottom-right-radius: 0;
  }
}

/* パブリケーション */
.publication {
  display: grid;
  grid-template-columns: 6rem auto;
  grid-template-rows: 1.57rem auto 0.5rem;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
  margin-bottom: 1.38rem;
}
@media screen and (max-width: 640px) {
  .publication {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1rem;
    margin-bottom: 0.7rem;
  }
}

.publication__titleBox {
  position: relative;
  padding-top: 0.4rem;
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 640px) {
  .publication__titleBox {
    padding: 0.36rem 0 0.3rem;
    grid-row: 1;
    grid-column: 1;
  }
}
.publication__titleBox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .publication__titleBox::before {
    margin: 0 -0.1rem;
    width: calc(100% + 0.2rem);
  }
}
.publication__titleBox::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #328cdc;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .publication__titleBox::after {
    margin: 0 -0.1rem;
    width: calc(50% + 0.1rem);
  }
}

.publication__title {
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.publication__text {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 640px) {
  .publication__text {
    grid-row: 3/4;
    grid-column: 1;
    font-size: 0.14rem;
    line-height: 2.14;
    margin: 0.35rem auto 0.2rem;
  }
}

.publication__imageBox {
  display: block;
  grid-column: 1;
  grid-row: 1/4;
}
@media screen and (max-width: 640px) {
  .publication__imageBox {
    grid-row: 2;
    grid-column: 1;
    margin: 0 -0.1rem;
    width: calc(100% + 0.2rem);
  }
}

.publication__image {
  border-radius: 0.1rem;
  width: 6rem;
}
@media screen and (max-width: 640px) {
  .publication__image {
    border-radius: 0.05rem;
    width: 100%;
  }
}

.publication__buttonBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-column: 2;
  grid-row: 3/4;
}
@media screen and (max-width: 640px) {
  .publication__buttonBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-row: 4;
    grid-column: 1;
  }
}

@media screen and (max-width: 640px) {
  .publication__button {
    width: 2rem;
  }
}

.publication__buttonText {
  color: #000;
}

.researchDevelopmentText {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.22rem;
  line-height: 1.91;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 640px) {
  .researchDevelopmentText {
    font-size: 0.16rem;
    line-height: 2;
    text-align: justify;
  }
}
.researchDevelopmentText::before {
  content: "";
  position: absolute;
  top: -0.74rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 1px;
  height: 0.3rem;
  background-color: #ccc;
}
@media screen and (max-width: 640px) {
  .researchDevelopmentText::before {
    top: -0.44rem;
    width: 1px;
    height: 0.2rem;
  }
}

/* サービス */
.service {
  padding: 0.95rem 0 0.94rem;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .service {
    padding: 0.4rem 0 0.5rem;
  }
}

.service__textBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .service__textBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0.4rem;
  }
}

.service__titleBox {
  margin-right: 0.76rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .service__titleBox {
    margin-right: 0;
  }
}
.service__titleBox::before {
  content: "";
  position: absolute;
  top: 0;
  right: -0.38rem;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 640px) {
  .service__titleBox::before {
    content: none;
  }
}

.service__title {
  line-height: 1.2;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
  .service__title {
    line-height: 1.29;
  }
}

.service__text {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
  .service__text {
    font-size: 0.14rem;
    line-height: 2.14;
    margin-right: 0;
    margin-top: 0.25rem;
  }
}

.service__list {
  margin-top: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .service__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.3rem;
    row-gap: 0.5rem;
  }
}

.service__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 5.4rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .service__item {
    margin-top: 0;
  }
}
.service__item:nth-of-type(-n+2) {
  margin-top: 0;
}

.service__imageContainer {
  position: relative;
}

.service__imageBox {
  display: block;
  position: relative;
}
@media screen and (max-width: 640px) {
  .service__imageBox {
    margin: 0 -0.1rem;
    width: calc(100% + 0.2rem);
  }
}
.service__imageBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(18, 34, 47, 0.5);
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .service__imageBox::before {
    border-radius: 0.06rem;
  }
}

.service__image {
  border-radius: 0.1rem;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .service__image {
    border-radius: 0.06rem;
  }
}

.service__tabletImage {
  position: absolute;
  bottom: -0.6rem;
  right: 0.4rem;
  width: 2rem;
}
@media screen and (max-width: 640px) {
  .service__tabletImage {
    width: 1.24rem;
    right: 0.1rem;
    bottom: -0.4rem;
  }
}

.service__itemNum {
  position: absolute;
  top: 0.75rem;
  left: -0.3rem;
  font-family: interstate, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 640px) {
  .service__itemNum {
    top: 0.4rem;
    left: -0.2rem;
    font-size: 0.14rem;
    line-height: 1.11;
  }
}

.service__num {
  color: #328cdc;
  font-size: 0.3rem;
  line-height: 1.77;
  letter-spacing: 0.05em;
  margin-left: 0.2rem;
}
@media screen and (max-width: 640px) {
  .service__num {
    font-size: 0.2rem;
    line-height: 1.65;
    margin-left: 0.04rem;
  }
}

.service__itemTitle {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 2.08;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  .service__itemTitle {
    font-size: 0.2rem;
    line-height: 1.875;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
  }
}

.service__itemText {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin: 0.15rem auto 0.35rem;
}
@media screen and (max-width: 640px) {
  .service__itemText {
    font-size: 0.12rem;
    line-height: 2.08;
    margin-top: 0.1rem;
    margin-bottom: 0.28rem;
  }
}

.service__button {
  margin: auto auto 0;
}

.about {
  padding: 1rem 0;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about {
    padding: 0.4rem 0 0.5rem;
  }
}

.about__slogan {
  color: #fff;
}

.about__title {
  line-height: 1;
  margin: 0.45rem auto 0.25rem;
}
@media screen and (max-width: 640px) {
  .about__title {
    line-height: 1.14;
    margin-bottom: 0.2rem;
    margin-top: 0.4rem;
  }
}

.about__subTitle {
  color: #fff;
  padding-left: 0;
}
@media screen and (max-width: 640px) {
  .about__subTitle {
    padding-left: 0;
  }
}
.about__subTitle::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  width: 10px;
  border: 1px solid #328cdc;
}
@media screen and (max-width: 640px) {
  .about__subTitle::before {
    top: -0.15rem;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}

.about__text {
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-top: 0.36rem;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .about__text {
    font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    font-weight: 500;
    font-size: 0.14rem;
    line-height: 2.14;
    margin-top: 0.25rem;
    text-align: justify;
  }
}

.about__button {
  margin: 0.25rem auto 0;
}
@media screen and (max-width: 640px) {
  .about__button {
    margin: 0.33rem auto 0;
  }
}

.recruit {
  padding-top: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .recruit {
    padding-top: 0.3rem;
  }
}

.recruit__container {
  display: grid;
  grid-template-columns: 5.2rem auto;
  grid-template-rows: auto 1fr 0.5rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .recruit__container {
    grid-template-columns: auto;
    grid-template-rows: auto 2.15rem auto 0.4rem;
    margin-top: 0.4rem;
  }
}

.recruit__iamgeBox {
  grid-row: 1/4;
  grid-column: 2/3;
  position: relative;
}
@media screen and (max-width: 640px) {
  .recruit__iamgeBox {
    grid-row: 2/3;
    grid-column: 1;
    margin: 0 -0.1rem;
    width: calc(100% + 0.2rem);
  }
}

.recruit__iamge {
  border-radius: 0.1rem;
  position: absolute;
}
@media screen and (max-width: 640px) {
  .recruit__iamge {
    border-radius: 0.05rem;
  }
}
.recruit__iamge--top {
  top: 0;
  right: 0;
  width: 5.4rem;
}
@media screen and (max-width: 640px) {
  .recruit__iamge--top {
    width: 2.7rem;
  }
}
.recruit__iamge--bottom {
  top: 2.3rem;
  right: 3rem;
  width: 3rem;
}
@media screen and (max-width: 640px) {
  .recruit__iamge--bottom {
    top: 1.25rem;
    right: 0;
    left: 0;
    width: 1.5rem;
  }
}

.recruit__titleBox {
  grid-row: 1;
  grid-column: 1/2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
  .recruit__titleBox {
    grid-row: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.recruit__title {
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .recruit__title {
    line-height: 1;
  }
}

.recruit__subTitle {
  padding-left: 0.35rem;
}
@media screen and (max-width: 640px) {
  .recruit__subTitle {
    padding-left: 0.2rem;
    margin-top: 0.2rem;
  }
}
.recruit__subTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.1rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 10px;
  border: 1px solid #328cdc;
}
@media screen and (max-width: 640px) {
  .recruit__subTitle::before {
    left: 0;
  }
}

.recruit__text {
  grid-row: 2/3;
  grid-column: 1/2;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.16rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 640px) {
  .recruit__text {
    font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    font-weight: 500;
    grid-row: 3/4;
    grid-column: 1;
    font-size: 0.14rem;
    line-height: 2.14;
    margin-top: 0.33rem;
  }
}

.recruit__button {
  grid-row: 3/4;
  grid-column: 1/2;
}
@media screen and (max-width: 640px) {
  .recruit__button {
    grid-row: 4/5;
    grid-column: 1;
  }
}

@media screen and (max-width: 640px) {
  .news,
  .researchDevelopment,
  .service,
  .about,
  .recruit {
    padding-right: 0.3rem;
    padding-left: 0.3rem;
  }
}