@charset "UTF-8";
/*---------------------------
  フォントの読み込み
---------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap");
/*---------------------------
  関数
---------------------------*/
/*---------------------------
  プロジェクトストーリー
---------------------------*/
.projectStory__contentsBlock {
  margin-bottom: 167px;
}

@media screen and (max-width: 767px) {
  .projectStory__contentsBlock {
    margin-bottom: 100px;
  }
}

.projectStory__item {
  border: 1px solid #000000;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .projectStory__item {
    margin-bottom: 20px;
  }
}

.projectStory__itemImg {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.projectStory__itemTitle {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
}

.projectStory__itemTitle--text {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #FFFFFF;
  background: #000000;
  padding: 4px 1.31772vw 10px 1.31772vw;
}

@media screen and (max-width: 767px) {
  .projectStory__itemTitle--text {
    font-size: 1.8rem;
    line-height: 1.44;
    padding: 1px 4.26667vw 3px 4.26667vw;
  }
}

.projectStory__itemContent {
  width: 100%;
  border-top: 1px solid #000000;
  padding: 10px 1.46413vw;
  background: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .projectStory__itemContent {
    padding: 10px 4vw;
  }
}

.projectStory__itemDescription {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .projectStory__itemDescription {
    font-size: 1.4rem;
    line-height: 1.428;
  }
}

.projectStory__itemImg--img {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.projectStory__itemImg--img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

/*---------------------------
  フェードイン
---------------------------*/
/* フェードイン(初期値) */
.fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  /* 下に30pxの位置から */
  -webkit-transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, transform .8s;
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  /* フェード開始を0.5秒遅らせる */
}

/* フェードイン(初期値) */
.fadeIn {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  /* 下に30pxの位置から */
  -webkit-transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, transform .8s;
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.fadeIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  /* フェード開始を0.5秒遅らせる */
}

/*---------------------------
  プロジェクトストーリー下層ページ
---------------------------*/
/*---------------------------
  メインビジュアル
---------------------------*/
.storyKeyVisual__wrapper {
  overflow: hidden;
}

.storyKeyVisual__img {
  position: relative;
  padding-top: 0px;
}

@media screen and (max-width: 767px) {
  .storyKeyVisual__img {
    padding-top: 50px;
  }
}

.storyKeyVisual__title {
  position: absolute;
  left: 0;
  bottom: 0;
}

.storyKeyVisual__title--text {
  font-family: "Oswald", sans-serif;
  font-size: 4.8rem;
  line-height: 1.479;
  color: #000000;
  background: #FFFFFF;
  padding: 20px 2.56223vw 20px 10.46852vw;
}

@media screen and (max-width: 767px) {
  .storyKeyVisual__title--text {
    font-size: 4rem;
    line-height: 1.5;
    padding: 8px 4.53333vw 8px 4.8vw;
  }
}

.storyKeyVisual__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 10.46852vw 45px 10.46852vw;
  max-width: 2000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .storyKeyVisual__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 23px 4.8vw 20px 4.8vw;
  }
}

.storyKeyVisual__description {
  font-size: 2.2rem;
  line-height: 2.727;
  width: 74%;
}

@media screen and (max-width: 767px) {
  .storyKeyVisual__description {
    font-size: 2rem;
    line-height: 2;
    width: 100%;
  }
}

.storyKeyVisual__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 60px;
  width: 15%;
}

@media screen and (max-width: 767px) {
  .storyKeyVisual__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.storyKeyVisual__list--item {
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .storyKeyVisual__list--item {
    font-size: 2rem;
    line-height: 2;
  }
}

.storyKeyVisual__list--icon {
  width: auto;
  height: 40px;
  padding-left: 1.46413vw;
}

@media screen and (max-width: 767px) {
  .storyKeyVisual__list--icon {
    height: 35.67px;
    padding-left: 4.4vw;
  }
}

/*---------------------------
  プロジェクトリーダー
---------------------------*/
.projectLeader__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #707070;
  padding: 40px 2.92826vw;
}

@media screen and (max-width: 767px) {
  .projectLeader__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: nomal;
        -ms-flex-pack: nomal;
            justify-content: nomal;
    padding: 25px 6.66667vw 30px 6.66667vw;
  }
}

.projectLeader__wrapper--Bottom {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .projectLeader__wrapper--Bottom {
    margin-bottom: 40px;
  }
}

.projectLeader__img {
  width: 44.56825%;
}

@media screen and (max-width: 767px) {
  .projectLeader__img {
    width: auto;
  }
}

.projectLeader__content {
  width: 51.53203%;
}

@media screen and (max-width: 767px) {
  .projectLeader__content {
    width: auto;
    padding-left: 0;
  }
}

.projectLeader__content--title {
  font-family: "Oswald", sans-serif;
  font-size: 3.6rem;
  line-height: 1.472;
  margin-top: -10px;
  margin-bottom: 17px;
}

@media screen and (max-width: 767px) {
  .projectLeader__content--title {
    font-size: 4rem;
    line-height: 1.5;
    margin-top: 25px;
    margin-bottom: 12px;
  }
}

.projectLeader__content--department {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .projectLeader__content--department {
    margin-bottom: 1px;
  }
}

.projectLeader__content--name {
  font-size: 1.75695vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .projectLeader__content--name {
    font-size: 7.46667vw;
    letter-spacing: 0.05em;
    line-height: 1.285;
  }
}

.projectLeader__content--englishName {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 31px;
}

@media screen and (max-width: 767px) {
  .projectLeader__content--englishName {
    margin-bottom: 36px;
  }
}

.projectLeader__content--description {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
  line-height: 1.875;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media screen and (max-width: 767px) {
  .projectLeader__content--description {
    font-size: 1.6rem;
  }
}

/*---------------------------
  導入文
---------------------------*/
.introductory {
  background: #EBF2F9;
  padding: 40px 2.92826vw;
}

@media screen and (max-width: 767px) {
  .introductory {
    padding: 18px 0;
  }
}

.introductory__text {
  color: #003D81;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
  line-height: 1.875;
}

@media screen and (max-width: 767px) {
  .introductory__text {
    width: 80vw;
    margin: 0 auto;
  }
}

/*---------------------------
  アバウトプロジェクト/ストーリー
---------------------------*/
.projectSection__wrapper {
  margin-top: 8px;
}

.projectSection__title {
  font-family: "Oswald", sans-serif;
  font-size: 4.8rem;
  line-height: 1.48;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .projectSection__title {
    font-size: 5rem;
  }
}

.projectSection__subTitle {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 2.45;
  margin-bottom: 41px;
}

@media screen and (max-width: 767px) {
  .projectSection__subTitle {
    letter-spacing: 0;
    line-height: 1.8;
  }
}

.projectSection__description {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 60px;
}

.projectSection__description--wideBottom {
  margin-bottom: 190px;
}

@media screen and (max-width: 767px) {
  .projectSection__description--wideBottom {
    margin-bottom: 180px;
  }
}

.projectSection__img--minimumBottom {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .projectSection__img--minimumBottom {
    margin-bottom: 40px;
  }
}

.projectSection__img--smallBottom {
  margin-bottom: 60px;
}

.projectSection__img--bottom {
  margin-bottom: 80px;
}

/*---------------------------
  プロジェクトデベロップメント
---------------------------*/
.projectDevelopment__title {
  font-family: "Oswald", sans-serif;
  font-size: 3.6rem;
  line-height: 1.472;
  display: inline-block;
  border: 1px solid #000000;
  padding: 11px 1.97657vw 16px 1.61054vw;
  margin-top: 2px;
}

@media screen and (max-width: 767px) {
  .projectDevelopment__title {
    margin-top: 20px;
  }
}

.projectDevelopment__subTitle {
  font-size: 1.8rem;
  margin-bottom: 41px;
  color: #FFFFFF;
  background: #000000;
  display: inline-block;
  padding: 1px 1.75695vw 3px 1.61054vw;
}

.projectDevelopment__subTitle--smallRight {
  padding: 1px 0.29283vw 3px 1.61054vw;
}

@media screen and (max-width: 433px) {
  .projectDevelopment__subTitle--02 {
    display: none;
  }
}

.projectDevelopment__subTitle--02Sp1 {
  display: none;
}

@media screen and (max-width: 433px) {
  .projectDevelopment__subTitle--02Sp1 {
    display: inline-block;
    margin-bottom: 0;
  }
}

.projectDevelopment__subTitle--02Sp {
  display: none;
}

@media screen and (max-width: 433px) {
  .projectDevelopment__subTitle--02Sp {
    display: inline-block;
  }
}

.projectDevelopment__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 157px;
}

@media screen and (max-width: 767px) {
  .projectDevelopment__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: nomal;
        -ms-flex-pack: nomal;
            justify-content: nomal;
    margin-bottom: 120px;
  }
}

.projectDevelopment__content--smallBottom {
  margin-bottom: 70px;
}

.projectDevelopment__content--img {
  width: 42%;
  border: 1px solid #000000;
}

@media screen and (max-width: 767px) {
  .projectDevelopment__content--img {
    width: auto;
  }
}

.projectDevelopment__content--description {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-left: 2.92826vw;
  width: 47.5%;
}

@media screen and (max-width: 767px) {
  .projectDevelopment__content--description {
    margin-top: 40px;
    margin-left: 0;
    width: auto;
  }
}

/*---------------------------
  アザープロジェクツ
---------------------------*/
.otherProjects__title {
  font-family: "Oswald", sans-serif;
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 30px;
}

.otherProjects__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .otherProjects__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}

.otherProjects__item:nth-child(n+2) {
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .otherProjects__item:nth-child(n+2) {
    margin: 20px 0 0 0;
  }
}

.otherProjects__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px #000000 solid;
  overflow: hidden;
}

.otherProjects__img--img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .otherProjects__linkBtn {
    font-size: 0.9rem;
    line-height: 1.76;
  }
}

.otherProjects__text {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  border: 1px #000000 solid;
  border-top: none;
  background: #FFFFFF;
}

.otherProjects__text--before {
  position: relative;
}

.otherProjects__text--before::before {
  content: "◀︎";
  position: absolute;
  left: 0.5rem;
}

.otherProjects__text--after {
  position: relative;
}

.otherProjects__text--after::after {
  content: "▶︎";
  position: absolute;
  right: 0.5rem;
}

.otherProjects__linkBtn2 {
  text-align: center;
  text-decoration: underline;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.otherProjects__link:hover .otherProjects__text {
  color: #FFFFFF;
  background: #000000;
}

.otherProjects__link:hover .otherProjects__img--img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -o-object-fit: contain;
     object-fit: contain;
}

/*---------------------------
  関連記事はこちら
---------------------------*/
.archive__title {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .archive__title {
    font-size: 2rem;
  }
}

.archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 62px;
}

@media screen and (max-width: 767px) {
  .archive__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 66px auto 0 auto;
  }
}

.archive__list--item {
  width: 48.75%;
  background-color: #FFFFFF;
  padding: 19px 1.75695vw 50px 1.1713vw;
  border: 1px solid #000000;
  position: relative;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .archive__list--item {
    width: 100%;
    padding: 20px 5.06667vw 50px;
  }
  .archive__list--item:first-child {
    margin: 0 auto;
  }
  .archive__list--item:nth-child(n+2) {
    margin: 31px auto 0 auto;
  }
}

.archive__list--side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.archive__list--date {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 767px) {
  .archive__list--date {
    font-size: 1.4rem;
  }
}

.archive__list--category {
  color: #003D81;
  background: #EBF2F9;
  font-size: 1rem;
  font-weight: 300;
  padding: 2px 0.29283vw;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .archive__list--category {
    font-size: 1.2rem;
    padding: 1px 0.29283vw;
  }
}

.archive__list--description {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.71;
  padding: 20px 1.53734vw 0 1.39092vw;
}

@media screen and (max-width: 767px) {
  .archive__list--description {
    font-size: 1.3rem;
    line-height: 1.76;
    padding: 23px 0 0 0;
  }
}

.archive__list--linkBtn {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 2.8px 1.05417vw 3.2px 1.1713vw;
  background-color: #000000;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .archive__list--linkBtn {
    font-size: 0.9rem;
    line-height: 1.76;
    padding: 6px 3.84vw 7px 4.26667vw;
  }
}

.archive__list--linkBtn > span {
  margin-right: 1.0981vw;
}

.archive__list--linkBtn::after {
  content: "＞";
}

.archive__list--item:hover {
  background: #EBF2F9;
}
/*# sourceMappingURL=projectstory.css.map */