@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);
*/
.hero {
  position: relative;
  height: 5.8rem;
  display: block;
  z-index: -2;
}
@media screen and (max-width: 640px) {
  .hero {
    height: 6.4rem;
    background-color: #131c21;
  }
}

.hero__bgArea {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-top: 0.8rem;
}
@media screen and (max-width: 640px) {
  .hero__bgArea {
    width: 100%;
    height: 2.5rem;
    padding-top: 0.6rem;
  }
}

.hero__image {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: 5rem;
}
@media screen and (max-width: 640px) {
  .hero__image {
    height: 2rem;
  }
}

.hero__titleTextBox {
  position: absolute;
  left: 2rem;
  top: 37%;
}
@media screen and (max-width: 640px) {
  .hero__titleTextBox {
    top: 0;
    left: 0;
    padding: 1.58rem 0.3rem 0.3rem;
  }
}

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

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

.hero__subTitleText {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.24rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  color: #fff;
  margin-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  .hero__subTitleText {
    text-align: center;
    margin: 0.6rem auto 0.25rem;
    font-size: 0.18rem;
    line-height: 1.55;
    letter-spacing: 0.2em;
  }
}

.hero__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;
  margin-top: 0.2rem;
}
@media screen and (max-width: 640px) {
  .hero__text {
    font-size: 0.14rem;
    line-height: 2.142;
    letter-spacing: 0.02em;
  }
}

.researchArea {
  background-color: #fff;
  padding-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  .researchArea {
    padding-top: 0.35rem;
  }
}

.researchArea__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;
}
@media screen and (max-width: 640px) {
  .researchArea__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;
  }
}

.researchArea__subTitle {
  margin-left: 0.15rem;
}
@media screen and (max-width: 640px) {
  .researchArea__subTitle {
    margin-left: 0;
    margin-top: 0.15rem;
  }
}

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

.researchArea__list {
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 0.3rem;
  margin-top: 0.35rem;
}
@media screen and (max-width: 640px) {
  .researchArea__list {
    margin-top: 0.35rem;
    row-gap: 0.15rem;
  }
}

@media screen and (max-width: 640px) {
  .researchArea__item {
    width: calc(50% - 0.08rem);
  }
}

.researchArea__imageBox {
  display: block;
  position: relative;
  max-width: 2.8rem;
}
.researchArea__imageBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(19, 28, 33, 0.3);
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .researchArea__imageBox::before {
    border-radius: 0.06rem;
  }
}

.researchArea__image {
  border-radius: 0.1rem;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 280/200;
  height: auto;
}
@media screen and (max-width: 640px) {
  .researchArea__image {
    border-radius: 0.06rem;
    aspect-ratio: 300/200;
  }
}

.researchArea__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: 700;
  font-size: 0.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
  .researchArea__imageText {
    font-size: 0.14rem;
    line-height: 1.14;
  }
}

.coreTechnologies {
  padding-top: 0.75rem;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .coreTechnologies {
    padding-top: 0.4rem;
  }
}

.coreTechnologies__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;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__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;
  }
}

.coreTechnologies__subTitle {
  margin-left: 0.15rem;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__subTitle {
    margin-left: 0;
    margin-top: 0.13rem;
  }
}

.coreTechnologies__list {
  margin-top: 0.4rem;
  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;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__list {
    margin-top: 0.42rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.coreTechnologies__item {
  position: relative;
  max-width: 3.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.coreTechnologies__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 3.6rem;
  height: 3.6rem;
  border-bottom-left-radius: 0.1rem;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__item::before {
    width: 100%;
    height: 70%;
  }
}
@media screen and (max-width: 640px) {
  .coreTechnologies__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.4rem;
  }
}

.coreTechnologies__itemNum {
  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;
  font-family: interstate, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 0.14rem;
  color: #328cdc;
  line-height: 1.74;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: -0.05rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__itemNum {
    font-size: 0.12rem;
    line-height: 1;
    left: -0.01rem;
  }
}

.coreTechnologies__num {
  font-size: 0.34rem;
  line-height: 1;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__num {
    font-size: 0.24rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    line-height: 0.67;
  }
}

.coreTechnologies__itembox {
  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;
  position: inherit;
  z-index: 1;
  max-width: 3.1rem;
  margin-left: 0.5rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__itembox {
    width: 100%;
    max-width: 100%;
    margin-left: 0.4rem;
    margin-bottom: 0.35rem;
  }
}

.coreTechnologies__imageBox {
  display: block;
  position: relative;
  margin-bottom: 0.3rem;
}
.coreTechnologies__imageBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(19, 28, 33, 0.3);
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__imageBox::before {
    border-radius: 0.06rem;
  }
}

.coreTechnologies__image {
  border-radius: 0.1rem;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__image {
    border-radius: 0.06rem;
    width: 100%;
    aspect-ratio: 550/340;
    height: auto;
  }
}

.coreTechnologies__itemTitle {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.2rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #12222f;
  position: relative;
  padding-left: 0.25rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__itemTitle {
    font-size: 0.14rem;
    padding-left: 0.2rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.2rem;
  }
}
.coreTechnologies__itemTitle::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0.1rem;
  border: 1px solid #328cdc;
}
@media screen and (max-width: 640px) {
  .coreTechnologies__itemTitle::before {
    top: 0.1rem;
  }
}

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

.outcomes {
  background-color: #fff;
  padding: 1.1rem 0 0.65rem;
}
@media screen and (max-width: 640px) {
  .outcomes {
    padding-top: 0.1rem;
    padding-bottom: 0.25rem;
  }
}

.outcomes__container {
  position: relative;
}

.outcomes__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) {
  .outcomes__titleBox {
    position: static;
    -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;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.outcomes__title {
  text-orientation: mixed;
  line-height: 1;
  margin-left: -0.05rem;
  margin-top: 0.05rem;
}
@media screen and (max-width: 640px) {
  .outcomes__title {
    margin-left: 0;
    margin-top: 0;
  }
}

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

.outcomes__list {
  margin-left: 1.6rem;
}
@media screen and (max-width: 640px) {
  .outcomes__list {
    margin-left: 0;
    margin-top: 0.4rem;
  }
}

.outcomes__item {
  position: relative;
  padding: 0.24rem 0 0.25rem;
}
@media screen and (max-width: 640px) {
  .outcomes__item {
    padding: 0.18rem 0 0.05rem;
  }
}
.outcomes__item:first-of-type {
  padding-top: 0;
}
.outcomes__item:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
  width: 100%;
}
.outcomes__itemTitle {
  font-size: 0.2rem;
  margin-bottom: 0.1rem;
  padding-left: 0.3rem;
}
.outcomes__itemTitle::before {
  width: 0.1rem;
  left: 5px;
}
@media screen and (max-width: 640px) {
  .outcomes__itemTitle {
    font-size: 0.14rem;
    padding-left: 0.15rem;
  }
  .outcomes__itemTitle::before {
    width: 0.075rem;
    left: 0;
  }
}
.outcomes__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-left: 0.2rem;
}
@media screen and (max-width: 640px) {
  .outcomes__link {
    margin-top: 0;
    font-size: 0.14rem;
  }
}
.outcomes__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);
}

.outcomes__itemBox {
  padding-left: 0.3rem;
}
@media screen and (max-width: 640px) {
  .outcomes__itemBox {
    padding-left: 0;
  }
}

.outcomes__itemLink {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.outcomes__itemTextBox {
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.16rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #12222f;
  display: inline-block;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .outcomes__itemTextBox {
    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;
    font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    font-weight: 500;
    font-size: 0.12rem;
    margin-bottom: 0.1rem;
  }
}

.outcomes__itemText {
  display: inline-block;
  padding-left: 0.1rem;
}
@media screen and (max-width: 640px) {
  .outcomes__itemText {
    padding-left: 0;
    width: 72%;
  }
}
.outcomes__itemText--link::after {
  content: "";
  background-image: url("/img/research/link_icon.svg");
  background-repeat: no-repeat;
  margin-left: 0.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: inline-block;
  width: 0.16rem;
  height: 0.16rem;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .outcomes__itemText--link::after {
    margin-left: 0.1rem;
    width: 0.12rem;
    height: 0.12rem;
  }
}
.outcomes__itemText--pdf::after {
  content: "";
  background-image: url("/img/research/pdf_icon.svg");
  background-repeat: no-repeat;
  margin-left: 0.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: inline-block;
  width: 0.15rem;
  height: 0.185rem;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .outcomes__itemText--pdf::after {
    margin-left: 0.1rem;
    width: 0.14rem;
    height: 0.172rem;
  }
}

.outcomes__itemDate {
  display: inline;
  font-family: noto-sans-cjk-jp, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
}

.framework {
  background-color: #fff;
  padding-bottom: 2.78rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .framework {
    padding-bottom: 1.16rem;
  }
}

.framework__container {
  background-color: rgba(204, 204, 204, 0.2);
  border-radius: 0.1rem;
  padding: 0.4rem 0.6rem 0.65rem;
}
@media screen and (max-width: 640px) {
  .framework__container {
    background-color: rgba(204, 204, 204, 0.2);
    margin: 0 -0.3rem;
    border-radius: 0;
    padding: 0.42rem 0.3rem 0.35rem;
  }
}

.framework__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;
}
@media screen and (max-width: 640px) {
  .framework__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;
  }
}

.framework__subTitle {
  margin-left: 0.15rem;
}
@media screen and (max-width: 640px) {
  .framework__subTitle {
    margin-left: 0;
    margin-top: 0.1rem;
    padding-left: 0.25rem;
  }
}

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

.frameworkBox {
  position: relative;
  max-width: 10.8rem;
  width: 100%;
  background-color: #fff;
  border-radius: 0.1rem;
  aspect-ratio: 1080/700;
}
@media screen and (max-width: 640px) {
  .frameworkBox {
    background-color: transparent;
    border-radius: 0;
    aspect-ratio: 750/750;
    margin: 0 -0.3rem;
    width: calc(100% + 0.6rem);
  }
}
.frameworkBox::after {
  content: "";
  background-image: url("/img/research/shapes.svg");
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 39%;
  height: 77%;
  top: 50%;
  left: 51%;
  -webkit-transform: translate(-70%, -50%);
          transform: translate(-70%, -50%);
}
@media screen and (max-width: 640px) {
  .frameworkBox::after {
    background-image: url("/img/research/shapes_sp.svg");
    width: 48.4%;
    height: 82.1%;
    top: 49%;
    left: 0.3rem;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.frameworkBox__item {
  position: absolute;
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.frameworkBox__item--orgo {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  left: 13.8%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  row-gap: 0.2rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--orgo {
    left: 0.3rem;
    row-gap: 0.15rem;
  }
}
.frameworkBox__item--center {
  top: 11%;
  left: 64%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--center {
    top: 10%;
    left: 51%;
  }
}
.frameworkBox__item--hokkaido {
  top: 39.5%;
  left: 64%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--hokkaido {
    top: 36.2%;
    left: 60%;
  }
}
.frameworkBox__item--asahikawa {
  top: 65%;
  left: 64%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--asahikawa {
    top: 65.8%;
    left: 51%;
  }
}
.frameworkBox__item--tokyo {
  top: 80%;
  left: 60%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--tokyo {
    top: 84%;
    left: 52%;
  }
}
.frameworkBox__item--orgoEn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  left: 13.8%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  row-gap: 0.2rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--orgoEn {
    left: 0.12rem;
    row-gap: 0.15rem;
  }
}
.frameworkBox__item--centerEn {
  top: 2%;
  left: 59%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--centerEn {
    top: -12%;
    left: 48%;
  }
}
.frameworkBox__item--hokkaidoEn {
  top: 24%;
  left: 66%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--hokkaidoEn {
    top: 17%;
    left: 56%;
  }
}
.frameworkBox__item--asahikawaEn {
  top: 55%;
  left: 66%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--asahikawaEn {
    top: 60%;
    left: 56%;
  }
}
.frameworkBox__item--tokyoEn {
  top: 83%;
  left: 60%;
}
@media screen and (max-width: 640px) {
  .frameworkBox__item--tokyoEn {
    top: 88%;
    left: 50%;
  }
}

.frameworkBox__imageBox--multiply {
  mix-blend-mode: multiply;
}

.frameworkBox__image--orgo {
  width: 1.82rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__image--orgo {
    width: 0.865rem;
    margin-bottom: 0.05rem;
  }
}
.frameworkBox__image--center {
  width: 3.25rem;
  margin-left: -0.1rem;
  margin-bottom: 0.05rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__image--center {
    width: 1.625rem;
    margin-left: 0;
  }
}
.frameworkBox__image--hokkaido {
  width: 2.06rem;
  margin-left: -0.05rem;
  margin-bottom: 0.05rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__image--hokkaido {
    width: 1.03rem;
  }
}
.frameworkBox__image--asahikawa {
  width: 1.06rem;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__image--asahikawa {
    width: 0.53rem;
  }
}
.frameworkBox__image--tokyo {
  width: 1.93rem;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__image--tokyo {
    width: 0.965rem;
  }
}

.frameworkBox__text {
  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;
  -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;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 0.14rem;
  letter-spacing: 0;
  line-height: 1.7;
  row-gap: 0.1rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__text {
    font-size: 0.11rem;
    line-height: 1.1;
  }
}

.frameworkBox__textInner {
  font-size: 0.2rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 0.15rem;
}
@media screen and (max-width: 640px) {
  .frameworkBox__textInner {
    font-size: 0.12rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 0;
  }
}

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

.environment {
  margin-top: -1.8rem;
  padding-bottom: 1rem;
  background-image: url("/img/research/research_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .environment {
    background-image: url("/img/research/research_bg_sp.jpg");
    margin-top: -0.75rem;
    padding-bottom: 0.45rem;
  }
}

@media screen and (max-width: 640px) {
  .environment__wrap {
    width: calc(100% - 0.6rem);
    padding: 0 0.3rem;
  }
}

.environment__imageBox {
  display: block;
  position: relative;
  width: 100%;
  z-index: 2;
}
.environment__imageBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(18, 34, 47, 0.2);
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .environment__imageBox::before {
    border-radius: 0.06rem;
  }
}

.environment__image {
  border-radius: 0.1rem;
  margin: 0 auto;
  width: 100%;
  height: 3.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .environment__image {
    border-radius: 0.06rem;
    height: 1.5rem;
  }
}

.environment__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.5rem;
}
@media screen and (max-width: 640px) {
  .environment__textBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.3rem;
  }
}

.environment__titleBox {
  margin-right: 0.76rem;
}
@media screen and (max-width: 640px) {
  .environment__titleBox {
    margin-right: 0;
  }
}

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

.environment__subTitle {
  color: #fff;
}

.environment__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;
  position: relative;
  color: #fff;
}
.environment__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.38rem;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 640px) {
  .environment__text::before {
    content: none;
  }
}
@media screen and (max-width: 640px) {
  .environment__text {
    font-size: 0.14rem;
    line-height: 2.14;
    margin-right: 0;
    margin-top: 0.3rem;
  }
}

.researchArea,
.coreTechnologies,
.outcomes,
.framework {
  padding-right: 0.3rem;
  padding-left: 0.3rem;
}