@charset "UTF-8";
:root {
  --noto: "Noto Sans JP", sans-serif;
  --mont: "Montserrat", sans-serif;
  --word: #1a1a1a;
  --footerBg: #2a2b2c;
  --white: #ffffff;
  --grayBg: #f3f3f3;
  --grayLine: #eeeeee;
  --blue: #1779cd;
  --green: #23bdbf;
  --fw4: 400;
  --fw5: 500;
  --fw6: 600;
  --fw7: 700;
  --fz10: calc(10 / 16 * 1rem);
  --fz12: calc(12 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz16: 1rem;
  --fz18: calc(18 / 16 * 1rem);
  --fz10_12: clamp(0.625rem, 0.529rem + 0.29vw, 0.75rem);
  --fz12_16: clamp(0.75rem, 0.559rem + 0.59vw, 1rem);
  --fz14_16: clamp(0.875rem, 0.779rem + 0.29vw, 1rem);
  --fz14_18: clamp(0.875rem, 0.684rem + 0.59vw, 1.125rem);
  --fz16_18: clamp(1rem, 0.904rem + 0.29vw, 1.125rem);
  --fz16_20: clamp(1rem, 0.809rem + 0.59vw, 1.25rem);
  --fz16_24: clamp(1rem, 0.618rem + 1.18vw, 1.5rem);
  --fz18_20: clamp(1.125rem, 1.029rem + 0.29vw, 1.25rem);
  --fz18_24: clamp(1.125rem, 0.838rem + 0.88vw, 1.5rem);
  --fz20_24: clamp(1.25rem, 1.059rem + 0.59vw, 1.5rem);
  --fz20_32: clamp(1.25rem, 0.676rem + 1.76vw, 2rem);
  --fz24_28: clamp(1.5rem, 1.309rem + 0.59vw, 1.75rem);
  --fz22_28: clamp(1.375rem, 1.088rem + 0.88vw, 1.75rem);
  --fz24_32: clamp(1.5rem, 1.118rem + 1.18vw, 2rem);
  --fz28_40: clamp(1.75rem, 1.176rem + 1.76vw, 2.5rem);
  --fz28_48: clamp(1.75rem, 0.794rem + 2.94vw, 3rem);
  --fz32_40: clamp(2rem, 1.618rem + 1.18vw, 2.5rem);
  --fz48_56: clamp(3rem, 2.618rem + 1.18vw, 3.5rem);
  --pad: 32px;
  --max: 1024px;
}
@media (min-width: 520px) {
  :root :root {
    --pad: 80px;
  }
}

body {
  font-size: var(--fz14_16);
  font-family: var(--noto);
  font-weight: var(--fw4);
  background-color: var(--white);
  color: var(--word);
  overflow-wrap: break-word;
  line-height: 1.75;
  letter-spacing: 0.08em;
  overflow-x: hidden;
}

picture,
figure {
  line-height: 1;
}

.tablet-in {
  display: none;
}
@media (min-width: 520px) {
  .tablet-in {
    display: inline-block;
  }
}

.desktop-in {
  display: none;
}
@media (min-width: 960px) {
  .desktop-in {
    display: inline-block;
  }
}

@media (min-width: 960px) {
  .desktop-none {
    display: none;
  }
}

.link a {
  display: inline-block;
  background-color: var(--white);
  color: var(--blue);
  font-weight: var(--fw5);
  padding-top: 24px;
  padding-bottom: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-radius: 40px;
  position: relative;
  width: min(100%, 544px);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .link a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
  .link a:where(:any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
.link a::before, .link a::after {
  content: "";
  background-color: var(--blue);
  position: absolute;
}

.target {
  opacity: 0;
}
.target.active {
  animation-name: fluffy;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

@media (min-width: 960px) {
  .service li:nth-child(1) {
    animation-delay: calc(1 * 0.3s) !important;
  }
  .service li:nth-child(2) {
    animation-delay: calc(2 * 0.3s) !important;
  }
  .service li:nth-child(3) {
    animation-delay: calc(3 * 0.3s) !important;
  }
}

@media (min-width: 960px) {
  .person li:nth-child(1) {
    animation-delay: calc(1 * 0.3s) !important;
  }
  .person li:nth-child(2) {
    animation-delay: calc(2 * 0.3s) !important;
  }
}

@media (min-width: 960px) {
  .case .caseItem:nth-of-type(1) {
    animation-delay: calc(1 * 0.3s) !important;
  }
  .case .caseItem:nth-of-type(2) {
    animation-delay: calc(2 * 0.3s) !important;
  }
}

@keyframes fluffy {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.sec {
  padding-top: 64px;
  width: min(100% - var(--pad), var(--max));
  margin-inline: auto;
}
@media (min-width: 960px) {
  .sec {
    padding-top: 120px;
  }
}

.secHeader {
  font-weight: var(--fw5);
  text-align: center;
}
.secHeader h2 {
  font-size: var(--fz28_40);
  font-family: var(--mont);
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.1em;
}
.secHeader p {
  font-size: var(--fz16);
  margin-top: 8px;
}
@media (min-width: 960px) {
  .secHeader p {
    margin-top: 16px;
  }
}

.header {
  text-align: center;
  padding: 16px 0;
  line-height: 1;
}

.top {
  padding-bottom: 80px;
  background-color: var(--blue);
  background-image: url(../../images/corporate/top_sp.webp);
  background-size: cover;
}
@media (min-width: 520px) {
  .top {
    padding-bottom: 120px;
    background-image: url(../../images/corporate/top.webp);
  }
}
.top .inner {
  --max: 814px;
  width: min(100% - var(--pad), var(--max));
  margin-inline: auto;
  text-align: center;
  padding-top: 80px;
  color: var(--white);
}
@media (min-width: 960px) {
  .top .inner {
    padding-top: 120px;
  }
}
.top h1 {
  font-weight: var(--fw5);
  font-size: var(--fz28_48);
  letter-spacing: 0.1em;
}
.top h1 span {
  display: block;
  font-size: var(--fz20_32);
  margin-bottom: 16px;
}
.top ul {
  margin-top: 16px;
  display: grid;
  grid-template: "... it1 it1..." "it2 it2 it3 it3";
  justify-content: center;
  gap: 0 16px;
}
@media (min-width: 960px) {
  .top ul {
    margin-top: 64px;
    gap: 0 32px;
    grid-template: "it1 it2 it3";
  }
}
.top ul li {
  width: 170px;
  height: 170px;
  border: 2px solid var(--white);
  border-radius: 50%;
}
@media (min-width: 520px) {
  .top ul li {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 520px) and (min-width: 960px) {
  .top ul li {
    width: 250px;
    height: 250px;
  }
}
.top ul li:first-child {
  position: relative;
  top: 14px;
}
@media (min-width: 960px) {
  .top ul li:first-child {
    top: 0;
  }
}
.top ul li:nth-child(1) {
  grid-area: it1;
}
.top ul li:nth-child(2) {
  grid-area: it2;
}
.top ul li:nth-child(3) {
  grid-area: it3;
}
.top ul li p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fz14_18);
  font-weight: var(--fw6);
}
.top ul li p.topTtl {
  font-size: var(--fz12_16);
}
.top ul li .numLarge {
  display: inline-block;
  font-family: var(--mont);
  font-weight: var(--fw6);
  font-size: var(--fz48_56);
  line-height: 1;
  margin-right: 4px;
  margin-top: 4px;
}
@media (min-width: 960px) {
  .top ul li .numLarge {
    margin-top: 8px;
  }
}
.top ul li .num {
  font-family: var(--mont);
  font-weight: var(--fw6);
  line-height: 1;
  margin-right: 8px;
  display: inline-block;
}
@media (min-width: 960px) {
  .top ul li .num {
    margin-top: 8px;
  }
}
.top ul li .num .numFirst {
  font-size: 48px;
}
@media (min-width: 960px) {
  .top ul li .num .numFirst {
    font-size: 40px;
  }
}
.top ul li .num .desktop-in {
  font-size: 40px;
}
.top ul li .per {
  font-size: var(--fz24_32);
  font-weight: var(--fw7);
  line-height: 1;
}
.top ul li .ast {
  font-size: var(--fz10);
  font-weight: var(--fw5);
}
.top ul li .unit {
  font-size: var(--fz18_24);
  font-weight: var(--fw6);
}
.top .link {
  margin-top: 32px;
}
@media (min-width: 960px) {
  .top .link {
    margin-top: 64px;
  }
}

.about {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}
@media (min-width: 520px) {
  .about {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 520px) and (min-width: 960px) {
  .about {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.about h2 {
  font-size: var(--fz16_20);
  font-weight: var(--fw5);
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  color: var(--blue);
  line-height: 2;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--blue);
}

.trouble .subTitle {
  font-size: var(--fz16_20);
}
.trouble ul {
  padding-top: 112px;
  padding-bottom: 64px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .trouble ul {
    padding-top: 128px;
    padding-bottom: 120px;
  }
}
.trouble ul li {
  width: 320px;
  text-align: center;
}
@media (min-width: 520px) {
  .trouble ul li:first-child .problem {
    padding-bottom: 62px;
  }
}
.trouble ul li .problem {
  padding: 90px 24px 24px;
  background-color: var(--grayBg);
  position: relative;
  border-radius: 20px;
}
@media (min-width: 960px) {
  .trouble ul li .problem {
    padding-bottom: 32px;
  }
}
.trouble ul li .problem::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 20px;
  height: 16px;
  background-color: var(--blue);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.trouble ul li .problem figure {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.trouble ul li .problem figure img {
  width: auto;
  height: 130px;
}
.trouble ul li .problem h3 {
  font-weight: var(--fw5);
  font-size: var(--fz18);
  position: relative;
}
.trouble ul li .problem h3::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 20px;
  height: 16px;
  background-color: var(--blue);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.trouble ul li .problem h3 span {
  font-weight: var(--fw7);
  color: var(--blue);
}
.trouble ul li .problem p {
  margin-top: 48px;
  font-size: var(--fz14);
  line-height: 2;
}
@media (min-width: 960px) {
  .trouble ul li .problem p {
    text-align: left;
  }
}
.trouble ul li .solution {
  margin-top: 46px;
  width: 290px;
  height: 290px;
  background-color: var(--white);
  margin-inline: auto;
  position: relative;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.trouble ul li .solution::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 300px;
  height: 300px;
  background-image: linear-gradient(145deg, var(--green), var(--blue));
  border-radius: 50%;
  z-index: -1;
}
.trouble ul li .solution h3 {
  font-size: var(--fz18);
  font-weight: var(--fw5);
  line-height: 1.5;
}
.trouble ul li .solution .achieve {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.trouble ul li .solution .achieve.ac3 {
  gap: 4px;
}
.trouble ul li .solution .achieve.ac3 .rate {
  position: relative;
  top: 8px;
}
.trouble ul li .solution .achieve .rate {
  text-align: right;
  line-height: 1.5;
}
.trouble ul li .solution .achieve .num {
  font-family: var(--mont);
  font-size: 50px;
  font-weight: var(--fw7);
  line-height: 1.5;
  color: var(--blue);
}
.trouble ul li .solution .ac2 {
  margin-top: 8px;
}
.trouble ul li .solution .ac2 .num2 {
  font-family: var(--mont);
  font-size: 40px;
  font-weight: var(--fw7);
  line-height: 1.5;
  color: var(--blue);
}
.trouble ul li .solution .ast {
  font-size: var(--fz12);
}

.person {
  background-color: var(--grayBg);
  padding-top: 64px;
  padding-bottom: 64px;
}
.person .secHeader h2 {
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .secHeader h2 {
    line-height: 1;
  }
}
@media (min-width: 960px) {
  .person {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.person .inner {
  margin-top: 32px;
  padding: 48px 24px;
  background-color: var(--white);
  border-radius: 20px;
}
@media (min-width: 960px) {
  .person .inner {
    margin-top: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
    border-radius: 30px;
  }
}
.person .inner ol {
  display: grid;
  grid-template: "it1 it1" "it2 it2" "it3 it3" "it4 it4";
  gap: 32px 48px;
  max-width: 660px;
  margin-inline: auto;
}
@media (min-width: 520px) {
  .person .inner ol {
    grid-template: "it1 it2" "it3 it3" "it4 it4";
  }
}
@media (min-width: 520px) and (min-width: 960px) {
  .person .inner ol {
    gap: 48px 100px;
  }
}
.person .inner ol li {
  position: relative;
}
.person .inner ol li:nth-child(1) {
  grid-area: it1;
}
.person .inner ol li:nth-child(2) {
  grid-area: it2;
}
.person .inner ol li:nth-child(3) {
  grid-area: it3;
}
.person .inner ol li:nth-child(4) {
  grid-area: it4;
}
.person .inner ol li:nth-child(1) h3::before {
  content: "01";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(1) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(2) h3::before {
  content: "02";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(2) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(3) h3::before {
  content: "03";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(3) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(4) h3::before {
  content: "04";
  font-family: var(--mont);
  font-size: var(--fz20_32);
  color: var(--green);
  display: inline-block;
  margin-right: 8px;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(4) h3::before {
    margin-right: 16px;
    position: relative;
    top: 5px;
  }
}
.person .inner ol li:nth-child(1), .person .inner ol li:nth-child(2) {
  text-align: center;
  max-width: 240px;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .person .inner ol li:nth-child(1), .person .inner ol li:nth-child(2) {
    text-align: left;
    max-width: 100%;
    margin-inline: 0;
  }
}
.person .inner ol li h3 {
  font-size: var(--fz16_20);
  font-weight: var(--fw5);
  line-height: 1.5;
  text-align: left;
}
.person .inner ol li figure,
.person .inner ol li p {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .person .inner ol li figure,
  .person .inner ol li p {
    margin-top: 16px;
  }
}
.person .inner ol li figure {
  display: inline-block;
}
.person .inner ol li figure img {
  width: 100%;
  height: auto;
}

.service {
  padding-bottom: 64px;
  background-color: var(--grayBg);
}
@media (min-width: 960px) {
  .service {
    padding-bottom: 120px;
  }
}
.service .list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 520px) {
  .service .list {
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (min-width: 520px) and (min-width: 960px) {
  .service .list {
    margin-top: 48px;
    justify-content: space-between;
    gap: 0;
  }
}
.service .list .listItem {
  border-radius: 30px;
  width: min(100%, 400px);
  background-color: var(--white);
  padding: 24px;
}
@media (min-width: 960px) {
  .service .list .listItem {
    padding: 32px 32px 0 32px;
    width: 330px;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .service .list .listItem {
    padding-bottom: 0;
    height: 390px;
  }
}
.service .list .listItem:last-child .text {
  letter-spacing: 0.06em;
}
.service .list .listItem .num {
  font-family: var(--mont);
  font-weight: var(--fw6);
  font-size: var(--fz24_32);
  color: var(--blue);
  letter-spacing: 0.1em;
  line-height: 1;
}
.service .list .listItem h3 {
  margin-top: 8px;
  font-size: var(--fz20_24);
  font-weight: var(--fw5);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.service .list .listItem h3 span {
  font-weight: var(--fw7);
  color: var(--blue);
}
.service .list .listItem .text {
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (min-width: 960px) {
  .service .list .listItem .text {
    margin-top: 16px;
  }
}
.service .list .listItem .listItemList li::before {
  content: "・";
}

.case {
  padding-bottom: 64px;
}
@media (min-width: 960px) {
  .case {
    padding-bottom: 120px;
  }
}
.case h3 {
  margin-top: 48px;
  background-color: var(--green);
  color: var(--white);
  font-weight: var(--fw5);
  padding: 16px;
  width: min(100%, 466px);
  text-align: center;
  border-radius: 39px;
  margin-inline: auto;
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .case h3 {
    border-radius: 32px;
    margin-bottom: 32px;
  }
}
.case h3.sub2 {
  margin-top: 32px;
  width: min(100%, 614px);
}
@media (min-width: 960px) {
  .case h3.sub2 {
    margin-top: 64px;
  }
}
.case .wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  .case .wrapper {
    flex-direction: row;
    gap: 68px;
  }
}
.case .wrapper .caseItem {
  padding: 4px;
  position: relative;
  background-image: linear-gradient(145deg, var(--green), var(--blue));
}
@media (min-width: 960px) {
  .case .wrapper .caseItem {
    width: 480px;
    height: 641px;
  }
}
.case .wrapper .caseItem .inner {
  padding: 28px 20px;
  background-color: var(--white);
}
@media (min-width: 960px) {
  .case .wrapper .caseItem .inner {
    padding: 36px 36px 0;
    height: 633px;
  }
}
.case .wrapper .caseItem h4 {
  color: var(--blue);
  font-size: var(--fz16_20);
  font-weight: var(--fw7);
  text-align: center;
}
.case .wrapper .caseItem p {
  line-height: 1.5;
  margin-top: 8px;
  text-align: center;
  font-size: var(--fz18_20);
  font-weight: var(--fw5);
  display: inline-block;
  background-image: linear-gradient(transparent 70%, var(--grayLine) 0%);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 960px) {
  .case .wrapper .caseItem p {
    margin-top: 16px;
  }
}
.case .wrapper .caseItem p span {
  font-weight: var(--fw7);
  font-size: var(--fz32_40);
  color: var(--blue);
  display: inline-block;
  margin: 0 8px;
  letter-spacing: 0.1em;
}
.case .wrapper .caseItem figure {
  height: 150px;
  margin-top: 24px;
  width: 100%;
}
@media (min-width: 960px) {
  .case .wrapper .caseItem figure {
    margin-top: 32px;
    width: min(100%, 400px);
    margin-top: 32px;
  }
}
.case .wrapper .caseItem figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case .wrapper .caseItem ul {
  margin-top: 24px;
}
@media (min-width: 960px) {
  .case .wrapper .caseItem ul {
    margin-top: 32px;
  }
}
.case .wrapper .caseItem ul li {
  position: relative;
  padding-left: 16px;
  letter-spacing: 0.05em;
}
.case .wrapper .caseItem ul li:not(:first-child) {
  margin-top: 6px;
}
.case .wrapper .caseItem ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
}
@media (min-width: 960px) {
  .case .wrapper .caseItem ul li::before {
    top: 11px;
  }
}

.awards {
  background-color: var(--grayBg);
  padding-bottom: 64px;
}
@media (min-width: 960px) {
  .awards {
    padding-bottom: 120px;
  }
}
.awards .awardsItem {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.awards .awardsItem::before, .awards .awardsItem::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
@media (min-width: 960px) {
  .awards .awardsItem::before, .awards .awardsItem::after {
    display: inline-block;
    min-width: 100px;
    height: 231.04px;
  }
}
.awards .awardsItem::before {
  background-image: url(../../images/corporate/awards_left.png);
}
.awards .awardsItem::after {
  background-image: url(../../images/corporate/awards_right.png);
}
.awards .awardsItem:first-of-type {
  margin-top: 16px;
}
@media (min-width: 960px) {
  .awards .awardsItem:first-of-type {
    margin-top: 64px;
  }
}
.awards .awardsItem:not(:first-of-type) {
  margin-top: 48px;
}
@media (min-width: 960px) {
  .awards .awardsItem:not(:first-of-type) {
    margin-top: 64px;
  }
}
.awards .awardsItem .title {
  display: flex;
  align-items: center;
  width: min(100%, 520px);
  margin-inline: auto;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .awards .awardsItem .title {
    justify-content: center;
    width: 100%;
  }
}
.awards .awardsItem .title .sub {
  font-size: var(--fz14);
}
.awards .awardsItem .title .ul {
  font-size: var(--fz12);
}
.awards .awardsItem .title::before, .awards .awardsItem .title::after {
  content: "";
  display: inline-block;
  min-width: 37px;
  height: 86.04px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 960px) {
  .awards .awardsItem .title::before, .awards .awardsItem .title::after {
    display: none;
  }
}
.awards .awardsItem .title::before {
  background-image: url(../../images/corporate/awards_left.png);
}
.awards .awardsItem .title::after {
  background-image: url(../../images/corporate/awards_right.png);
}
.awards .awardsItem .title div {
  text-align: center;
}
.awards .awardsItem .title div h3 {
  font-size: var(--fz16_24);
  font-weight: var(--fw7);
  color: var(--blue);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.awards .awardsItem .title div p {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .awards .awardsItem .title div p br {
    display: none;
  }
}
.awards .awardsItem .awardsWrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 960px) {
  .awards .awardsItem .awardsWrap {
    margin-top: 32px;
    gap: 32px;
  }
}
.awards .awardsItem .awardsWrap .awardsFirst,
.awards .awardsItem .awardsWrap .awardsSecond {
  width: min(100%, 250px);
}
.awards .awardsItem .awardsWrap .awardsFirst img,
.awards .awardsItem .awardsWrap .awardsSecond img {
  width: 100%;
  height: auto;
}
.awards .awardsItem .awardsText {
  margin-top: 16px;
  font-size: var(--fz14);
  text-align: center;
  margin-inline: auto;
}
.awards .awardsItem .awardsText .awardsTextWrap {
  display: inline-block;
  text-align: center;
}
@media (min-width: 960px) {
  .awards .awardsItem .awardsText .awardsTextWrap {
    display: block;
  }
}
.awards .awardsItem .awardsText .firstText {
  display: inline-block;
  font-size: var(--fz14);
}
.awards .awardsItem .awardsText .secondText {
  font-size: var(--fz14);
}
.awards .awardsItem .awardsText .big {
  margin-top: 4px;
  font-size: var(--fz22_28);
  font-weight: var(--fw7);
  color: var(--blue);
  display: block;
}
@media (min-width: 960px) {
  .awards .awardsItem .awardsText .big {
    display: inline-block;
  }
}
.awards .awardsItem .awardsText .small {
  font-size: var(--fz14_18);
  margin-left: 8px;
  font-weight: var(--fw5);
  display: block;
}
@media (min-width: 520px) {
  .awards .awardsItem .awardsText .small {
    display: inline-block;
  }
}
.awards .awardsItem .img {
  margin-top: 16px;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .awards .awardsItem .img {
    margin-top: 24px;
  }
}
.awards .awardsItem .img img {
  width: 100%;
  height: auto;
}
.awards .awardsItem .img01 {
  width: min(100%, 558.63px);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
@media (min-width: 960px) {
  .awards .awardsItem .img01 {
    gap: 32px;
  }
}
.awards .awardsItem .img01 li:first-child {
  flex: 135;
}
.awards .awardsItem .img01 li:nth-child(2) {
  flex: 222;
}
.awards .awardsItem .img01 li:last-child {
  flex: 135;
}
.awards .awardsItem .img02 {
  width: min(100%, 574px);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .awards .awardsItem .img02 {
    margin-top: 48px;
  }
}
.awards .awardsItem .img02 li {
  max-width: 170px;
}
.awards .awardsItem .img03 {
  width: min(100%, 462px);
}
.awards .awardsItem .text {
  margin-top: 16px;
  font-size: var(--fz12_16);
  margin-inline: auto;
}
@media (min-width: 960px) {
  .awards .awardsItem .text {
    margin-top: 24px;
  }
}
.awards .awardsItem .text01 {
  max-width: 470px;
}
.awards .awardsItem .text02 {
  max-width: 480px;
}
.awards .awardsItem .text03 {
  max-width: 700px;
}

.flow {
  background-color: var(--grayBg);
  padding-bottom: 64px;
}
@media (min-width: 960px) {
  .flow {
    padding-bottom: 120px;
  }
}
.flow ol {
  margin-top: 32px;
}
@media (min-width: 960px) {
  .flow ol {
    margin-top: 64px;
  }
}
.flow ol li {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}
@media (min-width: 960px) {
  .flow ol li {
    gap: 32px;
    align-items: center;
  }
}
.flow ol li:not(:first-of-type) {
  margin-top: 32px;
}
.flow ol li:nth-child(1)::before {
  content: "01";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--blue);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(2)::before {
  content: "02";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--blue);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(3)::before {
  content: "03";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--blue);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(4)::before {
  content: "04";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--blue);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li:nth-child(5)::before {
  content: "05";
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--blue);
  font-size: var(--fz24_32);
  font-weight: var(--fw5);
  font-family: var(--mont);
}
.flow ol li .contents {
  flex: 1;
}
.flow ol li .contents h3 {
  color: var(--blue);
  font-size: var(--fz16_20);
  font-weight: var(--fw5);
}
.flow ol li .contents p {
  margin-top: 4px;
}
.flow ol li figure {
  width: 100px;
  height: auto;
}
@media (min-width: 960px) {
  .flow ol li figure {
    width: 150px;
  }
}
.flow ol li figure img {
  width: 100%;
  height: auto;
}

.option {
  background-color: var(--grayBg);
  padding-bottom: 64px;
}
@media (min-width: 960px) {
  .option {
    padding-bottom: 120px;
  }
}
.option .contents {
  margin-top: 32px;
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  width: min(100%, 512px);
  margin-inline: auto;
}
@media (min-width: 960px) {
  .option .contents {
    width: 100%;
    margin-top: 64px;
    flex-direction: row-reverse;
    align-items: center;
    gap: 48px;
  }
}
.option .contents .text {
  flex: 1;
  font-size: var(--fz12_16);
}
.option .contents .text * + * {
  margin-top: 8px;
}
@media (min-width: 960px) {
  .option .contents .text * + * {
    margin-top: 16px;
  }
}
.option .contents figure {
  width: min(100%, 512px);
}
.option .contents figure img {
  width: 100%;
  height: auto;
}

.qa {
  margin-bottom: 64px;
}
@media (min-width: 960px) {
  .qa {
    margin-bottom: 120px;
  }
}
.qa dl:first-of-type {
  margin-top: 32px;
}
@media (min-width: 960px) {
  .qa dl:first-of-type {
    margin-top: 64px;
  }
}
.qa dl:not(:first-of-type) {
  margin-top: 32px;
}
@media (min-width: 960px) {
  .qa dl:not(:first-of-type) {
    margin-top: 40px;
  }
}
.qa dl dt {
  font-size: var(--fz16_18);
  font-weight: var(--fw5);
  position: relative;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 960px) {
  .qa dl dt {
    gap: 24px;
  }
}
.qa dl dt::before {
  content: "Q";
  display: inline-block;
  font-family: var(--mont);
  width: 48px;
  height: 48px;
  color: var(--white);
  background-color: var(--green);
  font-size: var(--fz24_28);
  border-radius: 50%;
  text-align: center;
  line-height: 2;
}
@media (min-width: 960px) {
  .qa dl dt::before {
    width: 56px;
    height: 56px;
  }
}
.qa dl dd {
  margin-top: 16px;
  background-color: var(--grayBg);
  padding: 24px;
  border-radius: 15px;
}

.contact {
  height: 200px;
  background-image: url(../../images/corporate/contact.webp);
  background-size: cover;
  background-position: center center;
}
.contact .inner {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  background-color: var(--footerBg);
  color: var(--white);
  padding: 32px 0 24px;
  text-align: center;
}
.footer ul {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.footer ul li {
  font-size: var(--fz12);
}
.footer ul li:not(:last-child)::after {
  position: relative;
  left: 4px;
  display: inline-block;
  content: "/";
}
.footer figure {
  margin-top: 16px;
}
.footer figure img {
  min-width: 271px;
}
.footer p {
  margin-top: 12px;
  font-size: var(--fz10_12);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next::before,
.swiper-button-prev::before {
  font-size: 24px;
  color: var(--blue);
}

.swiper-button-next {
  top: 230px !important;
}
.swiper-button-next::before {
  content: "＞";
}

.swiper-button-prev {
  top: 230px !important;
}
.swiper-button-prev::before {
  content: "＜";
}

.swiper-pagination {
  top: 150px !important;
  left: 28% !important;
}
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 8px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--blue);
}/*# sourceMappingURL=style.css.map */