/* ==================================
共通
================================== */
:root {
  --color-red: #e60024;
  --color-pink: #fae7e2;
  --color-black: #4c4c4c;
  --color-skyblue: #ecf3ff;
  --color-skyblue2: #f8fbff;
  --color-blue: #4581ec;
  --color-white: #fff;
  --color-gray: #f6f6f6;
  --font-base: "Noto Sans JP", sans-serif;
  --font-mon: "Montserrat", sans-serif;
}
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 840px) {
  html {
    scroll-padding-top: 46px;
  }
}
body {
  color: var(--color-black);
  font-family: var(--font-base);
  text-align: start;
  font-size: 16px;
}

img {
  width: 100%;
  height: auto;
}
sup {
  vertical-align: super;
}
.c-section {
  padding-block: 100px;
}
@media screen and (max-width: 840px) {
  .c-section {
    padding-block: 40px;
  }
}
/* ==================================
タイトル
================================== */

.section__title {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-red);
  font-size: clamp(22px, calc(0.65vw + 19.57px), 32px);
  font-weight: 700;
  font-feature-settings: "halt";
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .section__title {
    text-align: left;
  }
}

.section__title::before {
  flex-shrink: 0;
  width: clamp(40px, calc(7.51vw + 11.83px), 120px);
  height: 1px;
  background-color: var(--color-red);
  content: "";
}

.section__title--white {
  color: var(--color-white);
}

.section__title--white::before {
  background-color: var(--color-white);
}

.section__lead {
  font-size: 16px;
  line-height: 2;
  font-feature-settings: "halt";
  margin-block-start: 20px;
}

@media screen and (max-width: 840px) {
  .section__lead {
    font-size: 14px;
  }
}

.section__lead--white {
  color: var(--color-white);
}

/* ==================================
ボタン
================================== */
.c-btn__square--red-bg {
  outline: solid 2px #fff;
  color: #fff;
}
/* ==================================
FV
================================== */
.fv {
  background-color: var(--color-white);
  max-width: 1440px;
  margin-inline: auto;
}

.fv__inner {
  display: flex;
  gap: 70px;
  align-items: center;
  padding-inline-start: 200px;
}
@media screen and (max-width: 840px) {
  .fv__inner {
    flex-direction: column;
    padding-inline-start: 0;
    padding-inline: 15px;
    gap: 30px;
  }
}
.fv__body {
  max-width: 530px;
}
.fv__logo {
  max-width: clamp(130px, calc(5.35vw + 109.93px), 187px);
}

.fv__title {
  font-weight: 700;
  font-size: 30px;
  margin-block-start: 40px;
}
.fv__title .color {
  color: var(--color-red);
}
.fv__company {
  font-size: 14px;
  line-height: 1.5;
  margin-block-start: 10px;
}

.fv__message {
  font-weight: 700;
  display: inline-block;
  padding-inline: 16px;
  padding-block: 4px;
  background-color: var(--color-red);
  color: var(--color-white);
  margin-block-start: 20px;
}

.fv__text {
  font-size: clamp(14px, calc(0.19vw + 13.3px), 16px);
  line-height: 2;
  margin-block-start: 24px;
}
.fv__image {
  max-width: 630px;
  flex-shrink: 0;
}
/* ==================================
概要
================================== */
.about {
  background-image: url("../img/about-bg-pc.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .about {
    background-image: url("../img/about-bg-sp.webp");
  }
}
.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  padding-block: 90px;
}

.about__title {
  color: var(--color-black);
  font-size: clamp(24px, calc(0.94vw + 20.48px), 34px);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  line-height: 1.45;
}

.about__title span {
  color: var(--color-red);
}

.about__text {
  color: var(--color-black);
  font-weight: 600;
  line-height: 2;
}

.about__text + .about__text {
  margin-top: 32px;
}

@media screen and (max-width: 840px) {
  .about {
    background-position: center bottom;
  }

  .about__inner {
    display: block;
    min-height: 0;
    padding-block: 55px;
  }

  .about__heading {
    padding-inline: 0;
  }

  .about__title {
    font-size: 25px;
    line-height: 1.55;
  }

  .about__contents {
    margin-top: 30px;
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(76, 76, 76, 0.28);
    border-left: 0;
  }

  .about__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }

  .about__text + .about__text {
    margin-top: 25px;
  }

  .about__text .pc {
    display: none;
  }
}
/* ==================================
mission
================================== */
.mission {
  background-color: var(--color-pink);
  position: relative;
  overflow: hidden;
}

.mission:before {
  content: "";
  width: 654px;
  height: 190px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -40px;
  right: 0;
  background-image: url(../img/mission-bg.svg);
}
@media screen and (max-width: 767px) {
  .mission:before {
    width: 424px;
    height: 149px;
    top: 22px;
    right: -240px;
  }
}

.mission:after {
  content: "";
  width: 348px;
  height: 132px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/mission-bg.svg);
}
@media screen and (max-width: 767px) {
  .mission:after {
    display: none;
  }
}

.mission__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 35px;
}

.mission__item {
  padding: 37px 35px 32px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
}

.mission__label {
  color: var(--color-red);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.mission__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
}

.mission__symbol {
  width: 27px;
}

.mission__itemTitle {
  color: var(--color-red);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.mission__subTitle {
  margin-top: 15px;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.7;
}

.mission__text {
  margin-top: 18px;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.8;
}

.mission__subTitle + .mission__text {
  margin-top: 0;
}

@media screen and (max-width: 840px) {
  .mission__title {
    gap: 14px;
    font-size: 25px;
  }

  .mission__title::before {
    width: 45px;
  }

  .mission__list {
    gap: 15px;
    margin-top: 28px;
  }

  .mission__item {
    padding: 25px 20px;
    border-radius: 6px;
  }

  .mission__heading {
    gap: 14px;
    margin-top: 12px;
  }

  .mission__itemTitle {
    font-size: 19px;
    line-height: 1.6;
  }

  .mission__subTitle {
    margin-top: 15px;
    font-size: 14px;
  }

  .mission__text {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.9;
  }
}
/* ==================================
approach
================================== */
.approach {
  background-color: var(--color-white);
}

.approach__title {
  display: flex;
  align-items: center;
  gap: 35px;
  color: var(--color-red);
  font-size: clamp(24px, calc(0.52vw + 22.06px), 32px);
  font-weight: 700;
  line-height: 1.5;
}

.approach__title::before {
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  background-color: var(--color-red);
  content: "";
}

.approach__capital {
  margin-top: 38px;
  text-align: center;
}

.approach__heading {
  color: var(--color-red);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.approach__headingText {
  margin-top: 12px;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.scroll-hint-icon {
  width: 160px;
  height: 160px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(66, 65, 75, 0.6);
}

.scroll-hint-icon:before {
  width: 79px;
  height: 112px;
  background-image: url(../img/icon-scroll-hint.svg);
}
.scroll-hint-icon:after {
  display: none;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(40px);
    opacity: 0;
  }
}
.scroll-hint-text {
  margin-top: 0;
  font-weight: 700;
}
.approach__capitalImage {
  margin-top: 28px;
}
/* 
.approach__capitalImage img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
} */

.approach__development {
  margin-top: 85px;
}

.approach__text {
  margin-top: 16px;
  color: var(--color-black);
  font-size: 15px;
  line-height: 2;
}

.approach__text strong {
  color: var(--color-red);
  font-weight: 700;
}

.approach__careerImage {
  max-width: 670px;
  margin-block-start: 40px;
  margin-inline: auto;
}

.approach__careerImage img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 840px) {
  .approach__title {
    align-items: flex-start;
    gap: 14px;
    font-size: 23px;
    line-height: 1.6;
  }

  .approach__title::before {
    width: 40px;
    margin-top: 18px;
  }

  .approach__capital {
    margin-top: 35px;
  }

  .approach__heading {
    font-size: 20px;
  }

  .approach__headingText {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }

  /* .approach__capitalImage {
    overflow-x: auto;
    margin-top: 22px;
    padding-bottom: 10px;
  } */

  .approach__capitalImage img {
    min-width: 720px;
  }

  .approach__development {
    margin-top: 55px;
  }

  .approach__text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.9;
  }

  .approach__careerImage {
    margin-top: 30px;
  }
}
/* ==================================
FCEについて
================================== */
.operator {
  background-color: #f6f5ee;
  overflow: hidden;
}
.operator-head {
  text-align: center;
  position: relative;
}

.operator-head__inner {
  padding-block: 25px 80px;
}

@media screen and (max-width: 840px) {
  .operator-head__inner {
    padding-block-end: 65px;
  }
}
.operator-head:before,
.operator-head:after {
  content: "";
  position: absolute;
  top: -100px;
  pointer-events: none;
}

.operator-head:before {
  content: "";
  width: clamp(148px, calc(15.29vw + 19.39px), 313px);
  height: clamp(183px, calc(20.95vw + 6.85px), 409px);
  position: absolute;
  left: -34px;
  display: block;
  background-image: url(../img/operator-head-decoration-01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .operator-head:before {
    left: -52px;
    top: -40px;
  }
}

.operator-head:after {
  width: clamp(79px, calc(7.78vw + 13.53px), 163px);
  height: clamp(135px, calc(12.97vw + 25.88px), 275px);
  right: 0;
  display: block;
  background-image: url(../img/operator-head-decoration-02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .operator-head:after {
    top: auto;
    bottom: 16%;
  }
}

.operator-head__logo {
  max-width: clamp(140px, calc(9.39vw + 104.79px), 240px);
  display: inline-block;
}
.operator-head__title {
  font-weight: 700;
  text-align: center;
  font-size: 29px;
  margin-block: 30px;
}

.operator-head__title .color {
  color: var(--color-red);
  font-size: 24px;
}

.operator-head__text {
  line-height: 1.5;
  text-align: center;

  margin-block-start: 20px;
}

.operator .section__title {
  color: var(--color-red);
}

.operator__business {
  margin-top: 55px;
}

.operator__business + .operator__business {
  margin-top: 70px;
}

.operator__businessHead {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-red);
}

.operator__businessTitle {
  color: var(--color-red);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.operator__businessLabel {
  color: var(--color-black);
  font-size: 14px;
  color: #5c6b7a;
  font-weight: 700;
  line-height: 1.5;
}

.operator__businessLead {
  margin-top: 16px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.8;
}

.operator__serviceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.operator__serviceImage {
  text-align: center;
  flex-grow: 1;
  align-content: center;
}

.operator__serviceImage a {
  cursor: pointer;
  transition: 0.3s ease;
}

.operator__serviceImage a:hover {
  opacity: 0.5;
}
.operator__service {
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 16px 18px 18px;
  gap: 20px;
  background-color: var(--color-white);
}

.operator__serviceTitle {
  padding: 3px 10px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.operator__serviceImage img {
  display: block;
}
.operator__service--training .operator__serviceImage {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  display: grid;
}

.operator__service--hdr .operator__serviceImage img {
  max-height: 85px;
  width: auto;
  margin-inline: auto;
}

.operator__service--school .operator__serviceImage {
  row-gap: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.operator__service--school .operator__serviceImage img {
  max-height: 38px;
  width: auto;
  margin-inline: auto;
}

.operator__service--publication .operator__serviceImage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.operator__service--publication .operator__serviceImage img {
  width: 204px;
}

.operator__service--rpa .operator__serviceImage img,
.operator__service--ai .operator__serviceImage img,
.operator__service--prompt .operator__serviceImage img {
  max-height: 85px;
  width: auto;
  margin-inline: auto;
}

.operator__serviceText {
  color: var(--color-black);
  font-size: 13px;
  line-height: 1.7;
  flex-grow: 1;
  align-content: center;
}

.operator__annotation {
  margin-top: 16px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.7;
}

.operator__marketLogo {
  width: 48px;
  height: auto;
  margin-top: 8px;
}

@media screen and (max-width: 840px) {
  .operator__business {
    margin-top: 40px;
  }

  .operator__business + .operator__business {
    margin-top: 55px;
  }

  .operator__businessTitle {
    font-size: 20px;
  }

  .operator__businessLabel {
    margin-top: 2px;
    font-size: 12px;
  }

  .operator__businessLead {
    margin-top: 14px;
    font-size: 13px;
  }

  .operator__serviceList {
    display: block;
    margin-top: 18px;
  }

  .operator__service {
    min-height: auto;
    padding: 14px 15px 18px;
  }

  .operator__service + .operator__service {
    margin-top: 15px;
  }

  .operator__serviceTitle {
    font-size: 16px;
  }

  .operator__serviceImage {
    min-height: 110px;
    padding: 15px 5px;
  }

  .operator__serviceText {
    font-size: 13px;
  }
}

/* ==================================
history
================================== */
.history {
  position: relative;
  background-image: url("../img/history-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.history::before {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  content: "";
}

.history__inner {
  position: relative;
  z-index: 1;
}

.history__panel {
  padding: 65px 80px 42px;
  background-color: rgba(255, 255, 255, 0.84);
}

.history__title {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-red);
  font-size: clamp(24px, calc(0.52vw + 22.06px), 32px);
  font-weight: 700;
  line-height: 1.5;
}

.history__title::before {
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  background-color: var(--color-red);
  content: "";
}

.history__list {
  margin-top: 32px;
  border-top: 1px solid rgba(76, 76, 76, 0.25);
}

.history__item {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 17px 5px;
  border-bottom: 1px solid rgba(76, 76, 76, 0.25);
}

.history__year {
  color: var(--color-red);
  font-family: var(--font-mon);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.history__contents {
  margin: 0;
}

.history__itemTitle {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.history__text {
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.7;
}

.history__note {
  margin-top: 28px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

@media screen and (max-width: 840px) {
  .history {
    background-position: center;
  }

  .history__panel {
    padding: 40px 20px 25px;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .history__title {
    align-items: flex-start;
    gap: 14px;
    font-size: 23px;
    line-height: 1.6;
  }

  .history__title::before {
    width: 40px;
    margin-top: 18px;
  }

  .history__list {
    margin-top: 28px;
  }

  .history__item {
    display: block;
    min-height: 0;
    padding: 20px 0;
  }

  .history__year {
    font-size: 22px;
  }

  .history__contents {
    margin-top: 6px;
  }

  .history__itemTitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .history__text {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.7;
  }

  .history__note {
    margin-top: 20px;
    font-size: 10px;
  }
}
/* ==================================
評価
================================== */
.evaluation {
  background-color: var(--color-pink);
}

.evaluation__title {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-red);
  font-size: clamp(24px, calc(0.52vw + 22.06px), 32px);
  font-weight: 700;
  line-height: 1.5;
}

.evaluation__title::before {
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  background-color: var(--color-red);
  content: "";
}

.evaluation__list {
  overflow: hidden;
  margin-top: 32px;
  border-radius: 8px;
  background-color: var(--color-white);
}

.evaluation__item {
  display: grid;
  grid-template-columns: 125px 300px minmax(0, 1fr);
  align-items: center;
  gap: 18px 10px;
  min-height: 142px;
  padding: 28px 40px;
}

.evaluation__item + .evaluation__item {
  border-top: 1px solid #d9e0e8;
}

.evaluation__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.evaluation__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.evaluation__image--engagement img {
  width: 125px;
}

.evaluation__badge {
  padding: 4px 12px;
  border-radius: 4px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.evaluation__itemTitle {
  margin-top: 10px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.evaluation__text {
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.7;
}

.evaluation__text sup {
  font-size: 0.65em;
  vertical-align: super;
}

.evaluation__source {
  margin-top: 7px;
  color: #92a0b2;
  font-size: 12px;
  line-height: 1.5;
}

.evaluation__source sup {
  font-size: 0.65em;
  vertical-align: super;
}

@media screen and (max-width: 840px) {
  .evaluation__title {
    align-items: flex-start;
    gap: 14px;
    font-size: 23px;
    line-height: 1.6;
  }

  .evaluation__title::before {
    width: 40px;
    margin-top: 18px;
  }

  .evaluation__list {
    margin-top: 28px;
  }

  .evaluation__item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 25px 20px;
  }

  .evaluation__image {
    height: 75px;
  }

  .evaluation__contents {
    align-self: center;
  }

  .evaluation__badge {
    font-size: 12px;
  }

  .evaluation__itemTitle {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
  }

  .evaluation__description {
    grid-column: 1 / -1;
  }

  .evaluation__text {
    font-size: 13px;
    line-height: 1.8;
  }

  .evaluation__source {
    font-size: 11px;
  }
}
/* ==================================
structure
================================== */
.structure {
  background-color: var(--color-white);
}

.structure__title {
  display: flex;
  align-items: center;
  gap: 35px;
  color: var(--color-red);
  font-size: clamp(24px, calc(0.52vw + 22.06px), 32px);
  font-weight: 700;
  line-height: 1.5;
}

.structure__title::before {
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  background-color: var(--color-red);
  content: "";
}

.structure__introduction {
  margin-top: 28px;
}

.structure__text {
  color: var(--color-black);
  font-size: 15px;
  line-height: 2.1;
}

.structure__text + .structure__text {
  margin-top: 4px;
}

.structure__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.structure__item {
  overflow: hidden;
  background-color: var(--color-pink);
}

.structure__image {
  overflow: hidden;
  aspect-ratio: 330 / 238;
}

.structure__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.structure__contents {
  padding: 17px 16px 22px;
}

.structure__itemTitle {
  color: var(--color-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.structure__itemText {
  margin-top: 16px;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .structure__title {
    align-items: flex-start;
    gap: 14px;
    font-size: 23px;
    line-height: 1.6;
  }

  .structure__title::before {
    width: 40px;
    margin-top: 18px;
  }

  .structure__introduction {
    margin-top: 22px;
  }

  .structure__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .structure__text + .structure__text {
    margin-top: 12px;
  }

  .structure__list {
    display: block;
    margin-top: 40px;
  }

  .structure__item + .structure__item {
    margin-top: 18px;
  }

  .structure__image {
    aspect-ratio: 330 / 210;
  }

  .structure__contents {
    padding: 16px 18px 20px;
  }

  .structure__itemTitle {
    font-size: 16px;
  }

  .structure__itemText {
    margin-top: 10px;
    font-size: 14px;
  }
}
/* ==================================
introduce
================================== */
.introduce {
  background-color: #d23c21;
}

.introduce__title {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-white);
  font-size: clamp(24px, calc(0.52vw + 22.06px), 32px);
  font-weight: 700;
  line-height: 1.5;
}

.introduce__title::before {
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  background-color: var(--color-white);
  content: "";
}

.introduce__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.introduce__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 60px;
  padding-inline: 32px;
  border-radius: 5px;
  background-color: var(--color-white);
}

.introduce__itemTitle {
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.introduce__number {
  text-align: center;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.introduce__number strong {
  color: var(--color-red);
  font-family: var(--font-mon);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.introduce__jpx {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-top: 4px;
}

.introduce__jpx img {
  display: block;
  width: auto;
  height: 75px;
}

.introduce__awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 90px;
}

.introduce__awards img {
  display: block;
  max-width: 90px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.introduce__text {
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
  align-content: center;
}

.introduce__note {
  margin-top: auto;
  padding-top: 25px;
  color: var(--color-black);
  font-size: 8px;
  line-height: 1.6;
}

.introduce__companies {
  margin-block: 30px;
  padding: 32px 35px 27px;
  border-radius: 5px;
  background-color: var(--color-white);
}

.introduce__companiesTitle {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.introduce__companiesImage {
  margin-top: 25px;
}

.introduce__companiesImage img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .carousel-image {
    transform: scale(1);
  }
}

.introduce__button {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .introduce__title {
    align-items: flex-start;
    gap: 14px;
    font-size: 23px;
    line-height: 1.6;
  }

  .introduce__title::before {
    width: 40px;
    margin-top: 18px;
  }

  .introduce__list {
    display: block;
    margin-top: 25px;
  }

  .introduce__item {
    min-height: 0;
    padding: 30px 22px 25px;
  }

  .introduce__item + .introduce__item {
    margin-top: 15px;
  }

  .introduce__itemTitle {
    min-height: 0;
    font-size: 18px;
  }

  .introduce__number strong {
    font-size: 38px;
  }

  .introduce__jpx,
  .introduce__awards {
    margin-top: 15px;
  }

  .introduce__text {
    margin-top: 20px;
    font-size: 14px;
  }

  .introduce__note {
    margin-top: 20px;
    padding-top: 0;
  }

  .introduce__companies {
    margin-top: 20px;
    padding: 25px 15px;
  }

  .introduce__companiesTitle {
    font-size: 16px;
  }

  .introduce__companiesImage {
    overflow-x: auto;
    margin-top: 20px;
    padding-bottom: 8px;
  }

  .introduce__companiesImage img {
    min-width: 700px;
  }
}
/* ==================================
about-fce
================================== */
.about-fce {
  background-color: var(--color-white);
}

.about-fce__title {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-red);
  font-size: clamp(24px, calc(0.52vw + 22.06px), 32px);
  font-weight: 700;
  line-height: 1.5;
}

.about-fce__title::before {
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  background-color: var(--color-red);
  content: "";
}

.about-fce__introduction {
  margin-top: 28px;
}

.about-fce__text {
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.8;
}

.about-fce__text + .about-fce__text {
  margin-top: 2px;
}

.about-fce__identity {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 28px;
  padding-bottom: 50px;
  border-bottom: 1px solid #dce2e8;
}

.about-fce__logo {
  flex-shrink: 0;
  width: 235px;
}

.about-fce__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-fce__message {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.about-fce__information {
  margin-top: 38px;
}

.about-fce__informationItem {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  padding: 20px 5px;
  border-bottom: 1px solid #dce2e8;
}

.about-fce__informationLabel {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.about-fce__informationValue {
  margin: 0;
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.8;
}

.about-fce__informationValue span {
  display: block;
  color: #718095;
  font-size: 13px;
  line-height: 1.8;
}

.about-fce__certification {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-block-start: 50px;
}

.about-fce__certificationItem {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-fce__marketLogo {
  flex-shrink: 0;
  width: 45px;
}

.about-fce__marketLogo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-fce__certificationText {
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.7;
}

.about-fce__certificationText a {
  color: var(--color-black);
  text-decoration: none;
  overflow-wrap: anywhere;
}

@media (hover: hover) {
  .about-fce__certificationText a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 840px) {
  .about-fce__title {
    gap: 14px;
    font-size: 23px;
  }

  .about-fce__title::before {
    width: 40px;
  }

  .about-fce__introduction {
    margin-top: 22px;
  }

  .about-fce__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-fce__text + .about-fce__text {
    margin-top: 12px;
  }

  .about-fce__identity {
    display: block;
    margin-top: 30px;
    padding-bottom: 35px;
  }

  .about-fce__logo {
    width: 190px;
  }

  .about-fce__message {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .about-fce__information {
    margin-top: 25px;
  }

  .about-fce__informationItem {
    display: block;
    padding: 18px 0;
  }

  .about-fce__informationLabel {
    font-size: 14px;
  }

  .about-fce__informationValue {
    margin-top: 7px;
    font-size: 13px;
  }

  .about-fce__informationValue span {
    margin-top: 3px;
    font-size: 11px;
  }

  .about-fce__certification {
    display: block;
    margin-top: 45px;
    padding-inline: 0;
  }

  .about-fce__certificationItem + .about-fce__certificationItem {
    margin-top: 30px;
  }

  .about-fce__certificationText {
    font-size: 11px;
  }

  .about-fce__marketLogo {
    width: 40px;
  }
}
/* ==================================
service
================================== */
.fce-service {
  background-color: var(--color-pink);
}

.fce-service__title {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-red);
  font-size: clamp(24px, calc(0.52vw + 22.06px), 32px);
  font-weight: 700;
  line-height: 1.5;
}

.fce-service__title::before {
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  background-color: var(--color-red);
  content: "";
}

.fce-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.fce-service__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 20px;
  padding-block: 30px;
  padding-inline: 14px;
  border-radius: 8px;
  background-color: var(--color-white);
}

.fce-service__itemTitle {
  color: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.fce-service__image {
  flex-grow: 1;
  align-content: center;
  text-align: center;
}

.fce-service__item--guide .fce-service__image img {
  max-width: 226px;
}
.fce-service__item--product .fce-service__image img {
  max-width: 200px;
}
.fce-service__item--corporate .fce-service__image img {
  max-width: 274px;
}
/* .fce-service__image {
}

.fce-service__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
} */

.fce-service__text {
  color: var(--color-black);
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .fce-service__title {
    gap: 14px;
    font-size: 23px;
  }

  .fce-service__title::before {
    width: 40px;
  }

  .fce-service__list {
    display: block;
    margin-top: 25px;
  }

  .fce-service__item {
    padding-top: 25px;
  }

  .fce-service__item + .fce-service__item {
    margin-top: 16px;
  }

  .fce-service__itemTitle {
    min-height: 0;
    font-size: 17px;
  }

  .fce-service__image {
    height: auto;
    max-height: 210px;
    margin-top: 20px;
  }

  .fce-service__image img {
    max-height: 210px;
  }

  .fce-service__text {
    margin-top: 20px;
    padding-inline: 20px;
    padding-bottom: 25px;
    font-size: 14px;
  }
}
