@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #EDEDED;
  --primary-color: #122B88;
  --primary-color02: #4B5EA6;
  --primary-color03: #737C9F;
  --accent-color: #E24406;
  --accent-color02: #DA821D;
  --accent-color03: #FFF834;
  --blue-bg-gradation: linear-gradient(180deg, #737C9F 0%, #4E546C 25%, #292C39 50%, #4E546C 75%, #737C9F 100%);
  --blue-circle-gradation: linear-gradient(52deg, #122B88 15.23%, #4B5EA6 60.41%, #122B88 85.74%);
  --btn-gradation: linear-gradient(88deg, #DA821D 2.94%, #EFA858 72.27%, #DA821D 97.67%);

}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 1080px;
  --content-width: 1160px;
  --content-width-lg: 1240px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

body {
  color: var(--black-color);
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* ---------- utility ---------- */

@media screen and (min-width: 768px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  width: 100%;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 100px 0;
}

.l_header {
  z-index: var(--z-index-header);
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  position: absolute;
  top: 0;
  left: 0;
  /* background-color: rgba(3, 17, 62, 0.3); */
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 32px;
  }
}

.l_header-logo {
  width: 180px;
}

@media screen and (max-width: 768px) {
  .l_header-logo {
    width: 150px;
  }
}

@media screen and (max-width: 768px) {
  .l_header-logo {
    width: 120px;
  }
}

.l_header-logo_img {
  height: 100%;
}

.l_header-logo_link {
  display: block;
}

.l_header-nav {
  z-index: var(--z-index-modal);
  opacity: 1;
  position: static;
  background: transparent;
}

@media screen and (max-width: 1080px) {
  .l_header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-modal);
    background: var(--primary-color);
  }
}

.l_header-nav_list {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media screen and (max-width: 1080px) {
  .l_header-nav_list {
    height: 100%;
    flex-direction: column;
    gap: 32px;
  }
}

@media screen and (max-width: 1080px) {
  .pc-nav_list {
    display: none;
  }
}

@media screen and (min-width: 1081px) {
  .sp-nav_list {
    display: none;
  }
}



.l_header-nav_item {
  color: var(--white-color);
  padding: 0 4px;
  font-size: 16px;
  transition: all .3s;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 400px) {
  .l_header-nav_item {
    font-size: 14px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-size: 12px;
  }
}

@media screen and (min-width: 1200px) {
  .l_header-nav_item {
    font-size: 14px;
  }
}

.l_header-nav_link {
  display: block;
}

.l_footer {
  width: 100%;
  padding-top: 20px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 20px;
  background: var(--primary-color02);
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .l_footer {
      padding-right: 40px;
      padding-left: 40px;
      padding-top: 20px;
      padding-bottom: 20px;
  }
}

.l_footer-logo {
  width: 150px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l_footer-logo {
      width: 135px;
  }
}

.l_footer-logo_img {
  height: 100%;
}

.l_footer_privacy-link__wrapper {
  text-align: center;
  font-size: 12px;
}

.l_footer_copyright {
  font-size: 12px;
  text-align: center;
}

.l_footer_copy {
  text-align: center;
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .l_footer_copy {
      margin-top: 16px;
  }
}

.l_footer-logo_link {
  display: block;
}

/*---------- module ----------*/
.m_btn-warpper {
  width: 355px;
  height: 80px;
  background: var(--btn-gradation);
  border-radius: 8px;
  box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fuwafuwa 2s infinite;
}

.m_btn-warpper2 {
  width: 355px;
  height: 80px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fuwafuwa 2s infinite;
  margin-top: 10px;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 1200px) {
  .m_btn-warpper {
    width: 345px;
    height: 75px;
  }
}

@media screen and (max-width: 1200px) {
  .m_btn-warpper2 {
    width: 345px;
    height: 75px;
  }
}

@media screen and (max-width: 1080px) {
  .m_btn-warpper {
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .m_btn-warpper2 {
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
  }
}

.m_section_btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}

.m_btn-line {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m_btn-line2 {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid var(--accent-color02);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.m_btn_img {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1200px) {
  .m_btn_img {
    width: 35px;
    height: 35px;
  }
}

.m_btn-copy {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m_btn-copy2 {
  color: var(--accent-color02);
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .m_btn-copy {
    font-size: 22px;
  }
}

.m_section_title {
  font-size: 64px;
  font-weight: bold;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--primary-color02);
  margin-bottom: 40px;
}

@media screen and (max-width: 1080px) {
  .m_section_title {
    font-size: 56px;
  }
}

@media screen and (max-width: 768px) {
  .m_section_title {
    font-size: 40px;
  }
}

.m_section_sub-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: var(--primary-color02);
}

@media screen and (max-width: 768px) {
  .m_section_sub-title {
    font-size: 12px;
  }
}
/*---------- top_kv ----------*/
.top_kv {
  width: 100%;
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/top_kv.jpeg) center/cover;
  }

.top_kv_contents {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.top_kv_inner {
  color: var(--white-color);
}

.top_kv_sub-copy {
  color: var(--accent-color02);
  font-size: 40px;
  font-weight: bold;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1200px) {
  .top_kv_sub-copy {
    font-size: 36px;
  }
}

@media screen and (max-width: 1080px) {
  .top_kv_sub-copy {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv_sub-copy {
    font-size: 14px;
  }
}

.top_kv_copy {
  color: var(--gray-color03);
  font-size: 80px;
  font-weight: bold;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1200px) {
  .top_kv_copy {
    font-size: 72px;
  }
}

@media screen and (max-width: 1080px) {
  .top_kv_copy {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv_copy {
    font-size: 32px;
  }
}

.top_kv_price-wrapper {
  display: flex;
  align-items:center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .top_kv_price-wrapper {
    margin-top: 10px;
  }
}

.top_kv_price-copy {
  font-weight: bold;
  font-size: 24px;
  border: 2px solid var(--white-color);
  padding: 5px 10px;
}

@media screen and (max-width: 1080px) {
  .top_kv_price-copy {
    font-size: 20px;
    border: 2px solid var(--white-color);
    padding: 5px 10px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv_price-copy {
    font-size: 12px;
    border: 2px solid var(--white-color);
    padding: 5px 10px;
  }
}

.top_kv_price-yellow {
  font-size: 36px;
  color: var(--accent-color03);
  margin-left: 10px;
}

@media screen and (max-width: 1080px) {
  .top_kv_price-yellow {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv_price-yellow {
    font-size: 24px;
  }
}

.top_kv_benefit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

@media screen and (max-width: 1080px) {
  .top_kv_benefit {
    display: block;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv_benefit {
    padding: 0;
    margin-top: 60px;
  }
}

.top_kv_benefit__circle-wrapper {
  display: flex;
  justify-content: center;
  gap: 36px;
}

@media screen and (max-width: 768px) {
  .top_kv_benefit__circle-wrapper {
    gap: 10px;
  }
}

.top_kv_benefit__circle-white {
  width: 186px;
  height: 186px;
  background: var(--gray-color);
  box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
  border-radius: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .top_kv_benefit__circle-white {
    width: 176px;
    height: 176px;
  }
}

@media screen and (max-width: 1080px) {
  .top_kv_benefit__circle-white {
    width: 160px;
    height: 160px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv_benefit__circle-white {
    width: 106px;
    height: 106px;
  }
}

.top_kv_benefit__circle-blue {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: var(--blue-circle-gradation);
  border-radius: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}



.top_kv_benefit__circle-line {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50vh;
  border: 1px solid var(--gray-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_kv_benefi__circle-copy {
  color: var(--white-color);
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .top_kv_benefi__circle-copy {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .top_kv_benefi__circle-copy {
    font-size: 18px;
  }
}

/* .top_kv-scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: var(--z-index-default);
  transform: translateX(-50%);
}

@media screen and (max-width: 1080px) {
  .top_kv-scroll-down {
    bottom: 15px;
  }
}

.top_kv-scroll-down_txt {
  color: var(--white-color);
  font-size: 14px;
}

.top_kv-scroll-down_arrow {
  width: 8px;
  height: 8px;
  border-color: var(--white-color);
  border-width: 2px;
  border-style: none solid solid none;
  transform: rotate(45deg);
} */

/* ---------- section_worries ---------- */
.section_worries {
  background: var(--blue-bg-gradation);
  position: relative;
  box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);

}

.worries_triangle {
  width: 170px;
  height: 80px;
  background: url(../img/worries_triangle.png) center/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

@media screen and (max-width: 1080px) {
  .worries_triangle {
    width: 130px;
    height: 60px;
  }
}

.worries_title {
  font-size: 48px;
  text-align: center;
  color: var(--white-color);
}

@media screen and (max-width: 1200px) {
  .worries_title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1080px) {
  .worries_title {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .worries_title {
    font-size: 20px;
  }
}

.worries_fwb-fz {
  font-weight: bold;
  font-size: 64px;
}

@media screen and (max-width: 1200px) {
  .worries_fwb-fz {
    font-size: 56px;
  }
}

@media screen and (max-width: 1080px) {
  .worries_fwb-fz {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .worries_fwb-fz {
    font-size: 32px;
  }
}

.worries_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .worries_desc {
    display: block;
  }
}

.worries_content-blue {
  width: calc((100% - 40px) / 2);
  height: 135px;
  background: var(--primary-color02);
  box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: end;
}

@media screen and (max-width: 1080px) {
  .worries_content-blue {
    width: calc((100% - 20px) / 2);
    height: 110px;
  }
}

@media screen and (max-width: 768px) {
  .worries_content-blue {
    width: 100%;
    height: 90px;
  }
}

@media screen and (max-width: 768px) {
  .worries_content-blue:not(:first-child) {
    margin-top: 20px;
  }
}

.worries_content-white {
  width: 100%;
  height: 90%;
  background: var(--white-color);
  border-radius: 0 0 8px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.worries_content_copy {
  font-size: 30px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .worries_content_copy {
    font-size: 26px;
  }
}

@media screen and (max-width: 1080px) {
  .worries_content_copy {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .worries_content_copy {
    font-size: 18px;
  }
}

.worries_copy-blue {
  color: var(--primary-color02);
  font-weight: bold;
  font-size: 36px;
}

@media screen and (max-width: 1200px) {
  .worries_copy-blue {
    font-size: 32px;
  }
}

@media screen and (max-width: 1080px) {
  .worries_copy-blue {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .worries_copy-blue {
    font-size: 22px;
  }
}
/* ---------- solution_message ---------- */
.solution_message_title {
  text-align: center;
  font-size: 48px;
}

@media screen and (max-width: 1200px) {
  .solution_message_title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1080px) {
  .solution_message_title {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .solution_message_title {
    padding: 0 16px;
    font-size: 20px;
    line-height: 2;
  }
}

.solution_message_title-blue,
.solution_message_title-blue2 {
  font-size: 64px;
  font-weight: bold;
  color: var(--primary-color02);
}

@media screen and (max-width: 1200px) {
  .solution_message_title-blue,
  .solution_message_title-blue2 {
    font-size: 56px;
  }
}

@media screen and (max-width: 1080px) {
  .solution_message_title-blue,
  .solution_message_title-blue2 {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .solution_message_title-blue,
  .solution_message_title-blue2 {
    font-size: 32px;
  }
}

.solution_message_title-blue::before {
  content: "・・・・・・";
  position: absolute;
  transform: translateY(-50%);
}

/* ---------- section_strengths ---------- */
.strengths_message {
  text-align: center;
  font-size: 28px;
}

@media screen and (max-width: 1080px) {
  .strengths_message {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .strengths_message {
    font-size: 16px;
  }
}

.strengths_message-orange {
  font-weight: bold;
  color: var(--accent-color);
  font-size: 36px;
}

@media screen and (max-width: 1080px) {
  .strengths_message-orange {
    font-size: 28px;
  }
}

@media screen and (max-width: 1080px) {
  .strengths_message-orange {
    font-size: 24px;
  }
}

.strengths_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .strengths_desc {
    display: block;
  }
}

.strengths_content {
  width: calc((100% - 40px) / 3);
  border-radius: 8px;
  background: var(--primary-color02);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 10px 10px 4px 0px rgba(75, 94, 166, 0.25);
  padding: 4px;
}

@media screen and (max-width: 1080px) {
  .strengths_content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .strengths_content {
    margin-top: 40px;
  }
}

.strengths_inner {
  background: var(--white-color);
  padding: 20px 10px;
  border-radius: 4px;
  width: 100%;
}

.strengths_inner::before {
  width: 70px;
  height: 70px;
  transform: scale(0.25);
  display: inline-block;
  position: absolute;
  top: -24px;
  left: -24px;
}

@media screen and (max-width: 1080px) {
  .strengths_inner::before {
    transform: scale(0.18);
    top: -25px;
    left: -25px;
  }
}

@media screen and (max-width: 768px) {
  .strengths_inner::before {
    transform: scale(0.25);
    top: -24px;
    left: -24px;
  }
}

.strengths_inner01::before {
  content: url(../img/strengths_content01.png);
}

.strengths_inner02::before {
  content: url(../img/strengths_content02.png);
}

.strengths_inner03::before {
  content: url(../img/strengths_content03.png);
}

.strengths_inner_title {
  text-align: center;
}

.strengths_inner_title {
  font-size: 22px;
}

@media screen and (max-width: 1080px) {
  .strengths_inner_title {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .strengths_inner_title {
    font-size: 20px;
  }
}

.strengths_inner_title-blue {
  font-weight: bold;
  color: var(--primary-color02);
  font-size: 28px;
}

@media screen and (max-width: 1080px) {
  .strengths_inner_title-blue {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .strengths_inner_title-blue {
    font-size: 26px;
  }
}

.strengths_inner_line {
  width: calc(100% - 16px);
  height: 2px;
  background-color: var(--primary-color02);
  margin-top: 10px;
  margin-bottom: 10px;
}

.strengths_inner_copy {
  font-size: 20px;
  text-align: left;
}

@media screen and (max-width: 1080px) {
  .strengths_inner_copy {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .strengths_inner_copy {
    font-size: 18px;
  }
}

.strengths_inner_copy-bold {
  font-weight: bold;
  font-size: 22px;
}

@media screen and (max-width: 1080px) {
  .strengths_inner_copy-bold {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .strengths_inner_copy-bold {
    font-size: 20px;
  }
}

/* ---------- section_creative ---------- */
.creative_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .creative_desc {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .creative_inner:not(:first-child) {
    margin-top: 40px;
  }
}

.creative_img {
  width: 100%;
  aspect-ratio: 6 / 4;
  object-fit: cover;
}

.creative_inner_name {
  font-size: 28px;
  font-weight: bold;
  padding-left: 10px;
  padding-top: 10px;
}

@media screen and (max-width: 1080px) {
  .creative_inner_name {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .creative_inner_name {
    font-size: 20px;
  }
}

.creative_inner_map-wrapper {
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-top: 10px;
}

.creative_inner_map-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .creative_inner_map-img {
    width: 20px;
    height: 20px;
  }
}

.creative_inner_map-name {
  font-size: 20px;
}

@media screen and (max-width: 1080px) {
  .creative_inner_map-name {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .creative_inner_map-name {
    font-size: 16px;
  }
}

/* ---------- section_achievements ---------- */
.achievements_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .achievements_desc {
    display: block;
  }
}

.achievements_content {
  border: 2px solid var(--primary-color02);
  border-radius: 8px;
  box-shadow: 10px 10px 4px 0px rgba(75, 94, 166, 0.25);
}

@media screen and (max-width: 768px) {
  .achievements_content:not(:first-child) {
    margin-top: 40px;
  }
}

.achievements_img-wrapper {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.achievements_img {
  width: 100%;
  aspect-ratio: 6 / 4;
  border-radius: 6px 6px 0 0;
}

.achievements_inner-wrapper {
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .achievements_inner-wrapper {
    padding: 10px;
  }
}

.achievements_inner_productname-wrapper {
  padding: 8px;
  border-radius: 4px;
  background: var(--primary-color02);
}

.achievements_inner_productname {
  color: var(--white-color);
}

@media screen and (max-width: 1080px) {
  .achievements_inner_productname,
  .achievement_inner_method {
    font-size: 12px;
  }
}

.achievements_content_sub-title,
.achievements_content_main-title {
  font-size: 24px;
  margin-top: 20px;
}

@media screen and (max-width: 1080px) {
  .achievements_content_sub-title,
  .achievements_content_main-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .achievements_content_sub-title,
  .achievements_content_main-title {
    font-size: 16px;
  }
}

.achievements_content_main-title {
  text-align: center;
}

.achievements_content_font-blue {
  font-size: 44px;
  color: var(--primary-color02);
  background: linear-gradient(transparent 60%, #F1E900 30%);
  display: inline-block;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .achievements_content_font-blue {
    font-size: 38px;
  }
}

@media screen and (max-width: 1080px) {
  .achievements_content_font-blue {
    font-size: 24px;
  }
}

.achievements_content_font-blue2 {
  font-size: 80px;
  color: var(--primary-color02);
  background: linear-gradient(transparent 60%, #F1E900 30%);
  display: inline-block;
  line-height: 1;
  margin-left: auto;
}

@media screen and (max-width: 1080px) {
  .achievements_content_font-blue2 {
    font-size: 56px;
  }
}

.achievements_content_line {
  width: 100%;
  height: 2px;
  background: var(--primary-color02);
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1080px) {
  .achievements_content_explanation {
    font-size: 12px;
  }
}

/* ---------- section_products ---------- */
.section_products {
  overflow: hidden;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.products_desc:not(:first-child) {
  margin-top: 50px;
}

.products_item-name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  padding-left: 8px;
}

@media screen and (max-width: 1080px) {
  .products_item-name {
    font-size: 12px;
  }
}

@media screen and (max-width: 1080px) {
  .products_item-change {
    font-size: 12px;
  }
}

.products_item-address {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding-left: 8px;
}

.products_item_map {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1080px) {
  .products_item_map {
    width: 18px;
    height: 18px;
  }
}

.products_item-change {
  font-size: 13px;
}

@media screen and (max-width: 1080px) {
  .products_item-change {
    font-size: 11px;
  }
}

/* ---------- section_flow ----------*/
.flow_list_item {
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 2px solid var(--primary-color02);
}

.flow_list_item:not(:first-child) {
  margin-top: 20px;
}

.flow_list_step {
  text-align: center;
  color: var(--primary-color02);
}

.flow_list_step-copy {
  font-size: 24px;
}

@media screen and (max-width: 1080px) {
  .flow_list_step-copy {
    font-size: 20px;
  }
}

@media screen and (max-width: 786px) {
  .flow_list_step-copy {
    font-size: 16px;
  }
}

.flow_list_step-number {
  font-size: 64px;
}

@media screen and (max-width: 1080px) {
  .flow_list_step-number {
    font-size: 60px;
  }
}

@media screen and (max-width: 786px) {
  .flow_list_step-number {
    font-size: 54px;
  }
}

.flow_list_inner-title {
  font-size: 36px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .flow_list_inner-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .flow_list_inner-title {
    font-size: 16px;
  }
}

.flow_list_inner-copy {
  font-size: 20px;
  margin-top: 10px;
}

@media screen and (max-width: 1080px) {
  .flow_list_inner-copy {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .flow_list_inner-copy {
    font-size: 12px;
  }
}

/* ---------- section_price ---------- */
@media screen and (max-width: 768px) {
  .price_sp-padding {
    padding: 0;
  }
}

.price_content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: linear-gradient(88deg, #1D2440 0%, #4B5EA6 50%, #1D2440 100%);
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
}

@media screen and (max-width: 1080px) {
  .price_content-wrapper {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .price_sp-curve {
    border-radius: 0px;
  }
}

@media screen and (max-width: 1080px) {
  .price_content_left {
    width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .price_content_left {
    width: 343px;
    }
}


/* .price_content_copy-wrapper {
  border: 1px solid var(--white-color);
  padding: 10px 20px;
} */

.price_content_copy {
  font-size: 20px;
  border: 1px solid var(--white-color);
  padding: 5px 10px;
  color: var(--white-color);
}

@media screen and (max-width: 1080px) {
  .price_content_copy {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .price_content_copy {
    font-size: 14px;
  }
}

.price_content_number {
  font-size: 32px;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .price_content_number {
    font-size: 16px;
  }
}

.price_content_number-yellow {
  font-size: 90px;
  color: var(--accent-color03);
}

@media screen and (max-width: 768px) {
  .price_content_number-yellow {
    font-size: 60px;
  }
}

/* ---------- section_faq ---------- */
.section_faq {
  background: var(--primary-color02);
}

.section_faq_sub-title,
.section_faq_main-title {
  color: var(--white-color);
}

.faq_content {
  width: 100%;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
  margin-top: 40px;
  padding: 20px 40px;
}

.faq_question_copy {
  font-size: 20px;
  position: relative;
  padding-left: 40px;
  color: var(--primary-color02);
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .faq_question_copy {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .faq_question_copy {
    font-size: 14px;
  }
}

.faq_question_copy::before {
  content: "Q";
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color02);
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-right: 10px;
  line-height: 1;
  position: absolute;
  top: -9px;
  left: 0;
} 

@media screen and (max-width: 1080px) {
  .faq_question_copy::before {
    font-size: 32px;
    top: -5px;
  }
}

.faq_content_line {
  width: 100%;
  height: 2px;
  background: var(--primary-color02);
  margin-top: 20px;
  margin-bottom: 20px;
}

.faq_answer_copy {
  padding-left: 40px;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .faq_answer_copy {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .faq_answer_copy {
    font-size: 12px;
  }
}

.faq_answer_copy::before {
  content: "A";
  font-size: 32px;
  font-weight: bold;
  color: var(--accent-color);
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-right: 10px;
  line-height: 1;
  position: absolute;
  top: -6px;
  left: 5px;
}

@media screen and (max-width: 1080px) {
  .faq_answer_copy::before {
    font-size: 24px;
    top: -3px;
  }
}

/* ---------- section_company ---------- */
.company_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .company_desc {
    display: block;
  }
}

.company_img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

@media screen and (max-width: 1080px) {
  .company_desc_inner {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .company_desc_inner {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .company_desc_post {
    margin-top: 10px;
  }
}

.company_desc_post,
.company_desc_name {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 1080px) {
  .company_desc_post,
  .company_desc_name {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .company_desc_post,
  .company_desc_name {
    font-size: 14px;
  }
}

.company_desc_name,
.company_desc_copy {
  margin-top: 10px;
}

.company_info-table {
  position: relative;
  margin-top: 40px;
}

.company_info-table::before {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--primary-color02);
  position: absolute;
  top: 0;
  left: 35%;
}

.company_info-table_heading {
  font-size: 20px;
  width: 35%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  color: var(--primary-color02);
}

@media screen and (max-width: 1080px) {
  .company_info-table_heading {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .company_info-table_heading {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.company_info-table_data {
  font-size: 20px;
  padding-left: 150px;
}

@media screen and (max-width: 1080px) {
  .company_info-table_data {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .company_info-table_data {
    font-size: 12px;
    padding-left: 50px;
  }
}
/* ----------section_contact ----------- */
.contact_form-wrapper {
  padding: 20px 10px;
  background: rgba(247, 247, 247, 80%);
  border-radius: 4px;
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.25);
  margin-top: 50px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contact_form-wrapper {
      padding: 40px 20px;
  }
}

.contact_form_heading {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1080px) {
  .contact_form_heading {
      font-size: 16px;
  }
}

.contact_form_heading:not(:first-child) {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .contact_form_heading:not(:first-child) {
      margin-top: 40px;
  }
  
}

.contact_form_required {
  font-size: 10px;
  color: var(--white-color);
  background: var(--primary-color02);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 20px;
  border-radius: 2px;
}

@media screen and (min-width: 1080px) {
  .contact_form_required {
      font-size: 12px;
      height: 25px;
      width: 40px;
  }
}

.contact_form_detail {
  margin-top: 10px;
}

.contact_form_input {
  font-size: 14px;
  width: 100%;
  height: 40px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid var(--gray-color02);
  background: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .contact_form_input {
      font-size: 16px;
      height: 50px;
  }
}

.contact_form_select {
  width: 100%;
  height: 40px;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid var(--gray-color02);
  background: var(--white-color);
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  .contact_form_select {
      font-size: 16px;
      height: 50px;
  }
}

.contact_form_textarea {
  font-size: 14px;
  width: 100%;
  height: 240px;
  padding: 8px;
  border: 1px solid var(--gray-color2);
  background: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .contact_form_textarea {
      font-size: 16px;
  }
}

.contact_form_checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
}

.contact_form_checkbox {
  width: 15px;
  height: 15px;
  border: var(--gray-color02);
  background: var(--white-color);
  margin-right: 10px;
  appearance: checkbox;
}

.contact_form_btn-wrapper {
  margin-top: 40px;
  background: var(--primary-color02);
  border-radius: 4px;
  cursor: pointer;
  width: 280px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s all;
}

.contact_form_btn-wrapper:hover {
  background: var(--white-color);
  transform: scale(1.1);
  border: 1px solid var(--primary-color02);
  transition: 0.3s all;
}

.contact_form_btn-wrapper[disabled] {
  background: var(--gray-color);
  cursor: not-allowed;
}

.m_btn__form {
  color: var(--white-color);
  border-radius: 4px;
  transition: 0.3s all;
}

.m_btn__form:hover {
  color: var(--primary-color02);
  transition: 0.3s all;
}


/* ---------- js ---------- */
.js_body.is-hidden {
  overflow: hidden;
}

.achievements_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.js_hamburger-bar {
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.js_copy,
.js_sub-copy {
  overflow: hidden;
}

.js_nav {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1080px) {
  .js_nav {
    opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_faq_mark::after {
  transition: opacity 0.24s;
}

.js_faq_mark.is-open::after {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}

/* .apper {
  animation: apper 0.8s forwards;
}
@keyframes apper {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translate(0%);
  }
}

.disapper {
  animation: disapper 0.8s forwards;
}
@keyframes disapper {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
 */
