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;
  scroll-padding-top: 80px;
}

.p-lp {
  overflow: hidden;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: 600;
  max-width: 1800px;
  margin: auto;
}
.p-lp .hm {
  display: none;
}
@media (max-width: 1080px) {
  .p-lp .hm {
    display: block;
  }
}
.p-lp .menu {
  position: fixed;
  top: 16px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 200;
}
.p-lp .menu span {
  position: relative;
  display: block;
  width: 50%;
  height: 2px;
  background-color: #444;
  float: left;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.p-lp .menu span:nth-of-type(1) {
  transform: translateY(-5px);
}
.p-lp .menu span:nth-of-type(3) {
  transform: translateY(5px);
}
.p-lp #menu {
  display: none;
}
.p-lp #menu:checked ~ .menu {
  transform: rotate(360deg);
  transition: transform 250ms ease;
  background-color: #fff;
}
.p-lp #menu:checked ~ .menu span {
  background-color: #444;
  transition: transform 250ms ease;
}
.p-lp #menu:checked ~ .menu span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
.p-lp #menu:checked ~ .menu span:nth-of-type(2) {
  display: none;
}
.p-lp #menu:checked ~ .menu span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}
.p-lp #menu:checked ~ .nav {
  right: 0px;
  transition: right 500ms ease;
}
.p-lp #menu:checked ~ main {
  transform: translateX(250px);
  transition: transform 500ms ease;
}
.p-lp .nav {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #02a8f5;
  transition: left 500ms ease;
  z-index: 8;
}
.p-lp .nav ul {
  position: relative;
  list-style-type: none;
  margin: 100px 0;
  padding: 0;
}
.p-lp .nav ul li {
  position: relative;
  display: block;
  border-bottom: 2px solid white;
}
.p-lp .nav ul li a {
  position: relative;
  display: block;
  margin: 0;
  padding: 25px 20px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.p-lp .nav ul li a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 250ms ease;
  z-index: -1;
}
.p-lp .nav ul li a:hover {
  color: #444;
}
.p-lp .nav ul li a:hover:before {
  width: 100%;
  height: 100%;
  background-color: white;
  transition: width 250ms ease;
}
.p-lp .cta {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin: auto;
}
.p-lp .ctaBtn {
  font-size: 20px;
  width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  text-align: center;
  padding: 12px 0;
  border-radius: 100px;
}
.p-lp .ctaBtn img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 40px;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .p-lp .ctaBtn img {
    width: 30px;
  }
}
.p-lp .ctaBtn_blue {
  color: #fff;
  background-image: linear-gradient(90deg, #0269EC, #00B4F8);
}
.p-lp .ctaBtn_white {
  color: #002D63;
  background-color: #fff;
  border: 2px solid #002D63;
}
.p-lp .ctaBtn_header {
  width: 300px;
}
@media (max-width: 1280px) {
  .p-lp .ctaBtn_header {
    width: 200px;
    font-size: 16px;
  }
  .p-lp .ctaBtn_header img {
    width: 20px;
  }
}
.p-lp .ctaBtn:hover {
  opacity: 0.7;
}
.p-lp .ctaBtn:hover img {
  right: 10px;
}
@media (max-width: 768px) {
  .p-lp .ctaBtn {
    min-height: 64px;
  }
}
@media (max-width: 480px) {
  .p-lp .ctaBtn {
    width: 100%;
    min-height: 54px;
    font-size: 18px;
    padding: 8px 0;
  }
}
.p-lp .cta_fv {
  width: auto;
  flex-direction: column;
}
.p-lp .cta_fv .ctaBtn {
  min-height: auto;
  padding: 16px 0;
}
.p-lp .cta_fv .ctaBtn_white {
  border: none;
}
@media (max-width: 1080px) {
  .p-lp .cta_fv .ctaBtn {
    width: 360px;
  }
}
@media (max-width: 480px) {
  .p-lp .cta_fv .ctaBtn {
    width: 100%;
  }
  .p-lp .cta_fv .ctaBtn_blue {
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .p-lp .cta_fv {
    align-items: flex-start !important;
  }
}
@media (max-width: 480px) {
  .p-lp .cta_fv {
    margin: auto;
  }
}
.p-lp .cta_header {
  width: auto;
  margin: 0;
}
@media (max-width: 768px) {
  .p-lp .cta {
    flex-direction: column;
    align-items: center;
  }
}
.p-lp .section {
  text-align: center;
  margin-bottom: 64px;
}
.p-lp .sectionHeading {
  font-size: 36px;
  color: #002D63;
}
.p-lp .sectionHeading span {
  display: block;
  font-size: 18px;
  color: #222222;
  margin-bottom: 4px;
}
.p-lp .sectionHeading .br {
  display: none;
}
@media (max-width: 768px) {
  .p-lp .sectionHeading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .p-lp .sectionHeading {
    font-size: 26px;
  }
}
.p-lp .sectionCatch {
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 480px) {
  .p-lp .section {
    margin-bottom: 40px;
  }
}
.p-lp .header {
  width: calc(100% - 32px);
  max-width: 1768px;
  background-color: transparent;
  padding: 16px;
  position: fixed;
  z-index: 9;
  transition: 0.3s;
}
.p-lp .headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-lp .headerLogo {
  display: block;
  width: 250px;
  height: auto;
}
@media (max-width: 1280px) {
  .p-lp .headerLogo {
    width: 180px;
  }
}
.p-lp .headerList {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: auto;
  margin-right: 40px;
}
@media (max-width: 1280px) {
  .p-lp .headerList {
    gap: 32px;
    margin-right: 24px;
  }
}
@media (max-width: 1080px) {
  .p-lp .headerList {
    display: none;
  }
}
.p-lp .headerItem {
  color: #fff;
  font-size: 16px;
  position: relative;
  line-height: 1;
}
.p-lp .headerItem:before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: -26px;
}
@media (max-width: 1280px) {
  .p-lp .headerItem:before {
    right: -18px;
  }
}
.p-lp .headerItem:last-child:before {
  display: none;
}
@media (max-width: 1080px) {
  .p-lp .header .cta {
    display: none;
  }
}
.p-lp .header.scroll {
  background-color: #02a8f5;
}
.p-lp .fv {
  background-image: url(../images/fv_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 700px;
}
@media (max-width: 480px) {
  .p-lp .fvMain {
    width: 100%;
  }
}
.p-lp .fvInner {
  width: 70%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1080px) {
  .p-lp .fvInner {
    width: 90%;
  }
}
.p-lp .fvHeading {
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-lp .fvHeading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .p-lp .fvHeading {
    font-size: 28px;
  }
  .p-lp .fvHeading .br {
    display: block;
  }
}
.p-lp .fvText {
  font-size: 16px;
  color: #fff;
  margin-bottom: 24px;
}
.p-lp .fvCatch {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}
.p-lp .fvCatch_item {
  background-color: #3F6D92;
  color: #fff;
  font-size: 18px;
  padding: 8px 12px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-lp .fvCatch_item {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .p-lp .fvCatch_item {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .p-lp .fvCatch {
    flex-direction: column;
  }
}
.p-lp .fvBorder {
  display: block;
  height: 20px;
  margin-top: -2px;
  background-image: linear-gradient(90deg, #0269EC, #00B4F8);
}
@media (max-width: 480px) {
  .p-lp .fv {
    background-position: -900px center;
    height: 600px;
  }
}
.p-lp .fv_packing {
  background-image: url(../images/fv_bg_packing.png);
}
.p-lp .catch {
  background-image: url(../images/catch_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-lp .catchHeading {
  display: inline-block;
  font-size: 28px;
  line-height: 2;
  color: #fff;
  text-align: center;
  position: relative;
}
.p-lp .catchHeading span {
  background-image: linear-gradient(90deg, #0269EC, #00B4F8);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 30%;
}
@media (max-width: 768px) {
  .p-lp .catchHeading {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .p-lp .catchHeading {
    text-align: center;
  }
  .p-lp .catchHeading .br {
    display: block;
  }
}
.p-lp .catch_packing {
  background-image: url(../images/catch_bg_packing.png);
}
@media (max-width: 1080px) {
  .p-lp .catch_packing .br {
    display: block;
  }
}
@media (max-width: 768px) {
  .p-lp .catch_packing .catchHeading {
    font-size: 20px;
  }
}
.p-lp .reason {
  padding: 80px 0;
}
@media (max-width: 400px) {
  .p-lp .reason .section .br {
    display: block;
  }
}
.p-lp .reasonList {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .p-lp .reasonList {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .p-lp .reasonList {
    gap: 24px;
  }
}
.p-lp .reasonItem {
  width: 33%;
  background-color: #F4F4F4;
  text-align: center;
  padding-bottom: 40px;
}
.p-lp .reasonItem_main {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
}
.p-lp .reasonItem_heading {
  font-size: 20px;
  min-height: 60px;
  color: #222222;
  margin-bottom: 30px;
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-lp .reasonItem_heading {
    min-height: auto;
  }
}
.p-lp .reasonItem_text {
  font-size: 16px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .p-lp .reasonItem {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .p-lp .reasonItem {
    max-width: 100%;
  }
}
.p-lp .reasonVideo {
  width: 90%;
  max-width: 700px;
  margin: auto;
}
.p-lp .reasonVideo video {
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .p-lp .reason {
    padding: 40px 0;
  }
}
.p-lp .case {
  padding: 80px 0;
}
.p-lp .caseList {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-lp .caseList {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .p-lp .caseList {
    gap: 24px;
  }
}
.p-lp .caseItem {
  width: 33%;
  background-color: #F4F4F4;
  text-align: center;
  padding-bottom: 40px;
}
.p-lp .caseItem_main {
  padding-left: 16px;
  padding-right: 16px;
}
.p-lp .caseItem_heading {
  font-size: 20px;
  padding-top: 40px;
}
.p-lp .caseItem_text {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .p-lp .caseItem {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .p-lp .caseItem {
    max-width: 100%;
  }
}
.p-lp .caseText {
  width: 90%;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .p-lp .caseText .br {
    display: block;
  }
}
@media (max-width: 480px) {
  .p-lp .case {
    padding: 40px 0;
  }
}
.p-lp .problem {
  padding: 80px 0 0;
}
@media (max-width: 480px) {
  .p-lp .problem .section .br {
    display: block;
  }
}
@media (max-width: 480px) {
  .p-lp .problem {
    padding: 40px 0 0;
  }
}
.p-lp .function {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .p-lp .function .section .br {
    display: block;
  }
}
.p-lp .functionImg {
  display: block;
  width: 300px;
  margin: auto;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .p-lp .functionImg {
    width: 200px;
    margin-bottom: 40px;
  }
}
.p-lp .functionList {
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin: auto;
}
@media (max-width: 768px) {
  .p-lp .functionList {
    gap: 32px;
  }
}
.p-lp .functionItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.p-lp .functionItem_main {
  width: 50%;
}
@media (max-width: 768px) {
  .p-lp .functionItem_main {
    width: 100%;
  }
}
.p-lp .functionItem_heading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}
.p-lp .functionItem_heading img {
  width: 80px;
  transform: translateY(-5px);
}
@media (max-width: 480px) {
  .p-lp .functionItem_heading img {
    width: 60px;
  }
}
.p-lp .functionItem_heading span {
  font-size: 20px;
  color: #002D63;
}
@media (max-width: 480px) {
  .p-lp .functionItem_heading span {
    font-size: 16px;
  }
  .p-lp .functionItem_heading span br {
    display: none;
  }
}
.p-lp .functionItem_heading .functionItem_num {
  font-size: 80px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #E4E8EE;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-lp .functionItem_heading .functionItem_num {
    font-size: 60px;
  }
}
@media (max-width: 480px) {
  .p-lp .functionItem_heading .functionItem_num {
    font-size: 50px;
  }
}
.p-lp .functionItem_heading .functionsItem_text {
  display: block;
  color: #000;
  font-size: 16px;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .p-lp .functionItem_heading .functionsItem_text {
    margin-top: 12px;
    font-size: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .p-lp .functionItem_heading {
    margin-bottom: 0;
  }
}
.p-lp .functionItem_img {
  width: 50%;
}
@media (max-width: 768px) {
  .p-lp .functionItem_img {
    width: 100%;
  }
}
.p-lp .functionItem:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-lp .functionItem:nth-child(2n) {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .p-lp .functionItem {
    flex-direction: column;
    gap: 0px;
  }
}
@media (max-width: 480px) {
  .p-lp .function {
    padding: 40px 0;
  }
}
.p-lp .network {
  padding: 80px 0;
}
@media (max-width: 480px) {
  .p-lp .network .section .br {
    display: block;
  }
}
.p-lp .networkImg {
  display: block;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 480px) {
  .p-lp .network {
    padding: 40px 0;
  }
}
.p-lp .company {
  padding: 80px 0;
  background-color: #F4F6F8;
}
@media (max-width: 480px) {
  .p-lp .company {
    padding: 40px 0;
  }
}
.p-lp .flow {
  padding: 80px 0;
}
.p-lp .flowList {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1080px) {
  .p-lp .flowList {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .p-lp .flowList {
    flex-direction: column;
    align-items: center;
  }
}
.p-lp .flowItem {
  display: flex;
  flex-direction: column;
  width: 25%;
  background-color: #F4F4F4;
  padding-bottom: 24px;
}
.p-lp .flowItem_img {
  display: block;
  margin-bottom: 20px;
}
.p-lp .flowItem_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  font-size: 16px;
  text-align: center;
}
.p-lp .flowItem_heading span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
@media (max-width: 1080px) {
  .p-lp .flowItem {
    width: 30%;
  }
}
@media (max-width: 600px) {
  .p-lp .flowItem {
    width: 100%;
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .p-lp .flow {
    padding: 40px 0;
  }
}
.p-lp .contact {
  padding: 80px 0;
  background-color: #F5F7F8;
}
@media (max-width: 480px) {
  .p-lp .contact .sectionHeading .br {
    display: block;
  }
}
.p-lp .contactForm {
  width: calc(90% - 80px);
  max-width: 720px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}
.p-lp .contactForm br {
  display: none;
}
.p-lp .contactForm .break_pc {
  display: block;
}
@media (max-width: 768px) {
  .p-lp .contactForm .break_pc {
    display: none;
  }
}
.p-lp .contactForm .m_form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-lp .contactForm .m_form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.p-lp .contactForm .m_form-label {
  width: 25%;
  display: flex;
  align-items: center;
}
.p-lp .contactForm .m_form-label .m_form-required {
  font-size: 14px;
  color: #C1272D;
}
@media (max-width: 1080px) {
  .p-lp .contactForm .m_form-label {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .p-lp .contactForm .m_form-label {
    width: 100%;
  }
}
.p-lp .contactForm .wpcf7-form-control-wrap {
  width: 75%;
}
.p-lp .contactForm .wpcf7-form-control-wrap input {
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0;
}
.p-lp .contactForm .wpcf7-form-control-wrap select {
  width: calc(100% + 4px);
  height: 34px;
  padding: 0;
  margin: 0;
}
.p-lp .contactForm .wpcf7-form-control-wrap textarea {
  width: calc(100% + 4px);
  height: 120px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1080px) {
  .p-lp .contactForm .wpcf7-form-control-wrap {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .p-lp .contactForm .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.p-lp .contactForm .screen-reader-response {
  display: none;
}
.p-lp .contactForm .wpcf7-response-output {
  text-align: center;
  margin-top: 32px;
}
.p-lp .contactForm .ctaBtn {
  width: 300px;
  margin: auto;
  margin-top: 40px;
  padding: 0;
}
.p-lp .contactForm .ctaBtn .wpcf7-spinner {
  display: none;
}
.p-lp .contactForm .ctaBtn p {
  width: 100%;
  height: 100%;
}
.p-lp .contactForm .ctaBtn input {
  width: 100%;
  height: 100%;
  color: #002D63;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 10px 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 480px) {
  .p-lp .contactForm .ctaBtn {
    width: 100%;
  }
}
.p-lp .contactForm .wpcf7-response-output {
  border: none;
}
@media (max-width: 480px) {
  .p-lp .contactForm {
    width: calc(90% - 60px);
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .p-lp .contact {
    padding: 40px 0;
  }
}
.p-lp .operation {
  padding: 80px 0;
}
.p-lp .operationInner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.p-lp .operationHeading {
  padding: 0 32px;
  color: #002D63;
  font-size: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-lp .operationHeading br {
    display: none;
    padding: 0;
  }
}
.p-lp .operationMain {
  background: linear-gradient(to right, #0269EC, #00B4F8);
  padding: 40px;
  position: relative;
}
.p-lp .operationMain span {
  display: block;
  line-height: 2.5;
  color: #fff;
  width: 50%;
}
@media (max-width: 1080px) {
  .p-lp .operationMain span {
    width: 100%;
  }
}
.p-lp .operationList {
  position: absolute;
  top: 50%;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-50%);
}
@media (max-width: 1080px) {
  .p-lp .operationList {
    position: relative;
    transform: translateY(0);
    right: 0;
    flex-direction: row;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .p-lp .operationList {
    flex-direction: column;
  }
}
.p-lp .operationItem {
  width: 300px;
  height: auto;
}
@media (max-width: 1080px) {
  .p-lp .operationItem {
    width: calc(33% - 16px);
  }
}
@media (max-width: 480px) {
  .p-lp .operationItem {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-lp .operation {
    padding: 40px 0;
  }
}
.p-lp .construction {
  padding: 80px 0;
}
.p-lp .constructionInner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.p-lp .constructionMain {
  background-color: #F4F4F4;
  padding: 40px 40px 120px;
  transform: translateX(-40px);
}
@media (max-width: 768px) {
  .p-lp .constructionMain {
    transform: translateX(0);
  }
}
.p-lp .constructionHeading {
  font-size: 24px;
  color: #002D63;
  margin-bottom: 24px;
}
.p-lp .constructionText {
  line-height: 2;
}
.p-lp .constructionList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  transform: translateY(-80px);
  margin-bottom: -80px;
}
@media (max-width: 480px) {
  .p-lp .constructionList {
    flex-direction: column;
  }
}
.p-lp .constructionItem {
  width: calc(50% - 20px);
}
.p-lp .constructionItem_img {
  display: block;
  margin-bottom: 20px;
}
.p-lp .constructionItem_text {
  line-height: 2;
}
@media (max-width: 480px) {
  .p-lp .constructionItem {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-lp .construction {
    padding: 40px 0;
  }
}
.p-lp .footer {
  background-color: #02a8f5;
  padding: 40px 0;
}
.p-lp .footerInner {
  width: 90%;
  margin: auto;
}
.p-lp .footerLogo {
  display: block;
  width: 250px;
  margin: auto;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .p-lp .footerLogo {
    width: 200px;
  }
}
.p-lp .footerCompany {
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .p-lp .footerCompany {
    font-size: 14px;
  }
}
.p-lp .footerText {
  text-align: center;
  color: #fff;
}
@media (max-width: 480px) {
  .p-lp .footerText {
    font-size: 12px;
  }
}

.fixed {
  display: block;
  position: fixed;
  bottom: 12px;
  right: 12px;
  width: 250px;
  background-color: #d0e2f2;
  border-radius: 15px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.45);
  padding: 20px;
  z-index: 9;
}
.fixedInner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fixedCross {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 20px;
  height: 20px;
}
.fixed .ctaBtn {
  width: auto;
  font-size: 16px;
  margin-top: 12px;
  padding: 8px 0;
}
@media (max-width: 768px) {
  .fixed .ctaBtn {
    min-height: auto;
  }
}/*# sourceMappingURL=lp.css.map */