/* 全体共通 */
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
}

/* 各セクションタイトル */
.service,
.reason,
.faq {
  padding-top: 3rem;
}

.section_title {
  text-align: center;
  position: relative;
}

.section_title::before {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-10em);
}

.section_title::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(6em);
}

.title {
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
}

.emphasis {
  font-size: 1.8rem;
  font-weight: 600;
}

@media (min-width: 601px) {
  .title {
    font-size: 1.6rem;
  }

  .emphasis {
    font-size: 2.8rem;
  }
  .section_title::before {
    width: 150px;
    transform: translateX(-20em);
  }

  .section_title::after {
    width: 150px;
    transform: translateX(10em);
  }
}

@media (min-width: 1001px) {
  .service,
  .reason,
  .faq {
    padding-top: 6rem;
  }

  .title {
    font-size: 2.8rem;
  }

  .pc_none {
    display: none;
  }

  .section_title::before {
    width: 150px;
    transform: translateX(-40em);
  }

  .section_title::after {
    width: 150px;
    transform: translateX(30em);
  }

  .title02 {
    position: relative;
  }

  .title02::before {
    content: "";
    width: 310px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(11em);
  }

  .title02::after {
    content: "";
    width: 310px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-31em);
  }
}

/* header */
.logo_pc-none {
  max-width: 170px;
  position: absolute;
  top: 5px;
  left: 5%;
}

.logo_sp-none {
  display: none;
}

.header_pc-nav {
  display: none;
}

.hum_btn {
  position: fixed;
  top: 5px;
  right: 5%;
  background-color: #08a1c1;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 999;
}

.hum_btn span {
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}

.hum_btn span::before {
  content: "";
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  top: -10px;
  left: 0;
  transition: all 0.4s;
}

.hum_btn span::after {
  content: "";
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  transition: all 0.4s;
}

/* ×に変化 */
.hum_btn.active {
  background-color: #fff;
}

.hum_btn.active span {
  background-color: #fff;
}

.hum_btn.active span::before {
  transform: translateY(-6px) rotate(-45deg);
  top: 5px;
  width: 25px;
  left: 0;
  background-color: #08a1c1;
}

.hum_btn.active span::after {
  transform: translateY(6px) rotate(45deg);
  top: -7px;
  width: 25px;
  left: 0;
  background-color: #08a1c1;
}

.nav_title span {
  color: #08a1c1;
  font-size: 1.2rem;
  font-weight: 500;
}

.nav_title-emphasis {
  margin-top: 0.7rem;
  margin-bottom: 3rem;
}

.nav_title-emphasis span {
  color: #fff;
  background-color: #08a1c1;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
}

#header_sp-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  padding: 6rem 5rem;
  gap: 3rem;
}

.nav_link {
  border-bottom: solid 1px #333;
  padding-bottom: 1rem;
  font-weight: 600;
  position: relative;
  display: block;
}

.nav_link::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #08a1c1;
  position: absolute;
  top: 30%;
  right: 10px;
  transform: rotate(45deg);
}

.nav_link::after {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #08a1c1;
  position: absolute;
  top: 45%;
  right: 10px;
  transform: rotate(-45deg);
}

.sp_inquiry {
  background: linear-gradient(#f280aa, #d62265);
  color: #fff;
  padding: 5px 35px;
  border-radius: 8px;
  display: inline-block;
}

.sp_inquiry a::before {
  content: "";
  background-color: #fff;
}

.hum_form {
  background-color: #d5eef2;
  border-radius: 11px;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
}

.hum_form span {
  font-size: 1.6rem;
}

.hum_area_choice {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin: 1.5rem 0 1rem;
}

.area {
  background: linear-gradient(90deg, #f89d00, #ff6600);
  padding: 0.5rem 2rem;
  color: #fff;
  border-radius: 4px;
  font-size: 1.6rem;
}

.hum_form::after {
  content: url(../images/form_img.png);
  position: absolute;
  top: -10px;
  right: 10px;
  transform: scale(0.5);
}

/* アクティブになったエリア */
#header_sp-menu.panelactive {
  right: 0;
}

@media (min-width: 601px) {
  .logo_pc-none {
    display: none;
  }

  .logo_sp-none {
    display: block;
  }

  .logo_sp-none {
    max-width: 170px;
    object-fit: contain;
  }

  .header_sp-nav {
    display: none;
  }

  .header_pc-nav {
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
  }

  .header_pc-wrap {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background-color: rgb(102, 129, 164, 1);
    height: 80px;
    align-items: center;
    border-radius: 0 0 26px 26px;
    padding: 0 20px;
  }

  .pc_global-menu a {
    margin-right: 20px;
    color: #fff;
    font-weight: 600;
  }

  .inquiry {
    background: linear-gradient(#f280aa, #d62265);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
  }
}

@media (min-width: 1001px) {
  .header_pc-wrap {
    max-width: 1200px;
    height: 90px;
    padding: 0 50px;
  }

  .pc_global-menu a {
    font-size: 2rem;
    margin-right: 40px;
  }

  .header_link:hover {
    opacity: 0.7;
  }

  .inquiry {
    padding: 5px 35px;
  }

  .inquiry:hover {
    box-shadow: 2px 6px 12px 0px rgba(0, 0, 0, 0.45);
    transition: 0.2s;
    transform: translateY(-3px);
    display: inline-block;
  }
}

/* KV */
.main {
  color: #fff;
  background-color: #fff;
}

.sp_logo {
  position: absolute;
  top: 10px;
  left: 20px;
}

.sp_logo img {
  max-width: 105px;
  position: relative;
}

.kv_img_bg {
  background-image: url(../images/kv_sp.jpg);
  background-size: cover;
}

.kv_img {
  text-align: center;
  padding-top: 30px;
}

.kv_img img {
  width: 100%;
  max-width: 300px;
}

.kv_wrap {
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.kv_logo p {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}

.kv_logo span {
  font-size: 1rem;
  background-color: #fff;
  color: #022f68;
  padding: 0.5rem 1rem;
  font-weight: 700;
}

.catch_copy {
  font-weight: 600;
  line-height: 1;
  margin: 2rem 0 1rem;
}

.catch_small {
  font-size: 1.8rem;
}

.medium {
  font-size: 2.3rem;
}

.large {
  font-size: 4.7rem;
  font-weight: 700;
  text-shadow: 6px 3px 6px rgb(42, 77, 122, 1);
}

.check_area {
  float: right;
  margin-top: -70px;
  color: #f8f800;
}

.check_mark {
  padding-left: 24px;
  position: relative;
}

.check_mark::before,
.check_mark::after {
  content: "";
  display: block;
  position: absolute;
}

.check_mark::before {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  border: 2px solid #f8f800;
  left: 4px;
  top: 6px;
}

.check_mark::after {
  border-left: 2px solid #f8f800;
  border-bottom: 2px solid #f8f800;
  width: 7px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 8px;
  top: 10px;
}

.search_area {
  /* 検索エリア */
  background-color: #08a1c1;
  border-radius: 9px;
  padding: 1rem;
  margin-top: 2rem;
  text-align: center;
  position: relative;
}

.search_area p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.search_area::after {
  content: url(../images/search_text_img.png);
  position: absolute;
  top: -15%;
  right: 13%;
  transform: scale(0.4);
}

.search_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.search_btn_area a {
  background: linear-gradient(to right, #f89d00, #ff6600);
  padding: 0.5rem 2rem;
  border-radius: 4px;
}

@media (min-width: 601px) {
  .sp_logo {
    display: none;
  }

  .kv_img {
    padding-top: 8rem;
  }

  .kv_img img {
    max-width: 520px;
  }

  .kv_logo p {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .kv_logo span {
    font-size: 1.6rem;
    padding: 0.5rem 2rem;
  }

  .check_area {
    margin-top: -50px;
    margin-right: 110px;
    font-size: 2rem;
  }

  .check_area_pc {
    display: flex;
    gap: 5rem;
    color: #f8f800;
    font-weight: 600;
    font-size: 2.3rem;
  }

  .catch_copy {
    margin: 2rem 0;
  }

  .check_mark {
    padding-left: 35px;
  }

  .check_mark::before {
    width: 25px;
    height: 25px;
    border-radius: 20px;
    left: 5px;
    top: 4px;
  }

  .check_mark::after {
    width: 13px;
    height: 8px;
    left: 10px;
    top: 10px;
  }

  .search_area {
    border-radius: 14px;
    padding: 1rem 0;
  }

  .search_area p {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }

  .search_area::after {
    top: -15%;
    right: 30%;
    transform: scale(0.6);
  }

  .search_btn_area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }

  .search_btn_area a {
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 600;
  }
}

@media (min-width: 1001px) {
  .kv_img_bg {
    background-image: url(../images/kv_pc.jpg);
  }

  .kv_img {
    text-align: right;
    padding-right: 50px;
  }

  .kv_img img {
    max-width: 720px;
  }

  .kv_logo p {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .kv_logo span {
    font-size: 2.8rem;
    padding: 0.5rem 2rem;
  }

  .kv_wrap {
    margin-top: -450px;
  }

  .catch_copy {
    margin: 3rem 0 7rem;
  }

  .catch_small {
    font-size: 3.2rem;
  }

  .large {
    font-size: 8rem;
  }

  .medium {
    font-size: 4rem;
  }

  .check_area {
    float: none;
  }

  .check_mark {
    padding-left: 45px;
    font-size: 3.2rem;
    font-weight: 600;
  }

  .check_mark::before {
    width: 35px;
    height: 35px;
    border-radius: 20px;
    border: 3px solid #f8f800;
    left: 4px;
    top: 10px;
  }

  .check_mark::after {
    width: 17px;
    height: 11px;
    border-left: 3px solid #f8f800;
    border-bottom: 3px solid #f8f800;
    left: 13px;
    top: 18px;
  }

  .search_area {
    /* 検索エリア */
    max-width: 700px;
    border-radius: 26px;
    padding: 2rem 0rem;
  }

  .search_area p {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }

  .search_area::after {
    top: 2%;
    right: 23%;
    transform: scale(1);
  }

  .search_btn_area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
  }

  .search_btn_area a {
    padding: 1rem 4rem;
    border-radius: 16px;
    font-size: 3.2rem;
  }

  .search_btn_area a:hover {
    transform: scale(1.1);
    transition: 0.2s;
  }
}

@media (min-width: 1601px) {
  .kv_img {
    padding-top: 6rem;
    padding-right: 20rem;
  }

  .kv_img img {
    max-width: 740px;
  }

  .kv_wrap {
    max-width: 1440px;
    margin-top: -560px;
    padding-bottom: 90px;
  }

  .check_area {
    display: flex;
    gap: 5rem;
  }

  .search_area {
    max-width: 780px;
    margin-top: 4rem;
  }

  .search_area p {
    font-size: 3.2rem;
  }
}

/* ロゴエリア */
.logo_area {
  padding: 15px 0;
}
.logo_text p {
  color: #c39942;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}

.logo_text p::before {
  content: url(../images/left_wing.png);
  position: absolute;
  top: 0;
  left: 25px;
}

.logo_text p::after {
  content: url(../images/right_wing.png);
  position: absolute;
  top: 0;
  right: 25px;
}

.loopSlide {
  position: relative;
  display: flex;
  overflow: hidden;

  ul {
    padding: 0;
    display: flex;

    flex-shrink: 0;
    &:first-child {
      animation: slide1 60s -30s linear infinite;
    }

    &:last-child {
      animation: slide2 60s linear infinite;
    }
  }

  li {
    display: inline-block;
    width: 100%;
    max-width: 100px;
    margin-right: 20px;
    list-style: none;
    text-align: center;

    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slide2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

@media (min-width: 601px) {
  .logo_area {
    position: relative;
  }

  .logo_text p::before {
    left: 25%;
  }

  .logo_text p::after {
    right: 25%;
  }

  /*
  \ /文字横のこれ
  .logo_area-text p::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #333;
    transform: rotate(60deg);
    top: 10%;
    left: 26%;
  }

  .logo_area-text p::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #333;
    transform: rotate(-60deg);
    top: 10%;
    right: 26%;
  } */
}

@media (min-width: 1001px) {
  .content img {
    max-width: 300px;
  }

  .logo_text p {
    display: none;
  }

  .logo_text img {
    max-width: 350px;
  }

  .logo_wrap {
    max-width: 1650px;
    margin-left: auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: #fff;
  }

  .wrap {
    gap: 3rem;
  }

  .loopSlide {
    ul {
      display: flex;
      flex-shrink: 0;

      &:first-child {
        animation: slide1 60s -30s linear infinite;
      }

      &:last-child {
        animation: slide2 60s linear infinite;
      }
    }

    li {
      display: inline-block;
      width: 100%;
      max-width: 300px;
      margin-right: 20px;
      list-style: none;
      text-align: center;

      img {
        display: block;
        width: 100%;
        height: auto;
      }
    }
  }
}

/* フォーム　下追従 */
.floating_form {
  background-color: #fff;
  box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: 110px;
  position: fixed;
  bottom: -120px;
}

.fixed {
  position: fixed;
  bottom: 0;
  z-index: 99;
  transition: 0.4s;
}

.form_wrap {
  max-width: 90%;
  margin: 1rem auto;
  gap: 2rem;
  font-size: 1.4rem;
  text-align: center;
}

.form_wrap p {
  padding-right: 15px;
}

.form_wrap span {
  font-size: 1.6rem;
  font-weight: 600;
}

.area_choice-form {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1rem;
}

.area_choice-form::before {
  content: url(../images/form_img.png);
  position: absolute;
  top: -55px;
  right: 10px;
  transform: scale(0.4);
}

.area_choice-form a {
  background: linear-gradient(to right, #f89d00, #ff6600);
  color: #fff;
  padding: 0.3rem 2rem 0rem;
  height: 35px;
  box-shadow: 2px 2px 3px rgb(0, 0, 0, 0.16);
  border-radius: 2px;
  font-size: 1.8rem;
  font-weight: 600;
}

@media (min-width: 601px) {
  .form_wrap {
    gap: 5rem;
    font-size: 1.6rem;
  }

  .form_wrap span {
    font-size: 2rem;
  }

  .area_choice-form {
    gap: 3rem;
  }

  .area_choice-form a {
    padding: 0.5rem 4rem;
    height: 40px;
    border-radius: 4px;
  }

  .area_choice-form::before {
    top: -55px;
    left: auto;
    right: 130px;
    transform: scale(0.6);
  }
}

@media (min-width: 1001px) {
  .floating_form {
    background-color: #fff;
    box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.16);
    width: 100%;
    height: 120px;
    position: fixed;
    bottom: -120px;
  }

  .fixed {
    position: fixed;
    bottom: 0;
    z-index: 99;
    transition: 0.4s;
  }

  .form_wrap {
    max-width: 1200px;
    margin: 2rem auto;
    font-size: 2.3rem;
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    padding-left: 12.5rem;
  }

  .form_wrap span {
    font-size: 2.8rem;
  }

  .area_choice-form a {
    font-size: 2.3rem;
    padding: 1rem 4rem;
    font-weight: 600;
    height: 60px;
    border-radius: 4px;
  }

  .area_choice-form a:hover {
    transform: scale(1.1);
    transition: 0.2s;
  }

  .area_choice-form::before {
    top: 10px;
    left: auto;
    right: -100px;
    transform: scale(1);
  }
}

/* できること */
.service {
  background-color: #e9ecf3;
  padding-bottom: 40px;
}

.service_description {
  max-width: 85%;
  margin: 30px auto;
  font-weight: 500;
  color: #162077;
}

.service_list-wrap {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service_list {
  text-align: center;
  background-color: #fff;
  box-shadow: 6px 3px 15px 0px rgba(0, 0, 0, 0.2);
  border-radius: 11px;
  max-width: 370px;
}

.service_list-inner {
  max-width: 90%;
  margin: 20px auto;
}

.service_list h4 {
  margin: 0 auto 5px;
  font-size: 2rem;
  font-weight: 600;
  color: #162077;
  text-align: left;
}

.sp_none {
  display: none;
}

.service_list-description {
  text-align: left;
  overflow: hidden;
}

.service_img img {
  margin-top: -40px;
  width: 100px;
  float: right;
}

@media (min-width: 601px) {
  .service {
    padding-bottom: 8rem;
  }

  .service_description {
    max-width: 80%;
    margin: 40px auto;
    font-size: 2.3rem;
  }

  .service_list-wrap {
    max-width: 70%;
    margin: 0 auto;
    gap: 40px;
  }

  .service_list h4 {
    font-size: 2.3rem;
  }

  .service_img img {
    margin-top: -30px;
  }
}

@media (min-width: 1001px) {
  .service {
    padding-bottom: 12rem;
  }

  .service_description {
    max-width: 700px;
    margin: 40px auto 60px;
    font-size: 2.8rem;
  }

  .service_list-wrap {
    max-width: 1200px;
    gap: 30px;
  }

  .service_list {
    max-width: 370px;
  }

  .service_list h4 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .service_list:not(:last-child) h4 {
    margin-bottom: 40px;
  }

  .sp_none {
    display: block;
  }

  .service_img img {
    width: 150px;
    float: none;
    margin: 0;
  }

  .service_list-description {
    max-width: 330px;
    margin: 20px 0 0;
  }

  .service_list-description p {
    max-width: 70%;
    margin: 0 auto;
  }
}

/* 選ばれる理由 */
.reason {
  padding-bottom: 40px;
}

.reason_list01,
.reason_list03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 30px;
  margin-left: 30px;
}

.reason_list02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 30px;
  margin-right: 30px;
}

.reason_img img {
  width: 290px;
}

.reason_title {
  color: #0416af;
  font-weight: 600;
  margin: 20px 0;
}

.reason_title03 {
  color: #0416af;
  font-weight: 600;
  margin: 20px 0 40px;
}

.line-wrapper {
  float: right;
  padding-top: 11px;
  margin-left: 5px;
}

.line-marker {
  display: inline;
  background: linear-gradient(transparent 60%, #f8df00 0%);
  font-size: 1.8rem;
}

.num01,
.num02 {
  float: left;
  margin-top: -12px;
  padding-right: 5px;
}

.num01 img,
.num02 img,
.num img {
  width: 40px;
}

.reason_description-text {
  max-width: 290px;
}

@media (min-width: 601px) {
  .reason {
    padding-bottom: 80px;
  }

  .reason_list01,
  .reason_list03 {
    max-width: 90%;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .reason_list02 {
    max-width: 90%;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
  }

  .reason_title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
  }

  .reason_title03 {
    display: flex;
    gap: 20px;
    margin: 0;
  }

  .reason_img img {
    width: 320px;
  }

  .num01,
  .num02,
  .num {
    float: none;
    margin: 0;
    padding: 0;
  }

  .line-marker {
    font-size: 2rem;
    padding-top: 6px;
  }

  .reason_description-text {
    max-width: 360px;
    margin: 20px auto 0;
  }
}

@media (min-width: 1001px) {
  .reason_list01,
  .reason_list03 {
    max-width: 1200px;
    margin: 80px auto 0;
    justify-content: center;
    gap: 100px;
  }

  .reason_list02 {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
  }

  .reason_list03 {
    margin-top: 50px;
  }

  .reason_img img {
    width: 550px;
  }

  .line-marker {
    font-size: 2.5rem;
    padding-top: 26px;
    background: linear-gradient(transparent 80%, #f8df00 0%);
  }

  .line-wrapper {
    padding-top: 30px;
  }

  .num01 img,
  .num02 img,
  .num img {
    width: 70px;
  }

  .reason_description-text {
    max-width: 550px;
  }
}

/* イベント開催までの流れ */
/* .flow {
  background-color: #e9ecf3;
  padding-bottom: 40px;
}

.flow_wrap {
  max-width: 90%;
  margin: 30px auto 0;
  background-color: #fff;
  padding: 30px 0;
}

.flow_box {
  max-width: 90%;
  margin: 0 auto;
}

.flow_title {
  font-size: 2.1rem;
}

.flow_title_wrap {
  display: flex;
  align-items: center;
  color: #162077;
  font-weight: 800;
  gap: 20px;
}

.flow_num {
  font-size: 3rem;
  font-weight: 600;
  border-bottom: solid 2px #162077;
}

.small {
  font-size: 1.2rem;
}

.flow_contents_wrap {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin: 30px 0;
}

.flow_img img {
  width: 90px;
}

.flow_description {
  color: #162077;
}

.flow_arrow {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #162077;
  margin: 30px 0;
}

.flow_arrow:after,
.flow_arrow:before {
  border: solid transparent;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
}

.flow_arrow:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 7px;
  border-right-width: 7px;
  margin-left: -7px;
  border-top-color: #ffffff;
}

.flow_arrow:before {
  border-color: rgba(22, 32, 119, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 8px;
  border-right-width: 8px;
  margin-left: -8px;
  margin-top: 1px;
  border-top-color: #162077;
}

@media (min-width: 601px) {
  .flow {
    padding-bottom: 80px;
  }

  .flow_wrap {
    max-width: 90%;
    margin: 50px auto 0;
    padding: 50px 0;
  }

  .flow_box {
    max-width: 80%;
  }

  .flow_num {
    font-size: 4.2rem;
  }

  .small {
    font-size: 1.6rem;
  }

  .flow_title {
    font-size: 2.3rem;
  }

  .flow_title_wrap {
    gap: 30px;
  }

  .flow_contents_wrap {
    margin: 40px 0;
    gap: 35px;
  }
}

@media (min-width: 1001px) {
  .flow_wrap {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 60px 0;
    display: flex;
  }

  .flow_box {
    max-width: 230px;
    margin: 0 auto;
  }

  .flow_title {
    font-size: 2.3rem;
    line-height: 1.5rem;
  }

  .small {
    font-size: 1.2rem;
    display: block;
  }

  .flow_title_wrap {
    flex-direction: column;
    gap: 40px;
  }

  .flow_contents_wrap {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin: 40px 0;
  }

  .flow_img img {
    width: 100%;
  }

  .flow_box {
    position: relative;
  }

  .flow_arrow {
    position: absolute;
    top: 0;
    right: -20px;
    width: 2px;
    height: 500px;
    border-right: 1px solid #162077;
  }

  .flow_arrow:after,
  .flow_arrow:before {
    left: 100%;
    top: 50%;
  }

  .flow_arrow:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 15px;
    border-right-width: 15px;
    margin-top: -14px;
    border-left-color: #ffffff;
  }

  .flow_arrow:before {
    border-color: rgba(22, 32, 119, 0);
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 8px;
    border-right-width: 8px;
    margin-top: -9px;
    margin-left: 1px;
    border-left-color: #162077;
  }
} */

/* FAQ */
.faq {
  background-color: #efefef;
  padding-bottom: 100px;
}

.question {
  background-color: #162077;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  float: left;
}

.accordion_container {
  max-width: 90%;
  margin: 50px auto 0;
  width: 100%;
}

.accordion_list:not(:first-child) {
  margin-top: 10px;
}

.accordion_list {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.16);
  padding-bottom: 12px;
}

.accordion_title {
  cursor: pointer;
  font-size: 1.8rem;
  padding: 15px 10px;
  position: relative;
  color: #162077;
}

.accordion_title p {
  max-width: 310px;
  font-size: 1.5rem;
  padding-left: 40px;
  padding-top: 8px;
}

.accordion_title:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 31px;
  height: 2px;
  width: 10px;
  background: #162077;
  transform: rotate(35deg);
  transition: all 0.3s ease-in-out;
}

.accordion_title:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 23px;
  height: 2px;
  width: 10px;
  background: #162077;
  transform: rotate(-35deg);
  transition: all 0.3s ease-in-out;
}

.accordion_title.open:before {
  transform: rotate(-35deg);
}

.accordion_title.open:after {
  transform: rotate(35deg);
}

.accordion_text {
  display: none;
  margin: 15px 20px;
  background-color: #fffce5;
  border-radius: 6px;
}

.accordion_text p {
  background-color: #fffce5;
  border-radius: 6px;
  padding: 10px;
}

.answer {
  background-color: #e46d6a;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  float: left;
  font-weight: 600;
}

.answer_text {
  font-size: 1.4rem;
  padding-left: 60px;
  display: block;
}

.faq_inquiry {
  background: linear-gradient(#f280aa, #d62265);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  margin-top: 1rem;
  display: inline-block;
}

@media (min-width: 601px) {
  .question {
    font-size: 2rem;
    padding: 5px 10px;
  }

  .accordion_list:not(:first-child) {
    margin-top: 30px;
  }

  .accordion_list {
    padding-bottom: 25px;
  }

  .accordion_title {
    padding: 20px 40px 30px 15px;
  }

  .accordion_title p {
    max-width: 550px;
    font-size: 2rem;
    padding-left: 80px;
  }

  .accordion_title:before {
    right: 50px;
    width: 13px;
  }

  .accordion_title:after {
    right: 40px;
    width: 13px;
  }

  .accordion_text {
    margin: 10px 40px;
  }

  .accordion_text p {
    font-size: 2rem;
    padding: 25px;
  }

  .answer_text {
    font-size: 1.6rem;
    padding-left: 70px;
  }
}

@media (min-width: 1001px) {
  .accordion_container {
    max-width: 1200px;
  }

  .question {
    font-size: 2.3rem;
    padding: 5px 10px;
  }

  .accordion_list:not(:first-child) {
    margin-top: 30px;
  }

  .accordion_title {
    padding: 25px 40px 25px 15px;
  }

  .accordion_title p {
    max-width: 850px;
    padding-left: 80px;
  }

  .accordion_title:before {
    right: 50px;
    width: 13px;
  }

  .accordion_title:after {
    right: 40px;
    width: 13px;
  }

  .accordion_text {
    margin: 20px 60px;
  }

  .answer {
    font-size: 2.3rem;
  }

  .accordion_text p {
    padding: 40px;
  }

  .answer_text {
    font-size: 1.8rem;
    padding-left: 90px;
    padding-top: 10px;
  }

  .faq_inquiry {
    padding: 5px 20px;
    float: right;
    margin-top: -31px;
    margin-right: 320px;
  }

  .faq_inquiry:hover {
    box-shadow: 2px 6px 12px 0px rgba(146, 141, 97, 0.45);
    transition: 0.2s;
    transform: translateY(-3px);
  }
}

/* footer */
.footer {
  background-color: #707070;
  color: #fff;
  margin-bottom: 11rem;
}

.footer_wrap {
  max-width: 90%;
  margin: 0 auto;
  padding: 50px 0 40px 0px;
}

.footer_logo {
  margin-bottom: 40px;
}

.footer_logo img {
  width: 150px;
}

.footer_link {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.inquiry_btn {
  background-color: #fff;
  color: #333;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 50px;
  float: right;
  margin-top: -125px;
}

.copyright {
  text-align: center;
  padding-bottom: 30px;
  font-size: 1rem;
}

@media (min-width: 1001px) {
  .footer {
    margin-bottom: 12rem;
  }

  .footer_wrap {
    max-width: 1200px;
    padding: 60px 0 50px 0px;
  }

  .footer_logo {
    margin-bottom: 40px;
  }

  .footer_logo img {
    width: 270px;
  }

  .footer_link {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }

  .inquiry_btn {
    font-size: 2.3rem;
    padding: 10px 30px;
    margin-top: -170px;
    color: #707070;
  }

  .copyright {
    padding-bottom: 60px;
    font-size: 1.6rem;
  }

  .footer a:hover,
  .footer button:hover {
    opacity: 0.8;
  }
}
