@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Montserrat:wght@100..900&family=Inter:opsz,wght@14..32,100..900&display=swap");
@media screen and (min-width: 1061px) {
  :root {
    --header-height: 80px;
  }
}
@media screen and (max-width: 1060px) {
  :root {
    --header-height: 70px;
  }
}

html {
  font-size: 62.5%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  color: #363C43;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

a {
  color: #2196F3;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a:not([class]):hover {
  opacity: 0.7;
}

button {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
button:not([class]):hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
}

/*
// サンプル
@include g.keyframes(test-sample){
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
*/
.l-wrapper {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
  padding-top: var(--header-height);
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
.l-header__inner {
  display: flex;
  align-items: center;
  height: var(--header-height, 80px);
}
@media screen and (min-width: 1061px) {
  .l-header__inner {
    max-width: 1130px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__inner {
    margin: 0 20px;
    position: relative;
  }
  .l-header__inner::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: -20px;
    top: 0;
    background-color: #fff;
  }
}
.l-header__logo {
  width: 100%;
}
@media screen and (min-width: 1061px) {
  .l-header__logo {
    max-width: 201px;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__logo {
    max-width: 147px;
    position: relative;
    z-index: 1;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1061px) {
  .l-header__nav {
    flex: 1;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__nav {
    position: fixed;
    left: 0;
    top: var(--set-nav-container-pos-y, -100dvh);
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    padding-top: var(--header-height);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__nav.is-opened {
    --set-nav-container-pos-y: 0;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__nav-inner {
    height: 100%;
    overflow-y: auto;
    padding: 26px 20px;
  }
}
.l-header__nav-button {
  margin: 24px 0 0;
  text-align: center;
}
@media screen and (min-width: 1061px) {
  .l-header__nav-button {
    display: none;
  }
}
@media screen and (min-width: 1061px) {
  .l-header__cta {
    margin: 0 0 0 40px;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__cta {
    margin: 0 0 0 auto;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 1061px) {
  .l-header__cta a {
    --set-btn-width: 180px;
  }
}
@media screen and (max-width: 1060px) {
  .l-header__cta a {
    --set-btn-width: 112px;
  }
}
.l-header__menu {
  width: 30px;
  height: 30px;
  margin: 0 0 0 16px;
}
@media screen and (min-width: 1061px) {
  .l-header__menu {
    display: none;
  }
}
@media screen and (min-width: 1061px) {
  .l-header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1060px) {
  .l-header-nav {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.l-header-nav > li {
  font-weight: 500;
}
@media screen and (min-width: 1061px) {
  .l-header-nav > li:not(:first-child) {
    margin-left: 19px;
  }
}
.l-header-nav > li a {
  color: #1E376C;
  text-decoration: none;
  display: block;
}
@media screen and (max-width: 1060px) {
  .l-header-nav > li a {
    padding: 12px 0;
    text-align: center;
  }
}
.l-header-nav > li a:hover {
  opacity: 0.7;
}

.l-footer__copyright {
  display: block;
  color: #fff;
  background-color: #363C43;
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  font-size: 1.2rem;
}

.c-icon-mail {
  display: inline-block;
  width: var(--set-icon-width, 20px);
  height: var(--set-icon-height, 16px);
  background: var(--set-bg-src, url(../img/icon-mail.svg)) no-repeat 0 0;
  background-size: 100% auto;
}
.c-icon-mail--cta, .c-icon-mail--navy {
  --set-icon-width: 26px;
  --set-icon-height: 21px;
}
.c-icon-mail--navy {
  --set-bg-src: url(../img/icon-mail-navy.svg);
}
.c-icon-toggle {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: #04186C;
  border-radius: 100%;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-icon-toggle::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -70%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  box-sizing: border-box;
}
.c-icon-toggle.is-opened {
  transform: scale(-1, -1);
}
.c-btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: var(--set-btn-max-width, 180px);
  min-width: 100px;
  width: var(--set-btn-width, auto);
  padding: 5px 20px;
  border-radius: 100px;
  background-color: #C93448;
  color: #fff;
  font-size: var(--set-btn-font-size, 1.6rem);
  font-weight: 700;
  text-decoration: none;
}
@media screen and (min-width: 1061px) {
  .c-btn-header-cta {
    min-height: 40px;
  }
}
@media screen and (max-width: 1060px) {
  .c-btn-header-cta {
    min-height: 32px;
  }
}
.c-btn-header-cta__label {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}
@media screen and (min-width: 1061px) {
  .c-btn-header-cta__label--icon {
    position: relative;
    padding-left: 30px;
  }
}
.c-btn-header-cta__label--icon [class^=c-icon] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1060px) {
  .c-btn-header-cta__label--icon [class^=c-icon] {
    display: none;
  }
}
.c-btn-header-cta:hover {
  opacity: 0.7;
}
.c-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: var(--set-btn-max-width, 360px);
  min-width: 100px;
  width: var(--set-btn-width, 100%);
  min-height: 64px;
  padding: 5px 20px;
  border-radius: 100px;
  background-color: #C93448;
  color: #fff;
  font-size: var(--set-btn-font-size, 2.4rem);
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-btn-cta {
    --set-btn-font-size: 2rem;
    --set-btn-max-width: 303px;
    min-height: 56px;
  }
}
.c-btn-cta__label {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}
.c-btn-cta__label--icon {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-cta__label--icon {
    padding-left: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-cta__label--icon {
    padding-left: 37px;
  }
}
.c-btn-cta__label--icon [class^=c-icon] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.c-btn-cta:hover {
  opacity: 0.7;
}
.c-btn-menu {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
}
.c-btn-menu__icon {
  display: block;
  width: 100%;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu__icon::before, .c-btn-menu__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background-color: #04186C;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu__icon::before {
  top: 0;
}
.c-btn-menu__icon::after {
  top: calc(100% - 2px);
}
.c-btn-menu__icon > i {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 6px;
  background-color: #04186C;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu.is-opened .c-btn-menu__icon {
  transform: translate(0, -50%) rotateY(360deg);
}
.c-btn-menu.is-opened .c-btn-menu__icon::before, .c-btn-menu.is-opened .c-btn-menu__icon::after {
  top: 50%;
}
.c-btn-menu.is-opened .c-btn-menu__icon::before {
  transform: translateY(-50%) rotate(-45deg);
}
.c-btn-menu.is-opened .c-btn-menu__icon::after {
  transform: translateY(-50%) rotate(45deg);
}
.c-btn-menu.is-opened .c-btn-menu__icon > i {
  opacity: 0;
}
.c-btn-kv-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  min-height: 52px;
  padding: 5px 20px;
  border-radius: 100px;
  background-color: #C93448;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}
.c-btn-kv-cta__label {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-kv-cta__label {
    padding-left: 27px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-kv-cta__label {
    padding-left: 30px;
  }
}
.c-btn-kv-cta__label [class^=c-icon] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .c-btn-kv-cta {
    min-height: 48px;
  }
}
.c-btn-kv-cta:hover {
  opacity: 0.7;
}
.c-btn-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--set-bg-color, #fff);
  border: 1px solid var(--set-bdr-color, #04186C);
  border-radius: 50px;
  min-height: 39px;
  color: var(--set-text-color, #04186C);
  cursor: pointer;
  position: relative;
  outline: none;
  box-shadow: none;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .c-btn-tab {
    min-width: 160px;
    padding: 5px 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-tab {
    padding: 3px 2px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.c-btn-tab::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  border-right: 2px solid var(--set-bdr-color, #04186C);
  border-bottom: 2px solid var(--set-bdr-color, #04186C);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  opacity: var(--set-opacity, 1);
}
@media screen and (max-width: 767px) {
  .c-btn-tab::after {
    display: none;
  }
}
.c-btn-tab__label {
  display: inline-block;
  padding: 0 19px;
  font-weight: 700;
}
.c-btn-tab:hover, .c-btn-tab.is-current {
  --set-bdr-color: #fff;
  --set-bg-color: #04186C;
  --set-text-color: #fff;
}
.c-btn-tab.is-current {
  --set-opacity: 0;
}
.c-btn-semicircle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: var(--set-btn-maxWidth, 240px);
  width: 100%;
  min-height: var(--set-btn-height, 40px);
  padding: 5px 30px;
  border-radius: 100px;
  background-color: #C93448;
  color: #fff;
  font-size: var(--set-label-fontsize, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  outline: none;
  box-shadow: none;
  appearance: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle {
    --set-btn-maxWidth: none;
  }
}
.c-btn-semicircle__label {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}
.c-btn-semicircle::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-70%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.c-btn-semicircle:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1060px) {
  .c-btn-semicircle--nav {
    --set-btn-maxWidth: 240px;
    --set-btn-height: 48px;
    --set-label-fontsize: 1.6rem;
  }
}
.c-btn-semicircle--nav .c-btn-semicircle__label {
  position: relative;
  padding-left: 30px;
}
.c-btn-semicircle--nav .c-btn-semicircle__label > i {
  position: absolute;
  left: 0;
  top: 2px;
}
.c-btn-semicircle--nav::after {
  display: none;
}
.c-heading-section__eng, .c-heading-section__jp {
  display: block;
}
.c-heading-section__eng {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #00004B;
  color: rgba(0, 0, 75, 0.16);
}
@media screen and (min-width: 768px) {
  .c-heading-section__eng {
    font-size: 80px;
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-section__eng {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 768px) {
  .c-heading-section__eng + .c-heading-section__jp {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-section__eng + .c-heading-section__jp {
    margin-top: 6px;
  }
}
.c-heading-section__jp {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-heading-section__jp {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-section__jp {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.c-heading-section__jp > span {
  font-weight: inherit;
  font-style: inherit;
  background: #04186C;
  background: linear-gradient(90deg, rgb(4, 24, 108) 0%, rgb(0, 135, 198) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.c-label {
  display: inline-block;
  background-color: #04186C;
  padding: 0 12px;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-introduction-box {
  background-color: rgba(0, 0, 75, 0.04);
  border-radius: 8px;
  box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .c-introduction-box {
    display: flex;
    align-items: center;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-introduction-box {
    padding: 32px 24px;
  }
}
.c-introduction-box__logo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-introduction-box__logo {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .c-introduction-box__logo {
    max-width: 240px;
    margin: 0 auto 24px;
  }
}
.c-introduction-box__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-introduction-box__text {
    flex: 1;
    margin: 0 0 0 56px;
  }
}
.c-card-icon-set {
  padding: 24px 24px;
  background-color: #FFF;
  box-shadow: 6px 6px 6px 0 rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .c-card-icon-set {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .c-card-icon-set {
    cursor: pointer;
  }
}
.c-card-icon-set__icon {
  max-width: 100px;
  width: 100%;
  margin: 0 auto 10px;
}
.c-card-icon-set__label {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #04186C;
}
@media screen and (min-width: 768px) {
  .c-card-icon-set__label {
    margin: 0 0 17px;
  }
}
@media screen and (max-width: 767px) {
  .c-card-icon-set__label {
    margin: 0 0 22px;
  }
}
@media screen and (max-width: 767px) {
  .c-card-icon-set__list {
    padding: 16px 0 0;
  }
}
.c-card-icon-set__list > li {
  padding-left: 1em;
  position: relative;
}
.c-card-icon-set__list > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-card-icon-set__list-container {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: 0.5s grid-template-rows;
    -moz-transition: 0.5s grid-template-rows;
    -o-transition: 0.5s grid-template-rows;
    -ms-transition: 0.5s grid-template-rows;
    transition: 0.5s grid-template-rows;
    overflow: hidden;
  }
  .c-card-icon-set__list-container.is-opened {
    grid-template-rows: 1fr;
  }
}
.c-card-icon-set__toggle {
  text-align: center;
}
.c-card-icon-set__toggle > * {
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .c-card-icon-set__toggle {
    display: none;
  }
}
.c-card-icon-set__accordion {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card-project-params {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px 24px;
  }
}
.c-card-project-params__item {
  padding: 0 0 0 28px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}
.c-card-project-params__item::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 4px;
  background: var(--set-icon-src) no-repeat 0 0;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .c-card-project-params__item:not(:last-child) {
    margin: 0 0 4px;
  }
}
.c-card-project-params__item--reward {
  --set-icon-src: url(../img/icon-yen.svg);
}
.c-card-project-params__item--position {
  --set-icon-src: url(../img/icon-bag.svg);
}
.c-card-project-params__item--occupancy-rate {
  --set-icon-src: url(../img/icon-clock.svg);
}
.c-card-project-params__item--location {
  --set-icon-src: url(../img/icon-pin.svg);
}
.c-card-project-params__num {
  color: #C93448;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}
.c-card-project-params--free-width {
  grid-template-columns: repeat(2, auto);
  justify-content: start;
}
.c-card-project-table {
  border: 1px solid #ccc;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-card-project-table__row {
    display: flex;
  }
}
.c-card-project-table__row:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .c-card-project-table__cell {
    display: flex;
    align-items: center;
    width: var(--set-cell-width, auto);
    padding: 24px 8px;
  }
}
@media screen and (max-width: 767px) {
  .c-card-project-table__cell {
    padding: 6px 8px;
  }
  .c-card-project-table__cell:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
}
.c-card-project-table__cell--head {
  background-color: #F5F5F8;
}
@media screen and (min-width: 768px) {
  .c-card-project-table__cell--head {
    --set-cell-width: 100px;
    border-right: 1px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  .c-card-project-table__cell--head {
    text-align: center;
  }
}
.c-card-project-block {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.08);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-card-project-block {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 0;
    padding: 30px 24px 32px;
  }
}
@media screen and (max-width: 767px) {
  .c-card-project-block {
    padding: 24px 24px;
  }
}
.c-card-project-block::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background: #04186C;
  background: linear-gradient(90deg, rgb(4, 24, 108) 0%, rgb(0, 135, 198) 100%);
}
.c-card-project-block__heading {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-card-project-block__heading {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-card-project-block__heading {
    margin: 0 0 8px;
  }
}
@media screen and (min-width: 768px) {
  .c-card-project-block__description {
    margin: 0 0 9px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card-project-block__description {
    margin: 0 0 12px;
  }
}
@media screen and (min-width: 768px) {
  .c-card-project-block__params {
    margin: 0 0 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-card-project-block__params {
    margin: 0 0 11px;
  }
}
@media screen and (min-width: 768px) {
  .c-card-project-block__button {
    margin: 16px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .c-card-project-block__button {
    margin: 11px 0 0;
  }
}
.c-card-project-block__button {
  text-align: center;
}
.c {
  /* popup window ------------------------*/
}
.c-set-popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.c-set-popup__overlay {
  background-color: rgba(114, 114, 114, 0.5);
  width: 100%;
  height: 100%;
}
.c-set-popup__window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 5vh);
  max-width: 900px;
}
.c-set-popup__window-list {
  display: flex;
  align-items: center;
}
.c-popup {
  display: none;
  background-color: #fff;
  padding: 40px 0 24px;
  width: 100%;
  box-shadow: 2px 2px 3px 0 rgba(19, 6, 72, 0.16);
  position: relative;
  overflow-y: auto;
  max-height: 95dvh;
}
.c-popup::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background: #04186C;
  background: linear-gradient(90deg, rgb(4, 24, 108) 0%, rgb(0, 135, 198) 100%);
}
.c-popup__inner {
  margin: 0 80px;
}
@media screen and (max-width: 767px) {
  .c-popup__inner {
    margin: 0 15px;
  }
}
.c-popup__main-content::-webkit-scrollbar {
  width: 6px;
}
.c-popup__main-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-right: none;
  border-radius: 10px;
}
.c-popup__main-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.c-popup__main-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
}
.c-popup__header {
  margin: 0 0 12px;
}
@media screen and (max-width: 767px) {
  .c-popup__header {
    margin: 0 0 17px;
  }
}
.c-popup__header-heading {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-popup__header-heading {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}
.c-popup__header-description {
  font-size: 1.6rem;
  margin-top: 8px;
}
.c-popup__header-secondary {
  margin: 0 0 24px;
}
@media screen and (max-width: 767px) {
  .c-popup__header-secondary {
    margin: 0 0 20px;
  }
}
.c-popup__close {
  text-align: center;
  padding: 24px 0 0;
}
.c-popup__close button {
  background: none;
  outline: none;
  border: none;
  display: inline-block;
  color: #0000C5;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-popup-data-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    max-width: 430px;
    width: 100%;
  }
  .c-popup-data-list__item:not(:first-child) {
    margin-top: 5px;
  }
}
.c-popup-data-list__item {
  margin: 0 16px 0 0;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0 0 0 28px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-popup-data-list__item {
    font-size: 1.2rem;
    padding: 0 5px 0 28px;
    margin: 0 0 8px;
  }
  .c-popup-data-list__item:last-child {
    margin-bottom: 0;
  }
}
.c-popup-data-list__item::before {
  content: "";
  display: block;
  width: 20px;
  height: 21px;
  background: no-repeat 0 0;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-popup-data-list__item::before {
    width: 17px;
    height: 18px;
    top: 0;
  }
}
.c-popup-data-list__item:last-child {
  margin-right: 0;
}
.c-popup-data-list__item--reward::before {
  background-image: url(../img/icon-yen.svg);
  top: 0.35em;
}
@media screen and (max-width: 767px) {
  .c-popup-data-list__item--reward::before {
    top: 0.4em;
  }
}
.c-popup-data-list__item--location::before {
  background-image: url(../img/icon-pin.svg);
}
.c-popup-data-list__item--position::before {
  background-image: url(../img/icon-bag.svg);
}
.c-popup-data-list__item--occupancy-rate::before {
  background-image: url(../img/icon-clock.svg);
}
.c-popup__button {
  padding: 48px 0 0;
  text-align: center;
}
.c-popup__button a {
  --set-btn-maxWidth: none;
  --set-btn-height: 48px;
}

/* ポップアップ出現時スクロール固定 */
@media screen and (min-width: 768px) {
  html.is-unscrollable body {
    position: fixed;
    overflow: hidden;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html.is-unscrollable body {
    position: fixed;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html.is-unscrollable-menu {
    overflow: hidden;
  }
  html.is-unscrollable-menu body {
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .p-content-section {
    --set-section-padding: 80px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section {
    --set-section-padding: 40px 0;
  }
}
.p-content-section__inner {
  padding: var(--set-section-padding);
  transform: translateY(var(--set-section-margin-top, 0));
}
@media screen and (min-width: 768px) {
  .p-content-section__inner {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__inner {
    margin: 0 20px;
  }
}
.p-content-section__header--on-layer {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-content-section__header + .p-content-section__description {
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__header + .p-content-section__description {
    margin-top: 39px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section__body {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__body {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section__body--benefit {
    padding-top: 47px;
  }
}
.p-content-section__description {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-content-section__description + * {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__description + * {
    margin-top: 22px;
  }
}
.p-content-section--bg-gray {
  background-color: rgba(0, 0, 75, 0.04);
}
.p-content-section--bg-molecular {
  position: relative;
}
.p-content-section--bg-molecular::before, .p-content-section--bg-molecular::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-content-section--bg-molecular::before, .p-content-section--bg-molecular::after {
    display: none;
  }
}
.p-content-section--bg-molecular::before {
  top: 0;
  height: 865px;
  background: url(../img/bg-molecular-top.) no-repeat center top;
  background-size: 100% auto;
}
.p-content-section--bg-molecular::after {
  bottom: 0;
  height: 322px;
  background: url(../img/bg-molecular-btm.webp) no-repeat center bottom;
  background-size: 100% auto;
}
.p-content-section--bg-molecular > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-content-section--protrude-top {
    --set-section-margin-top: -40px;
    --set-section-padding: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--protrude-top {
    --set-section-margin-top: -24px;
    --set-section-padding: 0 0 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--revolution {
    --set-section-padding: 80px 0 127px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--revolution {
    --set-section-padding: 80px 0 71px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--benefit {
    --set-section-padding: 80px 0 136px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--benefit {
    --set-section-padding: 40px 0 84px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--leader {
    --set-section-padding: 78px 0 20px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--leader {
    --set-section-padding: 40px 0 56px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--introduction {
    --set-section-padding: 82px 0 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--introduction {
    --set-section-padding: 0 0 56px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-column {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .p-content-column__content {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-content-column__image {
    max-width: 460px;
    width: 100%;
    margin: 95px 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-column__image {
    margin: 24px 0 0;
  }
}
.p-content-column__image img {
  width: 100%;
  height: auto;
}
.p-content-column__body {
  margin-top: 12px;
}
.p-content-column__body p + p {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .p-cta-section {
    background: url(../img/bg-cta.webp) no-repeat center;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-section {
    background: url(../img/bg-cta-sp.webp) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .p-cta-section__inner {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-section__inner {
    padding: 56px 20px;
  }
}
.p-cta-content {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid white;
  border-radius: 8px;
  color: #04186C;
}
@media screen and (min-width: 768px) {
  .p-cta-content {
    padding: 24px 20px 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-content {
    padding: 16px 16px 22px;
  }
}
.p-cta-content__heading, .p-cta-content__excerpt {
  text-align: center;
}
.p-cta-content__heading {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-cta-content__heading {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-content__heading {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-cta-content__excerpt {
  margin: 16px 0 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-cta-content__excerpt {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
  }
}
.p-cta-content__button {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
  /*a {
    --set-btn-max-width: 384px;
    --set-btn-width: 100%;
  }*/
}
.p-faq-list__item:not(:last-child) {
  margin-bottom: 24px;
}
.p-faq-block {
  background-color: #fff;
  border-radius: 8px;
}
.p-faq-block__quest-inner, .p-faq-block__answer-inner {
  position: relative;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .p-faq-block__quest-inner, .p-faq-block__answer-inner {
    padding-left: 49px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__quest-inner, .p-faq-block__answer-inner {
    padding-left: 40px;
  }
}
.p-faq-block__quest-inner::before, .p-faq-block__answer-inner::before {
  content: var(--set-content-char);
  display: block;
  color: var(--set-content-color);
  font-size: var(--set-content-fontsize);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: var(--set-content-pos-x, 0);
  top: 0;
  transform: var(--set-content-transform, translateY(-5px));
}
.p-faq-block__quest {
  --set-content-char: "Q";
  --set-content-color: #04186C;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-faq-block__quest {
    --set-content-fontsize: 3.2rem;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 29px 32px 29px 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__quest {
    --set-content-fontsize: 2.8rem;
    padding: 24px;
  }
}
.p-faq-block__quest.is-opened + .p-faq-block__answer {
  grid-template-rows: 1fr;
  padding-bottom: 32px;
}
.p-faq-block__quest.is-opened .p-faq-block__toggle {
  --set-toggle-transform: translateY(-50%) rotate(180deg);
}
.p-faq-block__quest.is-opened .p-faq-block__toggle::before {
  --set-icon-transform: translate(-50%, -50%);
}
.p-faq-block__answer {
  --set-content-char: "A";
  --set-content-fontsize: 2.4rem;
  --set-content-color: #ccc;
  --set-content-pos-x: 3px;
  --set-content-transform: none;
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 0.5s grid-template-rows;
  -moz-transition: 0.5s grid-template-rows;
  -o-transition: 0.5s grid-template-rows;
  -ms-transition: 0.5s grid-template-rows;
  transition: 0.5s grid-template-rows;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-faq-block__answer {
    padding: 0 0 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__answer {
    padding: 0 0 0 24px;
  }
}
.p-faq-block__answer-inner > p + * {
  margin-top: 1.8em;
}
.p-faq-block__answer-inner > p + .p-faq-inner-section {
  margin-top: 24px;
}
.p-faq-block__accordion {
  overflow: hidden;
}
.p-faq-block__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: var(--set-toggle-transform, translateY(-50%));
  display: block;
  width: 32px;
  height: 32px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-faq-block__toggle::before, .p-faq-block__toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 3px;
  background-color: #144A87;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: var(--set-icon-transform, translate(-50%, -50%));
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-faq-block__toggle::before {
  --set-icon-transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq-inner-section {
  background-color: #F5F5F5;
  padding: 24px;
  position: relative;
}
.p-faq-inner-section:not(:last-child)::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 50%;
  border-right: 2px solid #04186C;
  border-bottom: 2px solid #04186C;
  transform: translate(-50%, 30%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-faq-inner-section:not(:last-child)::after {
    bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-inner-section:not(:last-child)::after {
    bottom: -15px;
  }
}
@media screen and (min-width: 768px) {
  .p-faq-inner-section + .p-faq-inner-section {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-inner-section + .p-faq-inner-section {
    margin-top: 32px;
  }
}
.p-faq-inner-section__heading {
  margin: 0 0 8px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-faq-inner-section__heading [class~=c-label] {
  margin-right: 8px;
}
.p-leader-profile-section {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-leader-profile-section__image {
    position: absolute;
    left: 50%;
    top: -143px;
    width: 100dvw;
    height: 624px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-leader-profile-section__image {
    margin: 0 -20px -20px;
  }
}
.p-leader-profile-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-leader-profile-section__profile {
  max-width: 600px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-leader-profile-section__profile {
    min-height: 570px;
  }
}
.p-profile-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .p-profile-box {
    padding: 40px 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-profile-box {
    padding: 24px 24px;
  }
}
.p-profile-box__heading-position, .p-profile-box__heading-name {
  display: block;
}
.p-profile-box__heading-position {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #00004B;
  color: rgba(0, 0, 75, 0.24);
  margin: 0 0 8px;
}
@media screen and (min-width: 768px) {
  .p-profile-box__heading-position {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-profile-box__heading-position {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.p-profile-box__heading-name {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-profile-box__heading + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-profile-box__heading + * {
    margin-top: 26px;
  }
}
@media screen and (min-width: 768px) {
  .p-profile-box__text + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-profile-box__text + * {
    margin-top: 28px;
  }
}
.p-profile-box__text + .p-profile-box__text {
  margin-top: 16px;
}
.p-profile-box-section__heading {
  font-weight: 700;
}
.p-profile-box-section__text {
  font-size: 14px;
  font-size: 1.4rem;
}
.p-profile-box-section__text + .p-profile-box-section__text {
  margin-top: 16px;
}
.p-numbering-box-list {
  counter-reset: list-num;
}
.p-numbering-box-list > * {
  counter-increment: list-num;
}
@media screen and (min-width: 768px) {
  .p-numbering-box-list > *:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-numbering-box-list > *:not(:last-child) {
    padding-bottom: 40px;
  }
}
.p-numbering-box-list > *:nth-child(2n) {
  --set-bg-color: #F5F5F8;
}
.p-numbering-box-block {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-numbering-box-block {
    display: flex;
    padding: 56px 32px 40px;
    border-radius: 0 0 8px 8px;
    background-color: var(--set-bg-color, #fff);
    box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.08);
  }
}
.p-numbering-box-block::before {
  content: counter(list-num, decimal-leading-zero);
  display: block;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 75, 0.16);
  font-size: 64px;
  font-size: 6.4rem;
}
@media screen and (min-width: 768px) {
  .p-numbering-box-block::before {
    position: absolute;
    left: 28px;
    top: 0;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-numbering-box-block::before {
    margin: 0 0 8px;
  }
}
.p-numbering-box-block::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 123px);
  height: 8px;
  background: #04186C;
  background: linear-gradient(90deg, rgb(4, 24, 108) 0%, rgb(0, 135, 198) 100%);
}
@media screen and (max-width: 767px) {
  .p-numbering-box-block::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-numbering-box-block__content {
    flex: 1;
    margin: 0 40px 0 0;
  }
}
.p-numbering-box-block__heading {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 16px;
}
@media screen and (min-width: 768px) {
  .p-numbering-box-block__image {
    max-width: 340px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-numbering-box-block__image {
    margin: 24px 0 0;
  }
}
.p-numbering-box-block__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-numbering-box-block__image img {
    border-radius: 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-card-professional-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-card-professional-list > * {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
}
@media screen and (max-width: 767px) {
  .p-card-professional-list > *:not(:last-child) {
    margin: 0 0 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-keyvisual {
    height: 536px;
    background: url(../img/bg-kv.webp) no-repeat center;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual {
    height: 370px;
    background: url(../img/bg-kv-sp.webp) no-repeat center;
    background-size: cover;
  }
}
.p-keyvisual__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__inner {
    max-width: 1104px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual__inner {
    margin: 0 16px;
    justify-content: center;
  }
}
.p-keyvisual__logo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__logo {
    max-width: 508px;
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual__logo {
    max-width: 343px;
    margin: 0 auto 16px;
  }
}
.p-keyvisual__logo img {
  width: 100%;
  height: auto;
}
.p-keyvisual__catchcopy {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__catchcopy {
    margin: 0 0 24px 16px;
    max-width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual__catchcopy {
    margin: 0 auto 12px;
    max-width: 330px;
  }
}
.p-keyvisual__text {
  color: #04186C;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__text {
    margin: 0 0 0 16px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual__text {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-keyvisual__button {
    margin: 37px 0 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual__button {
    margin: 21px 0 0;
    text-align: center;
  }
}
.p-keyvisual-catchcopy__band, .p-keyvisual-catchcopy__band-grad {
  display: block;
}
.p-keyvisual-catchcopy__band {
  color: #04186C;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-keyvisual-catchcopy__band {
    margin: 0 0 -16px -16px;
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual-catchcopy__band {
    margin: 0 0 -8px -6px;
    padding: 0 13px 0 0;
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-keyvisual-catchcopy__band > span {
  background-color: #fff;
  font-weight: inherit;
}
@media screen and (min-width: 768px) {
  .p-keyvisual-catchcopy__band > span {
    display: inline-block;
    padding: 7px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual-catchcopy__band > span {
    display: block;
    padding: 6px 12px;
  }
}
.p-keyvisual-catchcopy__band-grad {
  color: #fff;
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-keyvisual-catchcopy__band-grad {
    font-size: 32px;
    font-size: 3.2rem;
    text-align: center;
  }
  .p-keyvisual-catchcopy__band-grad small {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.p-keyvisual-catchcopy__band-grad > span {
  background: #04186C;
  background: linear-gradient(90deg, rgb(4, 24, 108) 0%, rgb(0, 135, 198) 100%);
  font-weight: inherit;
}
@media screen and (min-width: 768px) {
  .p-keyvisual-catchcopy__band-grad > span {
    display: inline-block;
    padding: 27px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual-catchcopy__band-grad > span {
    display: block;
    padding: 12px 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-pickup-projects__tabs {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-projects__tabs {
    margin: 0 0 24px;
  }
}
.p-project-tabs {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-project-tabs {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .p-project-tabs > li {
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-project-tabs > li {
    width: calc((100% - 16px) / 3);
    margin: 8px 8px 0 0;
  }
  .p-project-tabs > li:nth-child(-n+3) {
    margin-top: 0;
  }
  .p-project-tabs > li:nth-child(3n) {
    margin-right: 0;
  }
  .p-project-tabs > li > * {
    width: 100%;
    height: 100%;
    max-width: none;
  }
}
.p-project-tabs > li:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-card-project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 37px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-project-list > *:not(:last-child) {
    margin: 0 0 24px;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-inb {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .u-desktop-inb {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-in {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .u-desktop-in {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-bl {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-desktop-bl {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-mobile-inb {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-inb {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .u-mobile-in {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-in {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .u-mobile-bl {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-bl {
    display: block;
  }
}
/*# sourceMappingURL=index.css.map */