html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
a,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

html {
  scroll-behavior: smooth;
}

.container {
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #000000;
  padding-top: 70px;
  position: relative;
}
.container a {
  display: block;
}
.container img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .cta {
  background-color: #F86102;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 32px;
}
.container .cta span {
  font-size: 12px;
  color: #fff;
  letter-spacing: normal;
}
.container .cta .arrow {
  width: 6px;
  height: auto;
}
@media (min-width: 1800px) {
  .container .cta {
    padding: 14px 56px;
  }
  .container .cta span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .container .cta span {
    font-size: 14px;
  }
}
.container .common {
  width: 96%;
  text-align: center;
  margin: auto;
  margin-bottom: 64px;
}
.container .common .sectionTitle {
  font-size: 40px;
  color: #0095D1;
  margin-bottom: 20px;
  line-height: 1.3;
}
.container .common .sectionTitle img {
  display: inline-block;
  width: 40px;
}
.container .common .sectionText {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .container .common .sectionTitle {
    font-size: 32px;
  }
  .container .common .sectionTitle .br-tab {
    display: block;
  }
  .container .common .sectionText {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .container .common {
    margin-bottom: 32px;
  }
  .container .common .sectionTitle {
    font-size: 26px;
  }
  .container .common .sectionTitle .br-sp {
    display: block;
  }
  .container .common .sectionText {
    font-size: 14px;
  }
  .container .common .sectionText br {
    display: none;
  }
}

.header {
  background-color: #122D34;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}
.header .headerInner {
  width: 96%;
  max-width: 1800px;
  margin: auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .headerInner .headerLogo {
  width: 140px;
  height: auto;
}
.header .headerInner .headerList {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: auto;
}
.header .headerInner .headerList .headerItem {
  font-size: 14px;
  color: #fff;
}
.header .headerInner .headerList .headerItem a {
  letter-spacing: 0.02em;
  position: relative;
}
.header .headerInner .headerList .headerItem a:before {
  content: "";
  width: 100%;
  height: 0px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -28px;
  transition: 0.3s;
}
.header .headerInner .headerList .headerItem a:hover:before {
  height: 6px;
}
.header .headerInner .headerIcon {
  display: none;
  width: 12px;
  height: auto;
  margin-right: auto;
  margin-left: 12px;
  transition: 0.3s;
}
.header .headerInner .headerIcon.active {
  transform: rotate(-180deg);
}
.header .headerInner .headerCta span {
  font-size: 16px;
}
.header .headerInner .headerCta .arrow {
  width: 8px;
}

@media (max-width: 1024px) {
  .header .headerInner .headerList {
    display: none;
  }
  .header .headerInner .headerIcon {
    display: block;
  }
}
@media (max-width: 768px) {
  .header .headerInner .headerLogo {
    width: 30%;
    min-width: 130px;
  }
  .header .headerInner .headerCta {
    padding: 12px 40px;
  }
  .header .headerInner .headerCta span {
    font-size: 20px;
  }
  .header .headerInner .headerIcon {
    width: 10px;
    margin-left: 4px;
  }
}
@media (max-width: 480px) {
  .header .headerInner .headerCta {
    padding: 10px 28px;
  }
  .header .headerInner .headerCta span {
    font-size: 17px;
  }
  .header .headerInner .headerCta .arrow {
    width: 6px;
  }
}
@media (max-width: 375px) {
  .header .headerInner .headerLogo {
    min-width: 120px;
  }
  .header .headerInner .headerCta {
    padding: 10px 24px;
  }
  .header .headerInner .headerCta span {
    font-size: 14px;
  }
}
.menu {
  display: none;
  width: 430px;
  height: 100vh;
  background-color: #122D34;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 70px;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
.menu .menuInner {
  padding: 40px;
  margin-top: -70px;
}
.menu .menuInner .menuList {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.menu .menuInner .menuList .menuItem {
  font-size: 16px;
  color: #fff;
}

.menu.active {
  display: flex;
}

@media (max-width: 768px) {
  .menu {
    width: 100%;
  }
}
.banner {
  width: 250px;
  height: auto;
  background-image: url(../image/bannerBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9;
  border: 4px solid #0088B2;
  text-align: center;
  opacity: 0;
  padding: 15px 0;
}
.banner .bannerInner .bannerTitle {
  font-size: 32px;
  font-weight: bold;
  color: #00718A;
}
.banner .bannerInner .bannerCatch {
  font-size: 20px;
  font-weight: 600;
  color: #00718A;
  margin-bottom: 10px;
}
.banner .bannerInner .bannerImg {
  width: 60%;
  margin: auto;
  box-shadow: 0, 0, 0, rgba(0, 0, 0, 0.36);
  margin-bottom: 24px;
}
.banner .bannerInner .cta {
  display: inline-flex;
  padding: 12px 32px;
}
.banner .bannerInner .cta span {
  font-size: 12px;
}

.banner.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .banner {
    display: none;
  }
}
.bannerSp {
  display: none;
  width: 100%;
}

@media (max-width: 768px) {
  .bannerSp {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 9;
  }
}
.fv .fvInner {
  width: 100%;
}
.fv .fvSp {
  display: none;
  position: relative;
  white-space: nowrap;
}
.fv .fvSp .cta {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .fv {
    height: auto;
  }
  .fv .fvInner {
    display: none;
  }
  .fv .fvSp {
    display: block;
  }
}
@media (max-width: 375px) {
  .fv .fvSp .cta {
    bottom: 32px;
  }
}
.solution {
  padding-bottom: 24px;
}
.solution .solutionInner .solutionCatch {
  padding: 80px 0 0;
  background-color: #0095D1;
}
.solution .solutionInner .solutionCatch .common {
  margin-bottom: 40px;
}
.solution .solutionInner .solutionCatch .common .sectionTitle {
  color: #fff;
}
.solution .solutionInner .solutionCatch .common .sectionText {
  color: #fff;
  font-size: 24px;
}
.solution .solutionInner .solutionArrow {
  width: 160px;
  height: auto;
  margin: auto;
  transform: translateY(-1px);
}
.solution .solutionInner .solutionSupport {
  max-width: 1800px;
  margin: auto;
  padding-top: 100px;
  text-align: center;
  position: relative;
}
.solution .solutionInner .solutionSupport .solutionText {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
}
.solution .solutionInner .solutionSupport .solutionPerson1 {
  width: 220px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-45%);
}
.solution .solutionInner .solutionSupport .solutionPerson2 {
  width: 220px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 150px;
  transform: translateY(-45%);
}
.solution .solutionInner .solutionArrowBg {
  margin-bottom: -40px;
}

@media (max-width: 1360px) {
  .solution .solutionInner .solutionSupport .solutionPerson1 {
    top: 70%;
    width: 160px;
    left: 40px;
  }
  .solution .solutionInner .solutionSupport .solutionPerson2 {
    top: 70%;
    width: 160px;
    right: 40px;
  }
}
@media (max-width: 1024px) {
  .solution .solutionInner .solutionSupport {
    padding-bottom: 160px;
  }
  .solution .solutionInner .solutionSupport .solutionPerson1 {
    top: auto;
    bottom: -24px;
    transform: translateY(0);
  }
  .solution .solutionInner .solutionSupport .solutionPerson2 {
    top: auto;
    bottom: -24px;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .solution .solutionInner .solutionCatch {
    padding-top: 64px;
  }
  .solution .solutionInner .solutionCatch .solutionArrow {
    width: 150px;
  }
  .solution .solutionInner .solutionCatch .common .sectionText {
    font-size: 20px;
  }
  .solution .solutionInner .solutionSupport {
    padding-bottom: 100px;
  }
  .solution .solutionInner .solutionSupport .solutionPerson1 {
    width: 100px;
  }
  .solution .solutionInner .solutionSupport .solutionPerson2 {
    width: 100px;
  }
  .solution .solutionInner .solutionArrowBg {
    margin-bottom: -72px;
  }
}
@media (max-width: 480px) {
  .solution {
    padding-bottom: 32px;
  }
  .solution .solutionInner .solutionCatch .solutionArrow {
    width: 100px;
  }
  .solution .solutionInner .solutionCatch .common .sectionText {
    font-size: 16px;
  }
  .solution .solutionInner .solutionCatch .common .sectionText br {
    display: block;
  }
  .solution .solutionInner .solutionSupport {
    padding-top: 100px;
  }
  .solution .solutionInner .solutionSupport .solutionText {
    font-size: 16px;
  }
  .solution .solutionInner .solutionSupport .solutionText .br-sp {
    display: block;
  }
  .solution .solutionInner .solutionSupport .solutionPerson1 {
    left: 5%;
    bottom: -32px;
  }
  .solution .solutionInner .solutionSupport .solutionPerson2 {
    right: 5%;
    bottom: -32px;
  }
}
.problem {
  padding: 64px 0;
  background-color: #F4F4F4;
  position: relative;
  z-index: 2;
}
.problem .common .sectionTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.problem .common .sectionTitle .br-sp {
  display: none;
}
.problem .problemList {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 64px;
}
.problem .problemList .problemItem {
  width: 320px;
  height: auto;
  background-color: #fff;
  padding: 40px 24px;
  position: relative;
}
.problem .problemList .problemItem .problemImg {
  width: auto;
  height: 175px;
  margin: auto;
  margin-bottom: 32px;
}
.problem .problemList .problemItem .problemText {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.problem .problemList .problemItem .problemIcon {
  width: 40px;
  height: auto;
  position: absolute;
  top: 16px;
  right: 40px;
}
.problem .problemArrow {
  width: 165px;
  height: auto;
  margin: auto;
}

@media (max-width: 1200px) {
  .problem .problemInner .problemList {
    gap: 30px;
  }
  .problem .problemInner .problemList .problemItem {
    width: 280px;
  }
  .problem .problemInner .problemList .problemItem .problemText br {
    display: none;
  }
}
@media (max-width: 1080px) {
  .problem .problemInner .problemList {
    flex-direction: column;
    align-items: center;
  }
  .problem .problemInner .problemList .problemItem {
    width: 400px;
  }
  .problem .problemInner .problemList .problemItem .problemText br {
    display: block;
  }
}
@media (max-width: 768px) {
  .problem {
    padding: 64px 0;
  }
  .problem .problemInner .problemList {
    gap: 40px;
  }
  .problem .problemInner .problemList .problemItem {
    width: 350px;
  }
  .problem .problemInner .problemList .problemItem .problemText {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .problem {
    padding: 40px 0;
  }
  .problem .problemInner .common .sectionTitle .br-sp {
    display: block;
  }
  .problem .problemInner .problemList {
    margin-bottom: 40px;
  }
  .problem .problemInner .problemList .problemItem {
    width: 290px;
    padding: 28px 16px;
  }
  .problem .problemInner .problemList .problemItem .problemImg {
    width: 50%;
    height: auto;
    margin-bottom: 16px;
  }
  .problem .problemInner .problemList .problemItem .problemIcon {
    width: 30px;
    right: 60px;
  }
  .problem .problemArrow {
    width: 150px;
  }
}
@media (max-width: 375px) {
  .problem .problemInner .problemList .problemItem {
    width: 250px;
  }
  .problem .problemInner .problemList .problemItem .problemText br {
    display: none;
  }
}
.improve {
  padding: 80px 0;
  background-color: #DFF1F6;
  text-align: center;
}
.improve .improveInner {
  position: relative;
  display: inline-block;
}
.improve .improveInner .common {
  width: 100%;
  margin-bottom: 0;
}
.improve .improveInner .common .sectionTitle {
  color: #000000;
}
.improve .improveInner .common .sectionText {
  color: #122D34;
  font-size: 22px;
}
.improve .improveInner .improvePerson {
  width: 250px;
  height: auto;
  position: absolute;
  top: 50%;
  right: -300px;
  transform: translateY(-50%);
}

@media (max-width: 1360px) {
  .improve {
    position: relative;
  }
  .improve .improveInner {
    position: static;
  }
  .improve .improveInner .improvePerson {
    width: 180px;
    right: 2%;
  }
}
@media (max-width: 768px) {
  .improve {
    padding: 64px 0;
  }
  .improve .improveInner .common .sectionText {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .improve .improveInner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
  }
  .improve .improveInner .common {
    width: 96%;
  }
  .improve .improveInner .improvePerson {
    position: static;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .improve {
    padding: 40px 0;
  }
  .improve .improveInner .improvePerson {
    width: 140px;
  }
}
.feature {
  padding: 80px 0;
}
.feature .featureInner .featureList {
  width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
  padding-bottom: 180px;
}
.feature .featureInner .featureList .featureItem {
  width: 500px;
  height: auto;
}
.feature .featureInner .featureList .featureItem .featureWrap {
  padding: 32px 56px;
  position: relative;
  background-color: #F4F4F4;
  border-radius: 20px;
}
.feature .featureInner .featureList .featureItem .featureWrap .featureTitle {
  font-size: 28px;
  color: #326D84;
  margin-bottom: 12px;
}
.feature .featureInner .featureList .featureItem .featureWrap .featureText {
  font-size: 16px;
  font-weight: 500;
  color: #122D34;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.feature .featureInner .featureList .featureItem .featureWrap .featureImg {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.feature .featureInner .featureList .featureItem .featureWrap .featureNum {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #8AA8B2;
  border-radius: 80px;
  width: 100px;
  height: 100px;
}
.feature .featureInner .featureList .featureItem .featureWrap .featureNum .en {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  transform: translateY(5px);
}
.feature .featureInner .featureList .featureItem .featureWrap .featureNum .number {
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: normal;
  transform: translateY(3px);
}
.feature .featureInner .featureList .featureItem .featureWrap .featureCatch {
  width: calc(100% + 24px);
  transform: translateX(-24px);
  background-color: #fff;
  text-align: center;
  border-radius: 40px;
  padding: 10px 12px 14px;
  position: relative;
  line-height: 1.2;
}
.feature .featureInner .featureList .featureItem .featureWrap .featureCatch span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0095D1;
}
.feature .featureInner .featureList .featureItem .featureWrap .featureCatch .featureIcon {
  width: 32px;
  height: auto;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-55%);
}
.feature .featureInner .featureList .featureItem:nth-child(2n) {
  transform: translateY(150px);
}

@media (max-width: 1280px) {
  .feature .featureInner .featureList {
    width: 900px;
    gap: 64px;
    row-gap: 80px;
  }
  .feature .featureInner .featureList .featureItem {
    width: 400px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureText br {
    display: none;
  }
}
@media (max-width: 960px) {
  .feature .featureInner .featureList {
    width: 720px;
    gap: 56px;
  }
  .feature .featureInner .featureList .featureItem {
    width: 320px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureTitle {
    font-size: 20px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureText {
    font-size: 14px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureText br {
    display: none;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureNum {
    width: 80px;
    height: 80px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureNum .en {
    font-size: 12px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureNum .number {
    font-size: 40px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureCatch span {
    font-size: 13px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureCatch span .br-tab {
    display: block;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureCatch .featureIcon {
    width: 24px;
    left: -18px;
  }
}
@media (max-width: 768px) {
  .feature {
    padding: 64px 0;
  }
  .feature .featureInner .featureList {
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    padding-bottom: 0;
  }
  .feature .featureInner .featureList .featureItem:nth-child(2n) {
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .feature {
    padding: 40px 0;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureTitle {
    font-size: 24px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureTitle br {
    display: none;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureText {
    font-size: 16px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureCatch span {
    font-size: 14px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureCatch span .br-sp {
    display: block;
  }
}
@media (max-width: 375px) {
  .feature .featureInner .featureList {
    gap: 56px;
  }
  .feature .featureInner .featureList .featureItem {
    width: 300px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap {
    padding: 32px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureCatch {
    width: calc(100% - 12px);
    transform: translateX(0);
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureCatch span {
    font-size: 13px;
  }
  .feature .featureInner .featureList .featureItem .featureWrap .featureNum {
    top: -32px;
    right: -8px;
    width: 70px;
    height: 70px;
  }
}
.step {
  padding: 80px 0;
  background-color: #E8FAFF;
}
.step .stepInner .common {
  margin-bottom: 80px;
}
.step .stepInner .stepList {
  width: 90%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.step .stepInner .stepList .stepItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 64px 40px 64px;
}
.step .stepInner .stepList .stepItem .stepImg {
  width: 40%;
}
.step .stepInner .stepList .stepItem .stepMain {
  width: 55%;
}
.step .stepInner .stepList .stepItem .stepMain .stepTitle {
  font-size: 24px;
  color: #326D84;
  margin-bottom: 24px;
}
.step .stepInner .stepList .stepItem .stepMain .stepText {
  line-height: 2;
  color: #122D34;
}
.step .stepInner .stepList .stepItem .stepNum {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .stepInner .stepList .stepItem .stepNum span {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}
.step .stepInner .stepList .stepItem .stepNum img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.step .stepInner .stepList .stepItem:before {
  content: "";
  width: 20px;
  height: 80px;
  background-color: #70C6E7;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.step .stepInner .stepList .stepItem:nth-child(3):before {
  display: none;
}

@media (max-width: 1024px) {
  .step .stepInner .stepList {
    max-width: 700px;
  }
  .step .stepInner .stepList .stepItem {
    gap: 32px;
  }
  .step .stepInner .stepList .stepItem .stepImg {
    width: 35%;
  }
  .step .stepInner .stepList .stepItem .stepMain {
    width: 65%;
  }
  .step .stepInner .stepList .stepItem .stepMain .stepTitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .step {
    padding: 64px 0;
  }
  .step .stepInner .stepList .stepItem {
    flex-direction: column-reverse;
    padding-top: 64px;
  }
  .step .stepInner .stepList .stepItem .stepImg {
    width: 100%;
  }
  .step .stepInner .stepList .stepItem .stepMain {
    width: 100%;
  }
  .step .stepInner .stepList .stepItem .stepNum {
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
  }
  .step .stepInner .stepList .stepItem .stepNum span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .step {
    padding: 40px 0;
  }
  .step .stepInner .stepList {
    gap: 64px;
  }
  .step .stepInner .stepList .stepItem {
    padding: 64px 24px 24px;
  }
  .step .stepInner .stepList .stepItem .stepMain .stepText {
    font-size: 14px;
  }
  .step .stepInner .stepList .stepItem .stepNum {
    font-size: 32px;
    top: -35px;
  }
}
.case {
  padding: 80px 0;
  background-color: #fff;
}
.case .caseInner .caseList {
  width: 90%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.case .caseInner .caseList .caseItem {
  width: calc(100% - 200px);
  background-color: #F0FCFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 100px;
}
.case .caseInner .caseList .caseItem .caseMain .caseTitle {
  font-size: 32px;
  font-weight: 700;
  color: #0095D1;
  margin-bottom: 12px;
}
.case .caseInner .caseList .caseItem .caseMain .caseText {
  font-weight: 500;
}
.case .caseInner .caseList .caseItem .caseImg {
  width: 200px;
  height: auto;
}
.case .caseInner .caseList .caseItem:nth-child(2) {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .case .caseInner .caseList {
    max-width: none;
  }
  .case .caseInner .caseList .caseItem {
    padding: 24px 64px;
    width: calc(100% - 128px);
  }
  .case .caseInner .caseList .caseItem .caseMain .caseTitle br {
    display: none;
  }
  .case .caseInner .caseList .caseItem .caseImg {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .case {
    padding: 64px 0;
  }
  .case .caseInner .caseList {
    flex-direction: column;
    align-items: center;
  }
  .case .caseInner .caseList .caseItem {
    flex-direction: column;
  }
  .case .caseInner .caseList .caseItem:nth-child(2) {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .case {
    padding: 40px 0;
  }
  .case .caseInner .caseList {
    gap: 16px;
  }
  .case .caseInner .caseList .caseItem {
    width: calc(100% - 48px);
    padding: 24px;
    gap: 32px;
  }
  .case .caseInner .caseList .caseItem .caseMain .caseTitle {
    font-size: 24px;
  }
  .case .caseInner .caseList .caseItem .caseMain .caseText br {
    display: none;
  }
}
.contact {
  padding: 80px 0;
  background-color: #0095D1;
}
.contact .contactInner .common .sectionTitle {
  color: #fff;
  font-size: 28px;
}
.contact .contactInner .contactList {
  width: 90%;
  max-width: 1120px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.contact .contactInner .contactList .contactItem {
  width: calc(33% - 64px);
  background-color: #fff;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.contact .contactInner .contactList .contactItem .contactImg {
  width: auto;
  height: 130px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.contact .contactInner .contactList .contactItem .contactTitle {
  font-size: 24px;
  font-weight: 500;
  color: #0095D1;
  margin-bottom: 16px;
}
.contact .contactInner .contactList .contactItem .contactText {
  font-size: 14px;
  color: #122D34;
  margin-bottom: 24px;
}

@media (max-width: 1280px) {
  .contact .contactInner .contactList {
    max-width: 900px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .contact .contactInner .contactList {
    gap: 32px;
  }
  .contact .contactInner .contactList .contactItem {
    width: calc(33% - 64px);
    padding: 24px;
  }
  .contact .contactInner .contactList .contactItem .contactImg {
    height: 80px;
  }
  .contact .contactInner .contactList .contactItem .contactTitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .contact .contactInner .contactList .contactItem .cta {
    padding: 12px 16px;
  }
  .contact .contactInner .contactList .contactItem .cta span {
    font-size: 11px;
    transform: translateY(-1px);
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 64px 0;
  }
  .contact .contactInner .contactList {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 24px;
  }
  .contact .contactInner .contactList .contactItem {
    width: 300px;
  }
  .contact .contactInner .contactList .contactItem .cta span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 40px 0;
  }
  .contact .contactInner .common .sectionTitle {
    font-size: 24px;
  }
  .contact .contactInner .contactList {
    margin-bottom: 0;
  }
}
@media (max-width: 375px) {
  .contact .contactInner .common .sectionTitle {
    font-size: 20px;
  }
  .contact .contactInner .contactList .contactItem {
    width: 250px;
  }
}
.appeal {
  padding: 32px 0;
  background-image: url(../image/appealBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: bottom;
}
.appeal .appealInner {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}
.appeal .appealInner .apeealImg {
  width: 160px;
  height: auto;
  position: absolute;
  bottom: -32px;
  left: -140px;
}

@media (min-width: 1800px) {
  .appeal .appealInner {
    max-width: 1240px;
  }
  .appeal .appealInner .appealTitle {
    font-size: 22px;
  }
  .appeal .appealInner .apeealImg {
    width: 180px;
    left: -220px;
    bottom: -32px;
  }
}
@media (max-width: 1280px) {
  .appeal .appealInner {
    width: auto;
    max-width: none;
  }
  .appeal .appealInner .appealTitle .br {
    display: block;
  }
  .appeal .appealInner .apeealImg {
    left: 2%;
  }
}
@media (max-width: 960px) {
  .appeal {
    padding: 12px 0;
  }
  .appeal .appealInner {
    padding-left: 120px;
  }
  .appeal .appealInner .apeealImg {
    bottom: -12px;
    width: 110px;
  }
}
@media (max-width: 768px) {
  .appeal {
    padding: 32px 0;
  }
  .appeal .appealInner {
    padding: 0;
    gap: 32px;
    flex-direction: column;
  }
  .appeal .appealInner .appealTitle {
    width: 96%;
    margin: auto;
  }
  .appeal .appealInner .appealTitle .br {
    display: none;
  }
  .appeal .appealInner .apeealImg {
    display: none;
  }
}
.footer {
  padding: 64px 0;
  background-color: #122D34;
}
.footer .footerInner {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 64px;
}
.footer .footerInner .footerTop {
  border-right: 1px solid #d9d9d9;
  padding-right: 64px;
}
.footer .footerInner .footerTop .footerLogo {
  width: 120px;
  margin: auto;
  margin-bottom: 24px;
}
.footer .footerInner .footerTop .footerSns .footerSnsList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.footer .footerInner .footerTop .footerSns .footerSnsList .footerSnsItem {
  width: 22px;
  height: auto;
}
.footer .footerInner .footerMain .footerList {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav {
  display: flex;
  justify-content: space-between;
  color: #fff;
  white-space: nowrap;
  font-size: 14px;
  gap: 40px;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul {
  width: 100%;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul li {
  margin-bottom: 20px;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul li:nth-child(1) {
  width: 100%;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul li:nth-child(1) dl ul {
  width: 100%;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul li:nth-child(1) dl dt {
  margin-bottom: 20px;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul li:nth-child(1) dl dd {
  font-weight: 300;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul li:last-child {
  margin-bottom: 0;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul.nav_list_support {
  width: 460px;
  display: flex;
  flex-wrap: wrap;
  font-weight: 300;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav ul.nav_list_support li {
  width: 50%;
}
.footer .footerInner .footerMain .footerList .footerItem .main_nav dl dt {
  margin-bottom: 20px;
}
.footer .footerInner .footerMain .footerList .footerItem:nth-child(1) {
  border-right: 1px solid #d9d9d9;
  padding-right: 64px;
}
.footer .copy {
  width: 90%;
  margin: auto;
  font-size: 10px;
  font-weight: 400;
  text-align: right;
  color: #fff;
}

@media (max-width: 1280px) {
  .footer .footerInner {
    width: 90%;
    margin: auto;
    flex-direction: column;
    align-items: center;
  }
  .footer .footerInner .footerTop {
    width: 100%;
    border-right: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .footerInner .footerTop .footerLogo {
    margin: 0;
  }
  .footer .footerInner .footerTop .footerSns .footerSnsList {
    margin-top: 24px;
  }
  .footer .footerInner .footerMain .footerList {
    gap: 32px;
  }
  .footer .footerInner .footerMain .footerList .footerItem:nth-child(1) {
    padding-right: 32px;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 150px;
  }
  .footer .footerInner {
    gap: 40px;
  }
  .footer .footerInner .footerTop {
    flex-direction: column;
    gap: 32px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 40px;
  }
  .footer .footerInner .footerMain .footerList {
    flex-direction: column;
  }
  .footer .footerInner .footerMain .footerList .footerItem:nth-child(1) {
    border-right: none;
    padding: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #d9d9d9;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav {
    font-size: 3vw;
    gap: 20px;
    flex-direction: column;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav ul li dl ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav ul li dl ul li {
    width: 50%;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav ul.nav_list_support {
    width: auto;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav .page_other {
    display: flex;
    flex-wrap: wrap;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav .page_other li {
    width: 50%;
  }
  .footer .footerInner .footerMain .footerList .footerItem .main_nav .page_other li:nth-child(1) {
    width: 50%;
  }
  .footer .copy {
    font-size: 2.5vw;
    text-align: center;
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding-bottom: 120px;
  }
}/*# sourceMappingURL=style.css.map */