.info {
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .info {
    margin: 50px auto 0;
  }
}
.info__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}
.info__contents {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: start;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
@media screen and (max-width: 768px) {
  .info__contents {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}
.info__ttl {
  font-size: clamp(2rem, 0.222rem + 3.7vw, 3rem);
  font-family: var(--serif);
  font-weight: 400;
  color: var(--marukin);
  line-height: 1.4583333333;
  padding-left: 0.5em;
  text-indent: -0.5em;
  margin-left: -0.5em;
}
.info__text {
  font-size: var(--md);
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .info__text br {
    display: none;
  }
}
.info__list {
  width: 100%;
  margin: 100px auto 0;
  border-top: 1px solid var(--gray1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 5%;
       column-gap: 5%;
}
@media screen and (max-width: 768px) {
  .info__list {
    margin: 50px auto 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__item {
  width: 100%;
}
.info__item:nth-child(n+3) {
  border-top: 1px solid var(--gray1);
}
@media screen and (max-width: 768px) {
  .info__item:nth-child(n+2) {
    border-top: 1px solid var(--gray1);
  }
}
.info__item-link {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr 7px;
  align-items: start;
  -moz-column-gap: 5.2631578947%;
       column-gap: 5.2631578947%;
  padding: 30px 0;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .info__item-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .info__item-link {
    padding: 20px 0;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}
.info__item-num {
  font-size: var(--lg);
  color: var(--marukin);
}
.info__item-title {
  font-size: var(--md);
  line-height: 2;
  text-box-trim: trim-both;
}
.info__item-arrow {
  width: 7px;
  aspect-ratio: 7/15;
  -webkit-mask-image: url("/common/img/icon_arrow-bottom.svg");
          mask-image: url("/common/img/icon_arrow-bottom.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--black);
}
@media screen and (max-width: 768px) {
  .info__item-arrow {
    align-self: center;
  }
}

.concept {
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .concept {
    margin: 50px auto 0;
  }
}

.concept-btn {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .concept-btn {
    margin: 20px auto 0;
  }
}
.concept-btn__link {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  border-radius: 100vmax;
  background: var(--black);
  padding: 20px 10px 20px 30px;
  font-size: var(--sm);
  color: var(--white);
  line-height: 0.9;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .concept-btn__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .concept-btn__link {
    padding: 15px 10px 15px 30px;
  }
}
.concept-btn__link::after {
  content: "";
  width: 15px;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}

.concept-box {
  width: 100%;
  padding: 40px 0 80px;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .concept-box {
    padding: 30px 0 50px;
  }
}
.concept-box:nth-child(odd) {
  background: var(--gray2);
}
.concept-box__num {
  width: min(90%, 1350px);
  margin: 0 auto;
  font-size: var(--lg);
  color: var(--marukin);
  left: 0;
  line-height: 1;
}
.concept-box__inner {
  width: min(90%, 1200px);
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  .concept-box__inner {
    margin: 20px auto 0;
  }
}
.concept-box__contents {
  display: grid;
  grid-template-columns: auto 45.4166666667%;
  justify-content: space-between;
  align-items: start;
}
.concept-box__contents:not(:has(.concept-box__text)) {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 1024px) {
  .concept-box__contents {
    grid-template-columns: repeat(1, 1fr);
    justify-content: start;
    row-gap: 20px;
  }
}
.concept-box__title-main {
  font-family: var(--serif);
  color: var(--marukin);
  font-size: 36px;
  line-height: 1.6666666667;
  margin-block: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 1024px) {
  .concept-box__title-main {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .concept-box__title-main {
    font-size: 24px;
  }
}
.concept-box__title-main--bracket {
  padding-left: 0.5em;
  text-indent: -0.5em;
  margin-left: -0.5em;
}
.concept-box__title-sub {
  margin: 10px auto 0;
  font-size: 24px;
  line-height: 2.0833333333;
  color: var(--marukin);
  font-family: var(--serif);
}
@media screen and (max-width: 1024px) {
  .concept-box__title-sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .concept-box__title-sub {
    margin: 0 auto;
  }
}
.concept-box__text {
  font-size: var(--md);
  line-height: 1.875;
}

.concept-box01__role {
  width: 100%;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .concept-box01__role {
    margin: 30px auto 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
.concept-box01__role-title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: var(--marukin);
  color: var(--white);
  font-size: var(--md);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .concept-box01__role-title {
    padding: 15px 0;
  }
}
.concept-box01__role-list {
  width: 100%;
  padding: 30px;
  background: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 6.5727699531%;
       column-gap: 6.5727699531%;
}
@media screen and (max-width: 768px) {
  .concept-box01__role-list {
    justify-content: center;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    padding: 0 5%;
  }
}
.concept-box01__role-item {
  font-size: var(--md);
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .concept-box01__role-item {
    width: 100%;
    padding: 15px 0;
  }
}
@media screen and (max-width: 768px) {
  .concept-box01__role-item:nth-child(n+2) {
    border-top: 1px solid var(--gray1);
  }
  .concept-box01__role-item:nth-child(n+2)::before {
    display: none;
  }
}
.concept-box01__role-item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 40px;
  rotate: 15deg;
  background: var(--gray1);
}
.concept-box01__text {
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--md);
  line-height: 1.875;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .concept-box01__text {
    margin: 20px auto 0;
  }
}
.concept-box01__list {
  width: 100%;
  max-width: 940px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2.1276595745%;
       column-gap: 2.1276595745%;
}
@media screen and (max-width: 768px) {
  .concept-box01__list {
    margin: 20px auto 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2vw;
  }
}
.concept-box01__item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--marukin);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .concept-box01__item:nth-child(1) {
    grid-column: span 2;
    width: 50%;
    margin: 0 auto;
  }
}
.concept-box01__item-num {
  width: 13.3333333333%;
  aspect-ratio: 1/1;
  font-size: var(--md);
  letter-spacing: 0;
  line-height: 1;
  color: var(--marukin);
  position: absolute;
  top: 8%;
  left: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gray2);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .concept-box01__item-num {
    width: 7.8125vw;
    font-size: 3.125vw;
    left: 6%;
    top: 6%;
  }
}
.concept-box01__item-text {
  text-align: center;
  font-family: var(--serif);
  color: var(--black);
  font-size: clamp(1.125rem, 0.458rem + 1.39vw, 1.5rem);
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .concept-box01__item-text {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  }
}
.concept-box01 .concept-btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .concept-box01 .concept-btn {
    margin: 20px auto 0;
  }
}

.concept-box02__list {
  width: 100%;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1024px) {
  .concept-box02__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }
}
@media screen and (max-width: 768px) {
  .concept-box02__list {
    margin: 50px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.concept-box02__item {
  width: 100%;
  padding: 0 12.5%;
}
@media screen and (max-width: 1024px) {
  .concept-box02__item {
    padding: 20px 5%;
  }
}
.concept-box02__item:nth-child(n+2) {
  border-left: 1px solid var(--gray1);
}
@media screen and (max-width: 1024px) {
  .concept-box02__item:nth-child(n+2) {
    border-left: none;
  }
}
@media screen and (max-width: 1024px) {
  .concept-box02__item {
    outline: 1px solid var(--gray1);
  }
}
.concept-box02__item-icon {
  width: auto;
  height: 75px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .concept-box02__item-icon {
    height: 50px;
  }
}
.concept-box02__item-ttl {
  width: 100%;
  margin: 50px auto 0;
  font-size: var(--lg);
  line-height: 1.6666666667;
}
@media screen and (max-width: 1024px) {
  .concept-box02__item-ttl {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .concept-box02__item-ttl br {
    display: none;
  }
}
.concept-box02__item-text {
  width: 100%;
  margin: 30px auto 0;
  font-size: var(--md);
  line-height: 1.875;
}
@media screen and (max-width: 1024px) {
  .concept-box02__item-text {
    margin: 10px auto 0;
  }
}
.concept-box02 .concept-btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .concept-box02 .concept-btn {
    margin: 20px auto 0;
  }
}

.concept-box03__list {
  width: 100%;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .concept-box03__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
}
@media screen and (max-width: 768px) {
  .concept-box03__list {
    margin: 50px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.concept-box03__item {
  width: 100%;
  padding: 0 12.5%;
}
@media screen and (max-width: 1024px) {
  .concept-box03__item {
    padding: 20px 5%;
  }
}
.concept-box03__item:nth-child(n+2) {
  border-left: 1px solid var(--gray1);
}
@media screen and (max-width: 1024px) {
  .concept-box03__item:nth-child(n+2) {
    border-left: none;
  }
}
@media screen and (max-width: 1024px) {
  .concept-box03__item {
    outline: 1px solid var(--gray1);
  }
}
.concept-box03__item-icon {
  width: auto;
  height: 75px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .concept-box03__item-icon {
    height: 50px;
  }
}
.concept-box03__item-ttl {
  width: 100%;
  margin: 50px auto 0;
  font-size: var(--lg);
  line-height: 1.6666666667;
}
@media screen and (max-width: 1024px) {
  .concept-box03__item-ttl {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .concept-box03__item-ttl br {
    display: none;
  }
}
.concept-box03__item-text {
  width: 100%;
  margin: 30px auto 0;
  font-size: var(--md);
  line-height: 1.875;
}
@media screen and (max-width: 1024px) {
  .concept-box03__item-text {
    margin: 10px auto 0;
  }
}
.concept-box03 .concept-btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .concept-box03 .concept-btn {
    margin: 20px auto 0;
  }
}

.concept-box04__list {
  width: 100%;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 3.75%;
       column-gap: 3.75%;
}
@media screen and (max-width: 1024px) {
  .concept-box04__list {
    -moz-column-gap: 2%;
         column-gap: 2%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .concept-box04__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .concept-box04__list {
    gap: 10px;
  }
}
.concept-box04__item {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--marukin);
  border-radius: 20px;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.concept-box04__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -13.5135135135%;
  bottom: -13.5135135135%;
  width: 100%;
  height: auto;
  aspect-ratio: 378/345;
  background: url("/concept/img/sec04_bg-arrow.png") no-repeat left bottom/contain;
}
@media screen and (max-width: 1024px) {
  .concept-box04__item {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .concept-box04__item:nth-child(1) {
    width: 50%;
    margin: 0 auto;
    grid-column: span 2;
  }
}
.concept-box04__item-dl {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 50px;
}
@media screen and (max-width: 1280px) {
  .concept-box04__item-dl {
    row-gap: 3vw;
  }
}
@media screen and (max-width: 1024px) {
  .concept-box04__item-dl {
    row-gap: clamp(0.625rem, -5.029rem + 11.76vw, 2.5rem);
  }
}
@media screen and (max-width: 768px) {
  .concept-box04__item-dl {
    row-gap: clamp(0.625rem, -5.205rem + 18.66vw, 3.75rem);
  }
}
@media screen and (max-width: 500px) {
  .concept-box04__item-dl {
    row-gap: 2vw;
  }
}
.concept-box04__item-dt {
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--lg);
  border-radius: 100vmax;
  text-align: center;
  font-weight: 400;
  color: var(--marukin);
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .concept-box04__item-dt {
    font-size: 14px;
    padding: 0 15px;
  }
}
.concept-box04__item-dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .concept-box04__item-dd {
    row-gap: 10px;
  }
}
.concept-box04__item-text {
  font-size: 30px;
  font-family: var(--serif);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .concept-box04__item-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .concept-box04__item-text {
    font-size: 20px;
  }
}
.concept-box04__item-ttl {
  font-size: 80px;
  font-family: var(--serif);
  color: var(--white);
  line-height: 0.75;
}
@media screen and (max-width: 1280px) {
  .concept-box04__item-ttl {
    font-size: 60px;
  }
}
@media screen and (max-width: 500px) {
  .concept-box04__item-ttl {
    font-size: 40px;
  }
}
.concept-box04__item-num, .concept-box04__item-span {
  font-size: 120px;
  font-family: var(--serif);
  color: var(--white);
  line-height: 0.75;
  margin: -10px auto 0;
}
@media screen and (max-width: 1280px) {
  .concept-box04__item-num, .concept-box04__item-span {
    font-size: 80px;
    margin: -5px auto 0;
  }
}
@media screen and (max-width: 500px) {
  .concept-box04__item-num, .concept-box04__item-span {
    font-size: 64px;
  }
}
.concept-box04__item-span {
  margin: 0 auto;
}
.concept-box04__item-unit {
  font-size: 72px;
  font-family: var(--serif);
  color: var(--white);
  line-height: 0.75;
}
@media screen and (max-width: 1280px) {
  .concept-box04__item-unit {
    font-size: 48px;
  }
}
@media screen and (max-width: 500px) {
  .concept-box04__item-unit {
    font-size: 32px;
  }
}

.concept-box05__flow {
  width: 100%;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 4.1666666667%;
       column-gap: 4.1666666667%;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .concept-box05__flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .concept-box05__flow {
    max-width: 500px;
    margin: 50px auto 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw 10%;
  }
}
.concept-box05__flow-item:nth-child(n+2) .concept-box05__flow-circle::before {
  content: "";
  width: 10.7594936709%;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: -20.253164557%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray3);
}
@media screen and (max-width: 1024px) {
  .concept-box05__flow-item:nth-child(n+2) .concept-box05__flow-circle::before {
    width: 8%;
    left: -12%;
  }
}
@media screen and (max-width: 768px) {
  .concept-box05__flow-item:nth-child(n+2) .concept-box05__flow-circle::before {
    left: -15%;
  }
}
@media screen and (max-width: 768px) {
  .concept-box05__flow-item:nth-child(odd):not(:first-child) .concept-box05__flow-circle::before {
    left: -10%;
  }
}
.concept-box05__flow-item:last-child .concept-box05__flow-circle {
  background: var(--marukin);
}
.concept-box05__flow-item:last-child .concept-box05__flow-num {
  color: rgba(255, 255, 255, 0.5);
}
.concept-box05__flow-item:last-child .concept-box05__flow-ttl {
  color: var(--white);
}
.concept-box05__flow-circle {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.concept-box05__flow-num {
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: var(--md);
  font-weight: 700;
  color: var(--gray3);
}
@media screen and (max-width: 1024px) {
  .concept-box05__flow-num {
    font-size: var(--lg);
  }
}
@media screen and (max-width: 768px) {
  .concept-box05__flow-num {
    font-size: 2.5vw;
  }
}
.concept-box05__flow-ttl {
  position: relative;
  font-size: var(--md);
  color: var(--black);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .concept-box05__flow-ttl {
    font-size: var(--lg);
  }
}
@media screen and (max-width: 768px) {
  .concept-box05__flow-ttl {
    font-size: 3vw;
  }
}
.concept-box05__flow-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  position: relative;
  font-size: var(--sm);
  line-height: 1.7857142857;
  color: var(--black);
}
@media screen and (max-width: 1024px) {
  .concept-box05__flow-text {
    margin: 10px auto 0;
  }
}

.concept-box06 .noto {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
}
.concept-box06__message {
  width: 100%;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 37.5%;
  -moz-column-gap: 7.5%;
       column-gap: 7.5%;
}
@media screen and (max-width: 768px) {
  .concept-box06__message {
    margin: 50px auto 0;
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .concept-box06__message-contents {
    order: 2;
  }
}
.concept-box06__message-text {
  font-size: var(--md);
  line-height: 1.875;
  color: var(--black);
}
.concept-box06__message-text:nth-child(n+2) {
  margin: 1em auto 0;
}
@media screen and (max-width: 768px) {
  .concept-box06__message-text br {
    display: none;
  }
}
.concept-box06__message .concept-btn {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .concept-box06__message .concept-btn {
    justify-content: center;
  }
}
.concept-box06__message-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .concept-box06__message-img {
    order: 1;
    width: 70%;
    margin: 0 auto;
  }
}
.concept-box06__message-img img {
  border-radius: 20px;
}

.concept-box07__list {
  width: 100%;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 2.0833333333%;
       column-gap: 2.0833333333%;
}
@media screen and (max-width: 768px) {
  .concept-box07__list {
    margin: 30px auto 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
  }
}
.concept-box07__item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--marukin);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.concept-box07__item-num {
  width: 13.3333333333%;
  aspect-ratio: 1/1;
  font-size: var(--md);
  letter-spacing: 0;
  line-height: 1;
  color: var(--marukin);
  position: absolute;
  top: 8%;
  left: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gray2);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .concept-box07__item-num {
    width: 7.8125vw;
    font-size: 3.125vw;
    left: 6%;
    top: 6%;
  }
}
.concept-box07__item-ttl {
  text-align: center;
  font-family: var(--serif);
  color: var(--black);
  font-size: clamp(0.875rem, -0.014rem + 1.85vw, 1.375rem);
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .concept-box07__item-ttl {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  }
}
/*# sourceMappingURL=layout.css.map */
