@charset "UTF-8";
/*
---------------------------------------------
色設定など、外部ファイル化できる設定値をここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
事前に読み込むscssファイル
---------------------------------------------
*/
/*
---------------------------------------------
flexの設定
---------------------------------------------
*/
/*
---------------------------------------------
ブレイクポイントを指定
---------------------------------------------
*/
/*
---------------------------------------------
各要素の表示/非表示を操作する設定
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
グラデーション設定を入れる場合はここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
テキストブランクの設定が必要であればここに記述する
※テキスト自体を1行で表示させつつ、SP版の時に横スクロールが発生するようなデザインの時に使用する
---------------------------------------------
*/
/* 下層ページmodule */
/* ページタイトル 関係 */
.heading {
  background-color: #4a5657;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading__icon, .heading__icon--merit, .heading__icon--business {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: inline-block;
  margin: 0 0 5px;
  font-size: 30px;
  line-height: 1;
}
.heading__icon--business {
  background-image: url(/invest/resource/img/base/icon-business-white.png);
}
.heading__icon--merit {
  background-image: url(/invest/resource/img/base/icon-sapporo-white.png);
}
.heading__title {
  font-size: 16px;
  line-height: 1.625;
  color: #fff;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 20px;
  }
}

/* キービジュアル */
.keyvisual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 220px;
}
@media screen and (min-width: 768px) {
  .keyvisual {
    min-height: 240px;
  }
}
.keyvisual__textbox {
  width: 100%;
}
.keyvisual__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.keyvisual__title {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.33333;
}
@media screen and (min-width: 768px) {
  .keyvisual__title {
    font-size: 24px;
  }
}

/* パンくずリスト */
.breadcrumbs {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #d2e5e7;
}
.breadcrumbs__inner {
  text-align: left;
  max-width: 1020px;
  margin: 0 auto;
}
.breadcrumbs__list {
  width: 100%;
  list-style: none;
  display: flex;
}
.breadcrumbs__list li {
  font-size: 14px;
  line-height: 2;
}
.breadcrumbs__list li:not(:first-of-type)::before {
  content: ">";
  margin: 0 5px;
}
.breadcrumbs__list a {
  color: #5db5e3;
  text-decoration: underline;
}

/* コンテンツなど */
.contents {
  width: 100%;
  height: auto;
}
.contents__inner {
  width: 100%;
  max-width: 1020px;
  height: auto;
  padding: 32px 16px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .contents__inner {
    padding: 56px 0;
  }
}

.intro {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro {
    width: 95%;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .intro > :nth-child(3) {
    flex: 0 0 100%;
    order: 1;
  }
}
@media screen and (min-width: 1280px) {
  .intro {
    width: 100%;
  }
}
.intro__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .intro__main {
    gap: 24px;
  }
}
.intro__title, .intro__title-large {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}
.intro__title-large {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .intro__title-large {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .intro__title, .intro__title-large {
    font-size: 1.5rem;
  }
}
.intro__text {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro__text-mini {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .intro__text {
    font-size: 1.125rem;
  }
}
.intro__image, .intro__image-max {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .intro__image, .intro__image-max {
    max-width: 480px;
  }
}
.intro__image img, .intro__image-max img {
  width: 100%;
}
.intro__image-max {
  max-width: 100%;
  flex-shrink: 0;
  order: 1;
}

.intro4 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro4 {
    width: 95%;
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .intro4 {
    width: 100%;
  }
}
.intro4__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .intro4__main {
    gap: 24px;
  }
}
.intro4__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .intro4__title {
    font-size: 1.5rem;
  }
}
.intro4__text {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro4__text {
    font-size: 1.125rem;
  }
}
.intro4__image, .intro4__image-max {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .intro4__image, .intro4__image-max {
    max-width: 480px;
  }
}
.intro4__image img, .intro4__image-max img {
  width: 100%;
}
.intro4__image-max {
  max-width: 100%;
  flex-shrink: 0;
}

.intro2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro2 {
    width: 95%;
  }
}
@media screen and (min-width: 1280px) {
  .intro2 {
    width: 100%;
  }
}
.intro2__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .intro2__main {
    gap: 24px;
  }
}
.intro2__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .intro2__title {
    font-size: 1.5rem;
  }
}
.intro2__text {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro2__text {
    font-size: 1.125rem;
  }
}

.intro3 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro3 {
    width: 95%;
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .intro3 {
    width: 100%;
  }
}
.intro3__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .intro3__main {
    gap: 24px;
  }
}
.intro3__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}
.intro3__title-large {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .intro3__title-large {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .intro3__title {
    font-size: 1.5rem;
  }
}
.intro3__title--heading {
  flex: 0 0 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .intro3__title--heading {
    font-size: 1.25rem;
  }
}
.intro3__title--heading::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .intro3__title--heading::after {
    width: 48px;
  }
}
.intro3__title--heading::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .intro3__title--heading::before {
    width: 48px;
  }
}
.intro3__text {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro3__text {
    font-size: 1.125rem;
  }
}
.intro3__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .intro3__image {
    max-width: 480px;
  }
}
.intro3__image img {
  width: 100%;
}
.intro3__link {
  display: flex;
  gap: 8px;
  align-items: center;
  width: auto;
  color: #0A2B6F;
  font-size: 1.125rem;
}
.intro3__link::after {
  content: "";
  background-image: url(/invest/resource/img/pages-ai-it/transition.png);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  border: 1px solid #0A2B6F;
  text-align: center;
  color: #0A2B6F;
}
.intro3__link:hover {
  opacity: 0.6;
}

.intro5 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro5 {
    width: 95%;
    flex-direction: row-reverse;
    gap: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .intro5 {
    width: 100%;
  }
}
.intro5_box {
  width: 100%;
}
.intro5__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intro5__main-float {
  display: block;
}
@media screen and (min-width: 768px) {
  .intro5__main-float > a {
    margin: 40px 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .intro5__main {
    gap: 24px;
  }
}
.intro5__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .intro5__title {
    font-size: 1.5rem;
  }
}
.intro5__title--heading {
  flex: 0 0 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro5__title--heading {
    font-size: 1.25rem;
  }
}
.intro5__title--heading::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .intro5__title--heading::after {
    width: 48px;
  }
}
.intro5__title--heading::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .intro5__title--heading::before {
    width: 48px;
  }
}
.intro5__text {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro5__text {
    font-size: 1.125rem;
  }
}
.intro5__image {
  width: 100%;
  height: fit-content;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .intro5__image {
    max-width: 480px;
  }
}
.intro5__image img {
  width: 100%;
}
.intro5__link {
  display: flex;
  gap: 8px;
  align-items: center;
  width: auto;
  color: #0A2B6F;
  font-size: 1.125rem;
}
.intro5__link::after {
  content: "";
  background-image: url(/invest/resource/img/pages-ai-it/transition.png);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  border: 1px solid #0A2B6F;
  text-align: center;
  color: #0A2B6F;
}
.intro5__link:hover {
  opacity: 0.6;
}

.intro6 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro6 {
    width: 95%;
  }
}
@media screen and (min-width: 1280px) {
  .intro6 {
    width: 100%;
  }
}
.intro6__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .intro6__main {
    gap: 24px;
  }
}
.intro6__title {
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .intro6__title {
    font-size: 1.5rem;
    gap: 24px;
  }
}
.intro6__logo {
  width: 22px;
  height: 22px;
  background-image: url(/invest/resource/img/base/icon-square.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.intro6__text {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro6__text {
    font-size: 1.125rem;
  }
}

.intro7 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro7 {
    width: 95%;
    display: flex;
    max-width: 1020px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
  }
}
@media screen and (min-width: 1280px) {
  .intro7 {
    width: 100%;
  }
}
.intro7__main {
  flex: 1;
  width: 100%;
}
.intro7__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .intro7__title {
    font-size: 1.5rem;
  }
}
.intro7__title--heading {
  flex: 0 0 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .intro7__title--heading {
    font-size: 1.25rem;
  }
}
.intro7__title--heading::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .intro7__title--heading::after {
    width: 48px;
  }
}
.intro7__title--heading::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .intro7__title--heading::before {
    width: 48px;
  }
}
.intro7__text {
  width: 100%;
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .intro7__text {
    font-size: 1.125rem;
  }
}
.intro7__text-list {
  font-size: 1rem;
  line-height: 1.7;
  list-style-type: disc;
  list-style-position: inside;
  text-align: left;
  text-indent: -1em;
  /* 1行目を1文字分左に戻す */
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .intro7__text-list {
    font-size: 1.125rem;
  }
}
.intro7__text--span {
  text-indent: -1em;
  /* 1行目を1文字分左に戻す */
  padding-left: 1em;
}
.intro7__images {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .intro7__images {
    gap: 24px;
  }
}
.intro7__image {
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.intro7__image img {
  width: 100%;
}
.intro7__image-list {
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  width: 343px;
  gap: 4px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro7__image-list {
    width: 324px;
  }
}
.intro7__image-list img {
  width: 100%;
}
.intro7__imageTitle {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}
.intro7__imageText {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .intro7__imageText {
    font-size: 1.125rem;
  }
}
.intro7__link, .intro7__link-center {
  display: flex;
  gap: 8px;
  align-items: center;
  width: auto;
  color: #0A2B6F;
  font-size: 1.125rem;
}
.intro7__link::after, .intro7__link-center::after {
  content: "";
  background-image: url(/invest/resource/img/pages-ai-it/transition.png);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  border: 1px solid #0A2B6F;
  text-align: center;
  color: #0A2B6F;
}
.intro7__link:hover, .intro7__link-center:hover {
  opacity: 0.6;
}
.intro7__link-center {
  margin: 0 auto;
}

/* 紹介コンテンツ */
.introduction {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .introduction {
    width: 95%;
    gap: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .introduction {
    width: 100%;
  }
}
.introduction__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: center;
  width: 100%;
}
.introduction__heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #0A2B6F;
}
.introduction__heading--typeRow {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.introduction__heading--typeRow h2 {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .introduction__heading--typeRow h2 {
    font-size: 1.25rem;
  }
}
.introduction__heading--typeRow::after {
  content: "";
  display: none;
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .introduction__heading--typeRow::after {
    width: 48px;
  }
}
.introduction__heading--typeRow::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #0A2B6F;
}
@media screen and (min-width: 768px) {
  .introduction__heading--typeRow::before {
    width: 48px;
  }
}
.introduction__title {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .introduction__title {
    font-size: 1.5rem;
  }
}
.introduction__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .introduction__main {
    flex-direction: row;
    gap: 40px;
  }
}
.introduction__text {
  font-size: 1.125rem;
  line-height: 1.7;
}
.introduction__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .introduction__image {
    max-width: 480px;
  }
}
.introduction__image img {
  width: 100%;
}
.introduction__link {
  display: flex;
  gap: 8px;
  align-items: center;
  width: auto;
  color: #0A2B6F;
  font-size: 1.125rem;
}
.introduction__link::after {
  content: "";
  background-image: url(/invest/resource/img/pages-ai-it/transition.png);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  border: 1px solid #0A2B6F;
  text-align: center;
  color: #0A2B6F;
}
.introduction__link:hover {
  opacity: 0.6;
}
.introduction__sub {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  height: auto;
  padding: 24px 16px;
  background-color: #F4F7F7;
}
@media screen and (min-width: 768px) {
  .introduction__sub {
    padding: 32px 32px;
  }
}
.introduction__subItem {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .introduction__subItem {
    flex-direction: row;
    gap: 32px;
  }
}
.introduction__subImage, .introduction__subImage-max {
  gap: 12px;
  width: 100%;
  max-width: 368px;
  margin: 0 auto;
}
.introduction__subImage img, .introduction__subImage-max img {
  width: 100%;
}
.introduction__subImage-max {
  max-width: 100%;
}
.introduction__subTitle {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
.introduction__subTitle-mini {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .introduction__subTitle-mini {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .introduction__subTitle {
    font-size: 1.5rem;
  }
}
.introduction__subText {
  font-size: 1.125rem;
  line-height: 1.7;
}
.introduction__textWrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .introduction__textWrapper {
    gap: 24px;
  }
}

.intro__banner {
  width: 100%;
  background-color: #52C2C8;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .intro__banner {
    padding: 40px 0;
  }
}
.intro__banner__btn {
  background-color: #fff;
  color: #333333;
  display: flex;
  margin: 0 auto;
  padding: 8px 16px;
  align-self: stretch;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .intro__banner__btn {
    padding: 16px 104px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #333333;
    font-size: 1.25rem;
    line-height: 1;
  }
}
.intro__banner__text {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.intro__banner__text > :nth-child(1) {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  border: 1px solid #FFF;
  font-size: 1.125rem;
  line-height: 1;
}
.intro__banner__text > span {
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 200;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.intro__banner__text > span > span {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
}
.intro__banner > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro__banner > a {
    gap: 24px;
  }
}

/* オプションクラス */
.type-gray {
  background-color: #EBF0F1;
}

.type-blue {
  background-color: #d2e5e7;
}

@media screen and (min-width: 768px) {
  .type-over {
    width: calc(200% + 20px);
    flex-shrink: none;
  }
}

@media screen and (min-width: 768px) {
  .type-float {
    float: right;
    margin: 0 0 0 40px;
  }
}

.type-center {
  width: fit-content;
  margin: 0 auto;
}

.type-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .type-none {
    display: flex;
  }
}

.type-margin {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .type-margin {
    width: 95%;
  }
}
@media screen and (min-width: 1280px) {
  .type-margin {
    width: 100%;
  }
}

.type-keyvMerit {
  margin: 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 1280px) {
  .type-keyvMerit {
    font-size: 2.25rem;
    margin: 0 7.5%;
    text-align: left;
  }
}

/*
---------------------------------------------
充実したオフィスページのキャプション用
---------------------------------------------
*/
.intro7__image-caption {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
}

/*
 * [要素説明]
---------------------------------------------
*/
@media screen and (min-width: 841px) {
  .mod-banner__list {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/*
 * [充実したオフィスの一覧レイアウト調整]
 * flexで無理やり改行させているので、768px以上からgrid制御に調整
---------------------------------------------
*/
@media screen and (min-width: 768px) {
  .intro7__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .intro7__images {
    grid-template-columns: repeat(3, 1fr);
  }
}/*# sourceMappingURL=common.css.map */