@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.4;
  color: #141416;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

a {
  text-decoration: none;
}

img {
  height: auto;
}

._underline {
  position: relative;
}

._underline::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgb(255, 214, 119);
  z-index: -1;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@keyframes anime_clippath {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes anime_opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5.5px);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 5;
  font-size: min(1.6vw, 18px);
}

@media screen and (max-width: 767px) {
  .header {
    padding: 10px 20px;
    font-size: 14px;
    padding: 8px 10px 8px 13px;
  }
}

.header_logo {
  width: 180px;
}

@media screen and (max-width: 1100px) {
  .header_logo {
    width: 140px;
  }
}

.header_link {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .header_link {
    gap: 10px;
  }
}

.header_link ul {
  display: flex;
  gap: 25px;
  align-items: center;
  transition: 0.3s;
}

@media screen and (max-width: 1100px) {
  .header_link ul {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .header_link ul {
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    backdrop-filter: blur(5.5px);
    justify-content: center;
  }

  .header_link ul li {
    text-align: center;
  }

  .header_link ul li a {
    width: 100%;
    padding: 10px;
    display: block;
  }
}

.header_link a {
  color: #141416;
}

.header_menu {
  appearance: none;
  border: none;
  width: 40px;
  position: relative;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/line-md_menu.svg) no-repeat center center;
}

.js-open .header_link ul {
  height: 350px;
}

.js-open .header_menu {
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/jam_close.svg) no-repeat center center;
  background-size: 30px 30px;
}

.footer {
  border-top: solid 1px #ccc;
  padding: 100px 50px;
  display: flex;
  justify-content: center;
  background: #fff;
}

.white_btn {
  max-width: 230px;
  min-width: 125px;
  width: 20%;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #002D48;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .white_btn {
    min-width: 180px;
    height: 40px;
  }
}

.white_btn span {
  position: relative;
  z-index: 1;
}

.white_btn::after {
  content: "▶︎";
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding-left: 2px;
  background: #FFA500;
  position: absolute;
  right: 5%;
  top: 50%;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.white_btn::before {
  background: #FFA500;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

@media (hover: hover) {
  .white_btn:hover:before {
    width: 100%;
  }

  .white_btn:hover::after {
    color: #FFA500;
    background: #fff;
    transition-delay: 0.3s;
  }
}

.button_round {
  background: #FCB100;
  border: 1px solid #EFA61F;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 40px 23px 10px;
  font-size: min(2.2vw, 20px);
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .button_round {
    font-size: 16px;
    padding: 15px 40px 18px 10px;
  }
}

.button_round span {
  position: relative;
  z-index: 1;
}

.button_round::after {
  content: "▶︎";
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FCB100;
  padding-left: 2px;
  background: #FFf;
  position: absolute;
  right: 8%;
  top: 50%;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  transition: 0.1s;
}

.button_round::before {
  content: "";
  background: #FC6D00;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}

@media (hover: hover) {
  .button_round:hover {
    color: #fff;
  }

  .button_round:hover:before {
    width: 100%;
  }

  .button_round:hover::after {
    color: #FC6D00;
    transition-delay: 0.2s;
  }
}

.worries {
  padding: 5rem 20px;
  position: relative;
  background: linear-gradient(180deg, rgb(173, 173, 173) 0%, rgba(219, 219, 219, 0) 100%);
}

@media screen and (max-width: 767px) {
  .worries {
    padding: 4rem 20px 3rem;
  }
}

.worries::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #eee url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/worries_bg.webp) no-repeat right top;
  background-size: 42%;
  top: 0;
  left: 0;
  opacity: 0.4;
}

@media screen and (max-width: 767px) {
  .worries::before {
    background-size: 48%;
  }
}

.worries::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 15px);
  background: #009DE1;
  width: 40px;
  height: 30px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transform: translateX(-50%);
}

.worries_title {
  margin-bottom: 3rem;
}

.worries_title h2 {
  font-size: min(2.3vw, 30px);
  position: relative;
  padding-bottom: 2rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .worries_title h2 {
    font-size: 22px;
  }
}

.worries_title h2::before {
  content: "";
  left: 0;
  top: 100%;
  width: 50px;
  height: 5px;
  background: #009DE1;
  position: absolute;
}

.worries_detail {
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.worries_detail ul {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.worries_detail ul li {
  list-style: disc;
  font-size: min(2.2vw, 20px);
  margin-bottom: 10px;
  line-height: 1.8;
  list-style: none;
}

.worries_detail ul li img {
  width: 90%;
  margin: 0 auto 20px;
}

.worries_detail ul li p {
  text-align: center;
}

.worries_detail ul li span {
  background: #FCB100;
}

@media screen and (max-width: 767px) {
  .worries_detail ul {
    flex-wrap: wrap;
    gap: 40px;
  }

  .worries_detail ul li {
    font-size: 16px;
    width: 100%;
  }

  .worries_detail ul li span {
    border-bottom: solid 3px #90B821;
    display: inline-block;
  }

}

.worries_solution {
  text-align: center;
  margin-top: 3rem;
  background: #009DE1;
  color: #fff;
}

.worries_solution p {
  font-size: min(2.3vw, 38px);
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .worries_solution p {
    font-size: 20px;
  }
}

.compare {
  padding: 5rem 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: number 0;
}

@media screen and (max-width: 1100px) {
  .compare {
    padding-bottom: 2rem;
  }
}

.compare_box {
  position: relative;
  padding-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .compare_box {
    padding-bottom: 0;
  }
}

.compare_box::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Roboto", sans-serif;
  text-orientation: sideways;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 30px;
  color: #003375;
  font-size: min(5vw, 50px);
}

@media screen and (max-width: 1100px) {
  .compare_box::before {
    font-size: 40px;
    top: -3px;
  }
}

.compare_title {
  width: 100%;
  border-top: solid 1px #003375;
  position: relative;
  padding: 20px 0 0 80px;
  color: #003375;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1100px) {
  .compare_title {
    padding-left: 60px;
  }
}

.compare_title h2 {
  font-size: min(3vw, 36px);
}

@media screen and (max-width: 1100px) {
  .compare_title h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.compare_detail {
  display: flex;
  max-width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
}

@media screen and (max-width: 1100px) {
  .compare_detail {
    flex-direction: column;
    max-width: 100%;
  }
}

.compare_task {
  position: relative;
  background: #D9D9D9;
  width: 100%;
  border-radius: 10px;
  font-size: 20px;
  padding: 30px 30px 20px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .compare_task {
    font-size: 16px;
    padding-bottom: 60px;
  }
}

.compare_task-img {
  position: absolute;
  bottom: 0;
  right: 6%;
  width: 140px;
}

@media screen and (max-width: 1100px) {
  .compare_task-img {
    right: 3%;
  }
}

@media screen and (max-width: 767px) {
  .compare_task-img {
    width: 70px;
    right: 2%;
  }
}

.compare_task ul {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .compare_task ul {
    padding-left: 10px;
  }
}

.compare_task ul li {
  list-style: disc;
}

.compare_task ul li span {
  color: #E88080;
}

@media screen and (max-width: 767px) {
  .compare_task ul li br {
    display: none;
  }
}

.compare_task::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 12px solid #D9D9D9;
  border-bottom: 0;
}

.compare_task h3 {
  border: solid 1px #003375;
  background: #fff;
  position: absolute;
  top: -20px;
  left: 20px;
  display: inline-block;
  padding: 0 20px;
  color: #003375;
}

.compare_solution {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .compare_solution {
    flex-direction: column;
    gap: 30px;
  }
}

.compare_solution h3 {
  border: solid 1px #E88080;
  background: #E88080;
  position: absolute;
  top: -20px;
  left: 20px;
  display: inline-block;
  padding: 0 20px;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
}

.compare_solution p {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .compare_solution p {
    font-size: 16px;
  }
}

.compare_solution-text {
  padding: 20px 0 20px 20px;
  width: 70%;
}

.compare_solution-text h4 {
  font-size: 24px;
  color: #E88080;
  margin-bottom: 10px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .compare_solution-text h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .compare_solution-text {
    width: 100%;
    padding: 0;
  }
}

.compare_solution_detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: solid 1px #D9D9D9;
  border-radius: 10px;
  padding: 20px 30px 20px 20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .compare_solution_detail {
    flex-direction: column;
    padding-top: 68px;
  }
}

.compare_solution_detail picture,
.compare_solution_detail .picture {
  width: 30%;
  flex: 1;
}

.compare_solution_detail .picture {
  margin: 20px 0;
}

.compare_solution_detail .picture .iqbid-img_02 {
  width: 100%;
  padding-top: 73.25%;
}

@media screen and (max-width: 767px) {

  .compare_solution_detail picture,
  .compare_solution_detail .picture {
    width: 100%;
  }
}

.compare_solution_plus {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  border: solid 1px #E88080;
  border-radius: 20px;
  padding: 20px 30px 20px 20px;
  flex-wrap: wrap;
}

.compare_solution_plustit {
  position: absolute;
  top: -25px;
  left: 50px;
  background: #fff;
  color: #E88080;
  font-weight: bold;
  font-size: 20px;
  padding: 5px 20px;
}

@media screen and (max-width: 767px) {
  .compare_solution_plustit {
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    text-align: center;
  }

  .compare_solution_plustit p {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .compare_solution_plus {
    flex-direction: column;
  }
}

.compare_solution_plus picture,
.compare_solution_plus .picture {
  position: relative;
  width: 30%;
}

@media screen and (max-width: 767px) {

  .compare_solution_plus picture,
  .compare_solution_plus .picture {
    width: 100%;
  }
}

.compare_solution_plus::after {
  position: absolute;
  content: "";
  left: 20px;
  top: -20px;
  width: 40px;
  height: 40px;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/icon_plus.svg) no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .compare_solution_plus::after {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }
}

.compare_solution_plus h4 {
  font-size: 24px;
  color: #E88080;
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .compare_solution_plus h4 {
    font-size: 18px;
  }
}

.compare_result h4 {
  font-size: 24px;
  color: #009DE1;
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .compare_result h4 {
    font-size: 20px;
    padding-left: 40px;
  }
}

.compare_result h4::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 40px;
  height: 100%;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/explain_arrow_right.svg) no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .compare_result h4::before {
    top: 5px;
    width: 35px;
  }
}

.compare_result ul {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .compare_result ul {
    padding: 0;
  }
}

.compare_result ul li {
  font-size: 18px;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 30px;
  width: 100%;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .compare_result ul li {
    font-size: 16px;
    gap: 15px;
  }

  .compare_result ul li img {
    width: 60px;
  }
}

.compare_result ul li span {
  display: block;
  padding: 20px;
  background-color: #C9EBFF;
  border-radius: 20px;
  position: relative;
}

.compare_result ul li span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 12px solid #C9EBFF;
  border-left: 0;
}

.compare_result ul li:last-child {
  flex-direction: row-reverse;
}

.compare_result ul li:last-child span::before {
  right: initial;
  left: 100%;
  transform: scale(-1, 1);
}

.compare_btn {
  max-width: 400px;
}

.compare_btn button,
.compare_btn a {
  border: solid 1px #E88080;
  border-radius: 30px;
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  color: #E88080;
  font-size: 20px;
  appearance: none;
  background: #fff;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {

  .compare_btn button,
  .compare_btn a {
    font-size: 16px;
  }
}

@media (hover: hover) {

  .compare_btn button:hover,
  .compare_btn a:hover {
    background: #E88080;
    color: #fff;
  }
}

.modal {
  border: none;
  max-width: 650px;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.modal_wrap {
  background: #fff;
  padding: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .modal_wrap {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .modal {
    margin: 20% 20px 0;
  }
}

.modal_title p {
  font-size: 24px;
  color: #009DE1;
  font-weight: bold;
}

.modal_title p span {
  font-size: 16px;
  display: block;
  color: #009DE1;
}

.modal_text p {
  font-size: 16px;
}

.modal_close {
  position: absolute;
  top: 0px;
  right: 10px;
  appearance: none;
  color: #003375;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 30px;
  width: 20px;
  height: 20px;
  outline: none;
}

@media screen and (max-width: 767px) {
  .modal_close {
    top: -5px;
  }
}

._strong {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #FFEC00;
  text-underline-offset: 4px;
}

.fixed {
  overflow: hidden;
}

.mv {
  position: relative;
  max-width: 1500px;
  margin-inline: auto;
  overflow: hidden;
}

.mv_title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 100%;
  width: 80%;
}

@media screen and (max-width: 1100px) {
  .mv_title {
    top: 35%;
    width: 88%;
  }
}

@media screen and (max-width: 767px) {
  .mv_title {
    top: 370px;
    width: 88%;
  }
}

.mv_title h1 {
  color: #fff;
  display: inline !important;
  font-size: min(3.5vw, 38px);
  line-height: 2;
  position: relative;
  letter-spacing: 0.2px;
}

.mv_title h1 .bgline {
  background: #003375;
  padding: 4px 15px 8px 15px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: lefttoshow 0.5s ease-in forwards;
}

.mv_title h1 .bgline:last-child {
  animation-delay: 0.4s;
}

@media screen and (max-width: 767px) {
  .mv_title h1 .bgline {
    padding: 4px 8px 8px 10px;
  }
}

@media screen and (max-width: 767px) {
  .mv_title h1 {
    font-size: 23px;
    line-height: 2.2;
  }
}

@media (max-width: 410px) {
  .mv_title h1 {
    font-size: 19px;
  }
}

.mv_title h1 .font_small {
  font-size: min(2.5vw, 30px);
}

@media screen and (max-width: 767px) {
  .mv_title h1 .font_small {
    font-size: 18px;
  }
}

.mv_title h1 .font_small.sp_font {
  font-size: min(3.5vw, 41px);
}

@media screen and (max-width: 767px) {
  .mv_title h1 .font_small.sp_font {
    font-size: 23px;
    margin: 0 -5px;
  }
}

.mv_title p {
  font-size: min(2.2vw, 20px);
  margin-top: 20px;
  line-height: 1.7;
  color: #003375;
  transform: translateY(10px);
  opacity: 0;
  animation: fadeInUp 0.3s ease-in forwards;
  animation-delay: 0.6s;
}

@media screen and (max-width: 767px) {
  .mv_title p {
    font-size: 16px;
  }
}

.mv_bg {
  position: relative;
}

@media screen and (max-width: 1100px) {
  .mv_bg img {
    height: 600px;
    width: auto;
    max-width: initial;
    position: relative;
    transform: translateX(-50%);
    left: 50%;
  }
}

@media screen and (max-width: 767px) {
  .mv_bg img {
    height: 730px;
  }
}

.mv_button {
  max-width: 640px;
  margin-top: 20px;
  transform: translateY(10px);
  opacity: 0;
  animation: fadeInUp 0.3s ease-in forwards;
  animation-delay: 0.8s;
}

@media screen and (max-width: 767px) {
  .mv_button {
    width: 100%;
    max-width: initial;
  }
}

@keyframes lefttoshow {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.lead {
  background: #003375;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #FFF;
  text-align: center;
  padding: 5rem 20px 5rem;
}

@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }
}

.lead_title h2 {
  font-size: min(2.3vw, 38px)
}

.lead_title h2 small {
  font-size: 2.3vw
}

.lead_title h2 span {
  font-size: min(2.3vw, 24px)
}

.lead_title h2 img {
  display: inline-block;
  height: min(2vw, 30px)
}

.lead_title h2 sub {
  position: relative;
  margin: 0 .25em;
  bottom: -0.2em;
  font-weight: 400
}

@media screen and (max-width: 767px) {
  .lead_title h2 {
    font-size: 32px;
    margin-left: -20px;
    margin-bottom: 20px
  }

  .lead_title h2 img {
    height: min(6.5vw, 24px)
  }

  .lead_title h2 span {
    font-size: 20px
  }
}

.lead p {
  font-size: min(2.2vw, 20px);
  line-height: 2;
}

.lead p span {
  font-size: min(2.3vw, 38px);
  display: block;
}

@media screen and (max-width: 767px) {
  .lead p span {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .lead p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.lead_zuhan {
  margin-top: 40px;
}

.explain {
  background: #003375;
  padding: 0 20px 8rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .explain {
    padding-bottom: 2rem;
  }
}

.explain_wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .explain_wrap {
    display: block;
  }
}

.explain_box {
  position: relative;
}

.explain_box::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 93%;
  width: 60px;
  height: 100%;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/explain_arrow_right.svg) no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .explain_box::before {
    left: 50%;
    top: calc(100% - 2px);
    width: 30px;
    margin-left: -15px;
    transform: rotate(90deg);
    height: auto;
    padding-top: 7%;
  }
}

.explain_box:last-child::before {
  display: none;
}

@media screen and (max-width: 767px) {
  .explain_box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
}

.explain img {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .explain img {
    width: 45%;
  }
}

.explain_detail {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .explain_detail {
    height: auto;
    width: 55%;
    text-align: left;
    align-items: flex-start;
    padding-left: 20px;
  }
}

.explain_detail h2 {
  font-size: min(2.4vw, 44px);
  margin-bottom: 20px;
  color: #009DE1;
}

@media screen and (max-width: 767px) {
  .explain_detail h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

.explain_detail p {
  font-size: min(2.2vw, 18px);
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .explain_detail p {
    font-size: 13px;
  }

  .explain_detail p br {
    display: none;
  }
}

.select {
  display: flex;
  justify-content: center;
  padding: 5rem 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .select {
    padding: 4rem 20px 1rem;
  }
}

.select_title {
  text-align: center;
  margin-bottom: 30px;
}

.select_title h3 {
  font-size: min(2.7vw, 24px);
  color: #003375;
  display: inline-block;
  position: relative;
  line-height: 1.5;
  padding: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .select_title h3 {
    font-size: 18px;
  }
}

.select_title h3::before,
.select_title h3::after {
  content: "";
  position: absolute;
  top: 0;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/select_title_bg.svg) no-repeat top;
  height: 100%;
  width: 40px;
  background-size: auto 100%;
}

.select_title h3::before {
  right: calc(100% + 20px);
}

@media screen and (max-width: 767px) {
  .select_title h3::before {
    right: calc(100% + 5px);
  }
}

.select_title h3::after {
  left: calc(100% + 15px);
  transform: scale(-1, 1);
}

@media screen and (max-width: 767px) {
  .select_title h3::after {
    left: calc(100% + 5px);
  }
}

.select_title h3 span {
  display: block;
  background: #003375;
  color: #fff;
  font-size: min(3.1vw, 30px);
  padding: 0 10px 2px 15px;
}

@media screen and (max-width: 767px) {
  .select_title h3 span {
    font-size: 20px;
  }
}

.select_graph {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 50px;
}

@media screen and (max-width: 1100px) {
  .select_graph {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .select_graph {
    display: block;
  }
}

.select_graph figure {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .select_graph figure {
    margin-bottom: 30px;
  }
}

.select_graph figure figcaption {
  font-size: min(2vw, 18px);
  font-weight: 800;
  margin-top: 20px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .select_graph figure figcaption {
    font-size: 16px;
    margin-top: 10px;
  }
}

.merit {
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 8rem;
}

@media screen and (max-width: 1100px) {
  .merit {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .merit {
    margin-bottom: 5rem;
  }
}

.merit_title {
  border-top: solid 1px #003375;
  position: relative;
  padding: 20px 0 80px 50px;
  color: #003375;
}

@media screen and (max-width: 767px) {
  .merit_title {
    padding-left: 30px;
    padding-bottom: 50px;
  }
}

.merit_title h3 {
  font-size: min(3vw, 36px);
  margin-left: -20px;
}

@media screen and (max-width: 767px) {
  .merit_title h3 {
    font-size: 24px;
  }
}

.merit_title p {
  font-size: min(2.2vw, 20px);
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .merit_title p {
    font-size: 15px;
  }
}

.merit_title span {
  position: absolute;
  transform: rotate(90deg);
  transform-origin: left top;
  left: 30px;
  top: 20px;
  font-size: min(3vw, 30px);
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .merit_title span {
    left: 15px;
    top: 23px;
    font-size: 16px;
  }
}

.merit_list {
  margin-left: 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px 20px;
  counter-reset: listnum;
}

@media screen and (max-width: 1100px) {
  .merit_list {
    gap: 70px 20px;
  }
}

@media screen and (max-width: 767px) {
  .merit_list {
    display: block;
    margin-left: 0;
    padding: 0 20px;
  }
}

.merit_list li {
  width: calc(32% - 20px);
  position: relative;
}

@media screen and (max-width: 1100px) {
  .merit_list li {
    width: 31%;
  }
}

@media screen and (max-width: 767px) {
  .merit_list li {
    width: 100%;
    margin-bottom: 60px;
  }
}

.merit_list li::before {
  position: absolute;
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero);
  font-family: "Roboto", sans-serif;
  color: #003375;
  font-size: 26px;
  top: 0;
  left: 0;
  letter-spacing: 1px;
  padding-right: 10px;
  border-right: solid 1px #003375;
}

@media screen and (max-width: 767px) {
  .merit_list li::before {
    font-size: 24px;
  }
}

.merit_list li img {
  width: 100%;
}

.merit_list li h4 {
  font-size: min(2.4vw, 24px);
  margin-bottom: 20px;
  color: #003375;
  padding-left: 55px;
}

@media screen and (max-width: 767px) {
  .merit_list li h4 {
    font-size: 22px;
  }
}

.merit_list li p {
  margin-top: 9px;
  font-size: min(2vw, 18px);
  line-height: 1.8;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .merit_list li p {
    font-size: 16px;
  }
}

.merit_list li p span {
  font-weight: 800;
  color: #000;
  text-decoration: underline;
  text-decoration-color: #ffd677;
  text-decoration-thickness: 3px;
}

.voice {
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/voice_bg.webp) no-repeat center top;
  background-size: cover;
  overflow: hidden;
  padding: 5rem 0;
}

@media screen and (max-width: 767px) {
  .voice {
    padding: 5rem 0 3rem;
  }
}

.voice_title {
  color: #003375;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.voice_title h3 {
  background: #fff;
  padding: 0 15px 3px 15px;
  font-size: min(2.8vw, 30px);
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .voice_title h3 {
    font-size: 26px;
    padding-top: 2px;
  }
}

.voice_title h3::after {
  position: absolute;
  content: "";
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/voice_deco.svg) no-repeat top left;
  width: 15px;
  height: 6px;
  top: 100%;
  right: 10px;
}

.voice_title p {
  font-size: min(2.4vw, 24px);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .voice_title p {
    font-size: 20px;
  }
}

.voice_box {
  background: #fff;
  border-radius: 10px;
  min-height: 180px;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .voice_box {
    min-height: 140px;
  }
}

@media screen and (max-width: 767px) {
  .voice_box {
    min-height: auto;
  }
}

.voice_box p {
  padding: 15px 20px 13px 20px;
  font-size: min(2.2vw, 18px);
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .voice_box p {
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 15px;
  }
}

.voice_box::after {
  position: absolute;
  content: "";
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/voice_deco.svg) no-repeat top left;
  width: 20px;
  height: 12px;
  top: 100%;
  right: 10px;
}

.swiper-wrapper {
  padding-bottom: 60px;
}

@media screen and (max-width: 1100px) {
  .swiper-wrapper {
    padding-bottom: 80px;
  }
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 10px !important;
}

@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}

.swiper-pagination-bullet-active {
  background: #003375;
}

.flow {
  background: #F5F5F5;
  padding: 5rem 20px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .flow {
    padding: 4rem 20px 3rem;
  }
}

.flow h3 {
  text-align: center;
  font-size: min(3vw, 30px);
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .flow h3 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

.flow_list {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  counter-reset: listnum;
}

@media screen and (max-width: 767px) {
  .flow_list {
    display: block;
    max-width: 67%;
  }
}

.flow_list li {
  width: 16.6666666667%;
  font-size: min(1.8vw, 20px);
  text-align: center;
  line-height: 1.6;
  position: relative;
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .flow_list li {
    width: 100%;
    padding: 0 0 0 80px;
    font-size: 16px;
    text-align: left;
    margin-bottom: 30px;
    min-height: 52px;
    display: flex;
    align-items: center;
  }
}

.flow_list li::before {
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero);
  position: absolute;
  color: #fff;
  font-family: "Roboto", sans-serif;
  background: #003375;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 26px;
  top: -30px;
  left: 50%;
  letter-spacing: 1px;
  padding-top: 2px;
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .flow_list li::before {
    left: 0;
    top: 0;
    transform: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}

.flow_list li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 12px;
  background: #003375;
  left: 50%;
  top: -5px;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .flow_list li::after {
    left: -5px;
    transform: rotate(90deg);
    width: 60px;
    height: 8px;
    top: 100%;
  }
}

.flow_list li:last-child::after {
  display: none;
}

.flow_list li:nth-child(1)::after {
  transition-delay: 0.2s;
}

@media screen and (max-width: 767px) {
  .flow_list li:nth-child(1)::after {
    transition-delay: 1s;
  }
}

.flow_list li:nth-child(2)::after {
  transition-delay: 0.4s;
}

@media screen and (max-width: 767px) {
  .flow_list li:nth-child(2)::after {
    transition-delay: 2s;
  }
}

.flow_list li:nth-child(3)::after {
  transition-delay: 0.6s;
}

@media screen and (max-width: 767px) {
  .flow_list li:nth-child(3)::after {
    transition-delay: 3s;
  }
}

.flow_list li:nth-child(4)::after {
  transition-delay: 0.8s;
}

@media screen and (max-width: 767px) {
  .flow_list li:nth-child(4)::after {
    transition-delay: 4s;
  }
}

.flow_list li:nth-child(5)::after {
  transition-delay: 1s;
}

@media screen and (max-width: 767px) {
  .flow_list li:nth-child(5)::after {
    transition-delay: 5s;
  }
}

.flow_list li:nth-child(6)::after {
  transition-delay: 1.2s;
}

@media screen and (max-width: 767px) {
  .flow_list li:nth-child(6)::after {
    transition-delay: 6s;
  }
}

.flow_list.js-active li:nth-child(1)::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .flow_list.js-active li:nth-child(1)::after {
    width: 60px;
  }
}

.flow_list.js-active li:nth-child(2)::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .flow_list.js-active li:nth-child(2)::after {
    width: 60px;
  }
}

.flow_list.js-active li:nth-child(3)::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .flow_list.js-active li:nth-child(3)::after {
    width: 60px;
  }
}

.flow_list.js-active li:nth-child(4)::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .flow_list.js-active li:nth-child(4)::after {
    width: 60px;
  }
}

.flow_list.js-active li:nth-child(5)::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .flow_list.js-active li:nth-child(5)::after {
    width: 60px;
  }
}

.flow_list.js-active li:nth-child(6)::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .flow_list.js-active li:nth-child(6)::after {
    width: 60px;
  }
}

.faq {
  padding: 5rem 20px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 4rem 20px;
  }
}

.faq h3 {
  text-align: center;
  font-size: min(3vw, 30px);
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .faq h3 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

.faq details {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.faq details summary {
  background: #003375;
  color: #fff;
  font-size: min(2.4vw, 24px);
  padding: 20px 50px 20px 30px;
  border-radius: 10px 10px 0 0;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .faq details summary {
    font-size: 16px;
    padding: 20px;
  }
}

.faq_answer {
  background: #F5F5F5;
  padding: 20px 30px;
}

.faq_answer p {
  font-size: min(2.2vw, 20px);
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .faq_answer p {
    font-size: 16px;
  }
}

.service {
  padding: 8rem 20px;
  background: #003375;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .service {
    padding: 4rem 20px;
  }
}

.service_detail {
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
}

.service_detail h3 {
  font-size: min(2vw, 38px);
  margin: 30px 0;
}

@media screen and (max-width: 1100px) {
  .service_detail h3 {
    font-size: 24px;
  }
}

.service_detail p {
  font-size: min(2.2vw, 20px);
  line-height: 1.8;
}

@media screen and (max-width: 1100px) {
  .service_detail p {
    font-size: 16px;
  }
}

.service_list {
  margin-inline: auto;
  max-width: 1070px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 30px;
}

@media screen and (max-width: 767px) {
  .service_list {
    display: block;
  }
}

.service_list li {
  width: calc(50% - 20px);
  background-color: #fff;
  border-radius: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .service_list li {
    width: 100%;
    margin-bottom: 30px;
  }
}

.service_list li img {
  width: 100%;
}

.service_list li a {
  transition: 0.3s;
  color: #141416;
  display: block;
}

@media (hover: hover) {
  .service_list li a:hover {
    box-shadow: 2px 2px 15px -5px #fff;
    opacity: 0.8;
  }

  .service_list li a:hover .service_btn {
    background: #EFA61F;
  }
}

.service_text {
  padding: 40px 40px 35px;
}

@media screen and (max-width: 767px) {
  .service_text {
    padding: 20px 20px 15px;
  }
}

.service_text h4 {
  font-size: min(3vw, 28px);
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .service_text h4 {
    font-size: 24px;
  }
}

.service_text p {
  font-size: min(2vw, 18px);
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .service_text p {
    font-size: 16px;
  }
}

.service_img {
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 1100px) {
  .service_img {
    height: 90vh;
  }
}

@media screen and (max-width: 767px) {
  .service_img {
    height: 65vh;
  }
}

.service_img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: initial;
}

@media screen and (max-width: 1100px) {
  .service_img img {
    height: 100%;
    width: auto;
  }
}

.service_btn {
  background: #009DE1;
  color: #fff;
  transition: 0.3s;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  margin-top: 20px;
  position: relative;
}

.service_btn p {
  line-height: 1;
}

.service_btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/icon_jump.svg) no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.cvarea {
  width: 68.75%;
  max-width: 1320px;
  margin: 0 auto;
  background: #FFFDE9;
  border-radius: 18px;
  padding: 4% 20px;
  border: solid 3px #002D48;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .cvarea {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .cvarea {
    padding: 15% 0 8%;
  }
}

.cvarea::before {
  content: "";
  left: 0;
  width: 12%;
  height: 100%;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/cvarea_arrow.svg) no-repeat center left;
  top: 50%;
  position: absolute;
  background-size: 100%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .cvarea::before {
    left: 50%;
    background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/cvarea_arrow-sp.svg) no-repeat center left;
    transform: translateX(-50%);
    width: 27px;
    height: 36px;
    background-size: 100%;
    top: 0;
  }
}

.cvarea_text {
  font-size: clamp(1.313rem, 1.262rem + 0.25vw, 1.563rem);
  font-weight: bold;
  color: #003375;
  letter-spacing: 1.8px;
  margin-bottom: 3%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cvarea_text {
    font-size: 15px;
  }
}

.cvarea_btn {
  width: 35%;
}

@media screen and (max-width: 767px) {
  .cvarea_btn {
    width: 80%;
  }
}

.cvarea_btn .cv_btn {
  width: 100%;
  display: block;
  text-align: center;
  font-size: clamp(0.938rem, 0.874rem + 0.31vw, 1.25rem);
  padding: 5% 30px 5% 15px;
}

.cvarea_img {
  width: 50%;
  margin: 1% 0 3%;
}

@media screen and (max-width: 767px) {
  .cvarea_img {
    width: 80%;
    margin-bottom: 25px;
  }
}

.cta {
  background: #003375;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 20px;
}

.cta p {
  font-size: min(2.4vw, 24px);
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cta p {
    font-size: 18px;
  }
}

.cta_btn {
  max-width: 400px;
  margin-top: 3rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .cta_btn {
    width: 100%;
  }
}

.contact {
  padding-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 0;
  }
}

.contact::before {
  content: "";
  width: 100%;
  height: calc(100% - 100px);
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.contact h3 {
  text-align: center;
  font-size: min(3vw, 30px);
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 5%;
  }
}

.contact_form {
  padding: 80px 0 100px;
  margin: 0 auto;
  background: #fff;
  max-width: 900px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 1100px) {
  .contact_form {
    max-width: calc(100% - 40px);
    margin: -200px auto 0;
    padding: 40px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .contact_form {
    padding: 40px 0 100px;
  }
}

.iqbid {
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/iqbid-bg-top.svg) no-repeat top right, url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/iqbid-bg-bottom.svg) no-repeat bottom left;
  background-size: 100%;
  position: relative;
  padding: 5rem 20px;
}

@media screen and (max-width: 767px) {
  .iqbid {
    padding: 4rem 20px 3rem;
  }
}

.iqbid::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  clip-path: polygon(50% 0%, 100% 20%, 100% 81%, 76% 100%, 0 100%, 0% 60%, 0 0);
}

.iqbid-title {
  text-align: center;
  position: relative;
}

.iqbid-title h3 {
  font-size: min(2.2vw, 20px);
  background: #003375;
  color: #fff;
  display: inline-block;
  line-height: 0.8;
  padding: 15px 30px;
  border-radius: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .iqbid-title h3 {
    font-size: 20px;
  }
}

.iqbid-title h3::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 12px solid #003375;
  border-bottom: 0;
}

.iqbid-title p {
  font-size: min(2.2vw, 20px);
  margin-top: 30px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .iqbid-title p {
    font-size: 25px;
  }

  .iqbid-title p br {
    display: none;
  }
}

.iqbid-title p span {
  font-size: min(2.3vw, 38px);
  color: #003375;
}

@media screen and (max-width: 767px) {
  .iqbid-title p span {
    font-size: 28px;
  }
}

.iqbid-detail {
  position: relative;
  max-width: 900px;
  margin: 50px auto 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .iqbid-detail {
    flex-direction: column;
  }
}

.iqbid-detail h4 {
  font-size: min(2.2vw, 20px);
  line-height: 1.2;
  padding-top: 5px;
}

@media screen and (max-width: 767px) {
  .iqbid-detail h4 {
    font-size: 20px;
    text-align: center;
  }
}

.iqbid-detail h4 span {
  display: block;
  font-size: min(4.2vw, 80px);
  color: #009DE1;
}

@media screen and (max-width: 767px) {
  .iqbid-detail h4 span {
    font-size: 60px;
  }
}

.iqbid-detail p {
  font-size: 18px;
  line-height: 1.8;
}

.iqbid-img {
  position: relative;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .iqbid-img {
    justify-content: center;
  }
}

.iqbid-img_01 {
  width: 45%;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/iqbid_img01.svg) no-repeat;
  background-size: 100%;
  padding-top: 30%;
  margin-top: 100px;
  animation: iqbid01 2s infinite steps(2);
}

@media screen and (max-width: 767px) {
  .iqbid-img_01 {
    width: 50%;
    padding-top: 33.3%;
    animation: none;
  }
}

.iqbid-img_02 {
  width: 45%;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/iqbid_img02.svg) no-repeat;
  background-size: 100%;
  padding-top: 32.95%;
  animation: iqbid01 2s infinite steps(2);
}

@media screen and (max-width: 767px) {
  .iqbid-img_02 {
    width: 50%;
    padding-top: 36.6%;
    animation: none;
  }
}

@keyframes iqbid01 {
  to {
    background-position-y: 100%;
  }
}

.case {
  background-color: #F5F5F5;
  padding: 5rem 20px;
}

.case .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 90px;
  position: relative;
}

.case .inner .object {
  position: absolute;
  right: 0;
  bottom: 0;
}

.case .case_ttl {
  font-size: 30px;
  text-align: center;
  background-color: #003375;
  position: relative;
  padding: 18px 0;
  color: #fff;
}

.case .case_ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 20px solid #003375;
  border-bottom: 0;
}

.case .case_ttl span {
  padding: 0 90px;
  position: relative;
}

.case .case_ttl span::before {
  content: "";
  position: absolute;
  background: url(https://244588604.fs1.hubspotusercontent-na2.net/hubfs/244588604/lp/ope-mane/assets/img/case_ttl.svg) no-repeat center center;
  background-size: cover;
  width: 80px;
  height: 80px;
  bottom: -10px;
  left: 0;
}

.case .case_box {
  margin-top: 50px;
  display: flex;
  padding: 40px 60px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.case .case_box+.case_box {
  margin-top: 30px;
}

.case .case_box .case_detail {
  flex: 1;
  margin-left: 60px;
}

.case .case_box .case_detail h4 {
  font-size: 24px;
  font-weight: bold;
  color: #E88080;
}

.case .case_box .case_detail p {
  font-size: 20px;
  font-weight: normal;
}

.case .case_box .case_detail p.company_name {
  padding: 12px 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #707070;
  color: #9D9D9D;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .case {
    padding: 4rem 20px;
  }

  .case .inner {
    padding-bottom: 0;
  }

  .case .case_ttl {
    font-size: 18px;
    padding: 40px 10px 20px;
  }

  .case .case_ttl span {
    padding: 0;
    display: block;
    width: 100%;
  }

  .case .case_ttl span::before {
    bottom: unset;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
  }

  .case .case_box {
    padding: 40px 20px;
    display: block;
  }

  .case .case_box img {
    width: 140px;
    margin: 0 auto 30px;
  }

  .case .case_box .case_detail {
    margin-left: 0;
    flex: unset;
  }

  .case .case_box .case_detail h4 {
    font-size: 18px;
  }

  .case .case_box .case_detail p {
    font-size: 16px;
  }

  .case .case_box .case_detail p.company_name {
    padding: 8px 0 12px;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .case .inner p {
    font-size: 16px;
  }

  .case .inner .object {
    position: unset;
    max-width: 120px;
    margin: 20px 0 0 auto;
  }
}