@charset "UTF-8";

/* ===============================================
  Variables
=============================================== */
:root {
  --gradient-blue: linear-gradient(135deg, #11d8e6 0%, #0077ff 45%, #4432d8 100%);
  --simple-blue: #0e5ccc;
}

@media screen and (max-width: 767px) {
  :root {
    --width-full: 100%;
    --width-content: 93%;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --width-full: min(100%, 1280px);
    --width-content: min(77.7%, 1120px);
  }
}

/* ===============================================
  Base / Reset
=============================================== */
html {
  margin-top: 0 !important;
}

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

main {
  background: #F3F7FC;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 45px;
  }
}

/* ===============================================
  Utility
=============================================== */
.w2_hr {
  background: var(--gradient-blue) !important;
}

.w2_section_title .w2_text {
  line-height: 160%;
}

.base_text {
  font-size: 3.46667vw;
  line-height: 6.66667vw;
}

.barlow {
  font-family: var(--font-number);
  font-weight: 500;
  vertical-align: bottom;
}

.media_pc {
  display: initial;
}

.media_sp {
  display: initial;
}

.n_cta_banner {
  display: none;
}

.w2_content {
  border-top: none;
  flex-direction: column;
  gap: 30px;
}

.w2_text {
  font-weight: 500 !important;
  font-size: 14px !important;
  max-width: var(--width-content);
  margin: 0 auto;
  margin-bottom: 0 !important;
}

.line_box {
  background: #d9d9d959;
}

.green_back {
  position: relative;
  border-top: 1px solid #DDDDDD;
}

.green_back::before {
  content: "";
  background: linear-gradient(183deg, #f4fff9 0%, #fff 100%);
  position: absolute;
  right: 0;
  width: 88.88889vw;
  height: 100%;
}

@media (min-width: 768px) {
  .w2_text {
    margin-bottom: 15px;
  }

  .base_text {
    font-weight: 500;
    font-size: min(1.25vw, 18px);
    line-height: normal;
  }

  .media_sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .media_pc {
    display: none !important;
  }

  .w2_section_title {
    padding-top: 30px;
  }

  .green_back::before {
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .w2_text {
    margin-bottom: 30px;
  }
}

.feature_about .w2_section_title .w2_hr {
  margin-bottom: 0px;
}

/* ===============================================
  Animations
=============================================== */
@keyframes patterns_scroll1 {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes patterns_scroll2 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes w2_scroll_icon_img_animation {
  0% {
    transform: translate(-10%);
  }

  100% {
    transform: translate(5%);
  }
}

/* ===============================================
  Common Layout / Components
=============================================== */
.w2_container {
  position: relative;
  margin: auto;
  width: 100vw;
}

.box_inner {
  max-width: 800px;
  margin: 0 auto;
}

.box_inner img {
  width: 100%;
}

.w2_img-wrapper--single {
  width: var(--width-content);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 10px 30px rgba(51, 51, 51, .15);
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
  line-height: normal;
}

.tp_line_box {
  position: relative;
}

.tp_line_box::before {
  content: "";
  position: absolute;
  height: 5px;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.tp_line_box::before {
  background: var(--gradient-blue);
}

.w2_img-wrapper--single::-moz-selection,
.w2_img-wrapper--single ::-moz-selection {
  background: rgba(0, 0, 0, 0);
}

.w2_img-wrapper--single::selection,
.w2_img-wrapper--single ::selection {
  background: rgba(0, 0, 0, 0);
}

.w2_img-wrapper--single h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.w2_img-wrapper--single p {
  font-size: 14px;
  line-height: 1.8em;
}

.w2_img-wrapper--multi {
  width: var(--width-content);
  position: relative;
  z-index: 1;
  margin: auto;
  box-shadow: 0 10px 30px rgba(51, 51, 51, .15);
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
  line-height: normal;
}

.w2_img-wrapper--multi .box_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.w2_img-wrapper--multi .box_inner .contents_box {
  text-align: center;
}

.w2_img-wrapper--multi .box_inner .contents_box p {
  font-size: 14px;
  margin-top: 10px;
}

.w2_section_title {
  width: var(--width-content);
  margin: 0 auto;
}

.w2_section_title h2 {
  font-size: 32px;
  line-height: normal !important;
}

.w2_section_title h3.w2_title {
  position: relative;
  display: inline-block;
  line-height: 140%;
}

.box_inner {
  padding: 30px 15px;
}

.n_num {
  color: #0E5CCC;
  position: absolute;
  margin-right: 5vw;
  font-family: var(--font-english);
}

.n_num::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid #0E5CCC;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .w2_img-wrapper--single {
    flex-direction: column;
    width: var(--width-content);
    position: relative;
    line-height: normal;
  }

  .w2_img-wrapper--multi .box_inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .w2_section_title h2.w2_title {
    font-size: 25px;
  }

  .w2_section_title h3.w2_title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {

  .w2_img-wrapper--multi .box_inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .w2_section_title h2 {
    font-size: 25px;
  }

  .w2_section_title h3.w2_title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .w2_section_title h3.w2_title {
    font-size: 20px;
  }

  .n_num {
    font-size: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 10px auto 20px;
    font-size: 27px;
    left: 0;
  }

  .n_num::before {
    content: "";
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 768px) {
  .w2_section_title h3.w2_title {
    font-size: 20px;
  }

  .n_num {
    font-size: 20px;
    left: -40px;
  }

  .n_num::before {
    width: 45px;
    height: 45px;
  }
}

@media screen and (min-width: 1440px) {
  .w2_section_title h2.w2_title {
    font-size: 30px;
  }

  .w2_section_title h3.w2_title {
    font-size: 25px;
  }

  .w2_img-wrapper--multi .box_inner {
    max-width: 800px;
    gap: 65px;
  }

  .n_num {
    font-size: 30px;
    left: -60px;
  }

  .n_num::before {
    content: "";
    width: 60px;
    height: 60px;
  }
}

/* ===============================================
  First View
=============================================== */

.w2_firstview .w2_container {
  padding-bottom: 8vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.w2_firstview .w2_fv_image_container img {
  width: 100%;
}

.w2_firstview .w2_fv_text_container {
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.w2_firstview .w2_fv_text_container .fv_sub_ttl {
  font-weight: 500;
  color: #1a5ccc;
  display: block;
  text-align: center;
  font-size: 20px;
}

.w2_firstview .w2_fv_text_container h1 {
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.w2_firstview .w2_fv_text_container h1 b.barlow {
  padding: 0 5px;
  font-size: 160%;
}

.w2_firstview .w2_fv_text_container h1 b.big {
  font-size: 120%;
  font-weight: 500;
}

.w2_firstview #fv_cta {
  display: block;
  max-width: 240px;
  margin: 0 auto;
}

.w2_firstview #fv_cta:hover {
  transform: scale(1.05);
  opacity: .8;
}

#FirstView .n_cta {
  text-align: center;
}

#FirstView .n_cta a {
  display: inline-block;
}

@media screen and (max-width: 767px) {

  .w2_firstview .w2_container {
    flex-direction: column;
    padding-bottom: 0;
    width: 100%;
    margin: 0 auto;
  }

  .w2_firstview .w2_fv_image_container img {
    padding: 0 30px;
    box-sizing: border-box;
  }

  .w2_firstview .w2_fv_text_container {
    box-sizing: border-box;
    padding: 0 10px;
  }

  .w2_firstview .w2_fv_text_container h1 {
    font-size: 35px;
    margin-top: 0;
  }

  .w2_firstview .w2_fv_text_container p {
    margin-top: 15px;
  }

  .w2_firstview .w2_fv_text_container .fv_sub_ttl {
    text-align: left;
  }

  .w2_firstview #fv_cta {
    margin: 30px auto 0;
  }

}

@media screen and (min-width: 768px) {

  .w2_firstview .w2_container {
    padding-bottom: 0;
    padding-block-end: 0;
    width: 95vw;
    gap: 10px;
  }

  .w2_firstview .w2_fv_image_container {
    max-width: 300px;
  }

  .w2_firstview .w2_fv_image_container img {
    width: 100%;
  }

  .w2_firstview .w2_fv_text_container .fv_sub_ttl {
    text-align: left;
  }

  .w2_firstview .w2_fv_text_container h1 {
    font-size: 25px;
    font-weight: 600;
    margin: 5px 0 15px;
  }

  .w2_firstview .w2_fv_text_container p {
    font-size: 14px;
  }

  #FirstView .n_cta {
    padding-block: 1.55em 2em;
  }
}

@media screen and (min-width: 1024px) {

  .w2_firstview .w2_fv_text_container h1 {
    font-size: 30px;
  }

  .w2_firstview .w2_fv_text_container p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1440px) {

  .w2_firstview .w2_container {
    width: 1440px;
    margin: 0 auto;
  }

  .w2_firstview .w2_fv_text_container h1 {
    font-size: 35px;
  }

  .w2_firstview .w2_fv_text_container #fv_sub_ttl {
    font-size: 30px;
  }
}

/* ===============================================
  Patterns / Partner Showcase
=============================================== */
.w2_top_group1 {
  display: none;
}

.w2_patterns .w2_patterns_product {
  width: 100vw;
  overflow: hidden;
}

.w2_patterns .w2_patterns_scroll_inner {
  background-repeat: repeat-x;
  background-size: auto 100%;
  margin-bottom: 5.33333vw;
}

/* 
.w2_patterns .w2_patterns_scroll_inner:nth-of-type(1) {
  animation: patterns_scroll1 infinite 80s linear;
} */

@keyframes patterns_scroll {

  0% {

    transform: translateX(0);

  }

  100% {

    transform: translateX(-50%);

  }

}

.w2_patterns_inner {
  width: 200%;
  height: 80px;
  background-image: url(/assets/img/repeat_new/partner_scroll.webp);
  background-repeat: repeat-x;
  background-size: auto 100%;
  animation: patterns_scroll 30s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

@media screen and (max-width: 767px) {
  .w2_patterns_inner {
    animation: patterns_scroll 30s linear infinite;
  }
}

.w2_patterns img {
  display: none;
}


#Patterns {
  overflow-x: hidden;
}

#Patterns .w2_patterns_title_inner {
  text-align: center;
}

#Patterns.w2_patterns .w2_patterns_product>* {
  margin-bottom: 0 !important;
}

.partner__showcase {
  overflow: hidden;
}

.partner__showcase .partner__slider:not(:first-of-type) {
  margin-block-start: 0.7142857143vw;
}

.partner__slider .swiper-wrapper {
  align-items: center;
  column-gap: 0.7142857143vw;
  transition-timing-function: linear !important;
}

.partner__slider .swiper-slide {
  text-align: center;
  flex-basis: 150px;
}

.partner__slider .swiper-slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  justify-self: center;
}

@media screen and (max-width: 767px) {
  #Patterns {
    margin-top: 30px;
  }

  .partner__showcase .partner__slider:not(:first-of-type) {
    margin-block-start: 2.6666666667vw;
  }


  .partner__slider .swiper-wrapper {
    column-gap: 2.6666666667vw;
  }

  #Patterns.w2_patterns .w2_patterns_product>* {
    height: 80px !important;
  }

  /* .w2_patterns .w2_patterns_product_inner:nth-of-type(1) {
    animation: patterns_scroll1 infinite 30s linear;
  } */

  .partner__slider .swiper-slide {
    flex-basis: 21.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .w2_patterns {
    margin-top: 30px;
  }

  .w2_patterns .w2_patterns_title_inner {
    padding-inline: min(1.875vw, 27px);
  }

  .w2_patterns .w2_patterns_product_inner {
    margin-bottom: 40px !important;
  }

  #Patterns.w2_patterns .w2_patterns_product>* {
    height: 80px !important;
  }
}

/* ===============================================
  Feature
=============================================== */
#Feature .w2_section_title {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #Feature .w2_section_title {
    padding-top: 40px;
  }
}

#Feature .w2_section_title .w2_hr {
  margin-bottom: 0;
}

.w2_feature_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  width: var(--width-content);
  margin: 0 auto;
  max-width: 100%;
}

.w2_feature_list li {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 2px 5px 10px 1px #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.w2_feature_list li::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #11d8e6 0%, #0077ff 45%, #4432d8 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.w2_feature_list li p {
  text-align: center;
  font-weight: bold;
  width: 80%;
  line-height: normal;
}

.w2_feature .w2_feature_list h3 {
  font-size: min(1.0416666667vw, 20px);
  position: relative;
  min-height: min(3.27vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  font-weight: 500;
}

.w2_feature .w2_feature_list h3 .n_num {
  font-size: min(1.8229vw, 30px);
  margin-right: min(5vw, 24px);
}

.w2_feature .w2_feature_list h3 .n_num::before {
  width: min(3.125vw, 50px);
  height: min(3.125vw, 50px);
}

.w2_feature .w2_feature_list_item .w2_feature_list_item_image {
  width: 100%;
  height: auto;
  display: block;
}

.w2_feature .w2_feature_list_item .w2_feature_list_item_image .w2_feature_list_item_image_img {
  width: 100% !important;
  height: auto !important;
}

@media screen and (max-width: 767px) {
  .w2_feature_list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
  }

  .w2_feature_list li {
    width: 100%;
    height: auto;
    padding: 15px 0;
    box-sizing: border-box;
    border-radius: 0;
  }

  .w2_feature_list li::before {
    border-radius: 0;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  .w2_feature_list li p {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {

  .w2_feature_list {
    grid-template-columns: repeat(6, 1fr);
  }

  .w2_feature_list li:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .w2_feature_list li:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .w2_feature_list li {
    grid-column: span 2;
    width: 150px;
    height: 150px;
  }

  .w2_feature_list li p {
    font-size: 14px;
  }

}

@media screen and (min-width: 1024px) {

  .w2_feature_list li {
    width: 200px;
    height: 200px;
  }

  .w2_feature_list li:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .w2_feature_list li:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media screen and (min-width: 1440px) {
  .w2_feature_list {
    grid-template-columns: repeat(5, 1fr);
  }

  .w2_feature_list li {
    grid-column: auto;
  }

  .w2_feature_list li:nth-child(4) {
    grid-column: 4;
  }

  .w2_feature_list li:nth-child(5) {
    grid-column: 5;
  }

  .w2_feature_list li p {
    font-size: 18px;
  }
}

/* ===============================================
  Feature About
=============================================== */
.feature_about {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 60px;
}

.feature_about .w2_section_title {
  margin-inline: auto;
  width: min(92%, 690px);
  padding-top: 0;
}

.feature_about .w2_section_title h2 {
  margin-bottom: 30px;
  line-height: normal;
}

.feature_about .w2_section_title h2 .n_num {
  font-size: 6vw;
  margin-right: 6vw;
}

.feature_about .w2_section_title h2 .n_num::before {
  width: 10vw;
  height: 10vw;
}

.feature_about .w2_img-wrapper--single {
  flex-direction: column;
  line-height: normal;
}

.feature_about .w2_img-wrapper--single h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.feature_about .w2_img-wrapper--single .line_box {
  margin-top: 15px;
  width: 100%;
  border-radius: 0.4166666667vw;
  box-sizing: border-box;
  text-align: center;
}

.feature_about .w2_img-wrapper--single .line_box .tp_line_box p {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.feature_about .w2_img-wrapper--single .space-btw {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {

  .feature_about .w2_section_title {
    width: 100%;
  }

  .feature_about .w2_section_title h2 .n_num {
    margin-right: 3.125vw;
    font-size: 2.34375vw;
  }

  .feature_about .w2_section_title h2 .n_num::before {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }

  .feature_about .w2_img-wrapper--single {
    flex-direction: column;
    width: var(--width-content);
    position: relative;
    line-height: normal;
  }

  .feature_about .w2_img-wrapper--single h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .feature_about .w2_img-wrapper--single .line_box {
    border-radius: 0.4166666667vw;
    box-sizing: border-box;
    text-align: center;
  }

  .feature_about .w2_img-wrapper--single .line_box .w2_text {
    font-size: 14px;
  }

  .feature_about .w2_img-wrapper--single .space-btw {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .feature_about {
    margin-top: 45px;
    gap: 30px;
  }

  .feature_about .w2_content {
    gap: 15px;
  }
}

@media screen and (min-width: 1440px) {
  .feature_about .w2_img-wrapper--single h4 {
    font-size: 20px;
  }
}

/* ===============================================
  Plan
=============================================== */
.w2_plan .w2_plan_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: var(--width-content);
  margin: 0 auto;
}

.w2_plan .w2_plan_list_item {
  position: relative;
  z-index: 1;
  width: 100%;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
  border-radius: 1.33333vw;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_inner::before {
  content: "";
  height: 0.8vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background: var(--gradient-blue);
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_title {
  padding-block: 4.26667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #DDDDDD;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_title_en {
  font-weight: 500;
  font-size: 9.33333vw;
  line-height: normal;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_title_en b {
  font-size: 130%;
  font-family: var(--font-english);
  font-weight: 500;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_title_ja {
  font-size: 2.66667vw;
  line-height: 5.33333vw;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_icon {
  margin-right: 2.66667vw;
  pointer-events: none;
  user-select: none;
  line-height: 0;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_icon .w2_plan_list_item_icon_img {
  width: 16vw;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_text1 {
  padding-top: 4vw;
  padding-bottom: 1.0416666667vw;
  margin-bottom: 28px;
  position: relative;
  text-align: center;
  font-weight: 500;
  font-size: 4vw;
  line-height: 8vw;
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_text1::after {
  content: " ";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18.66667vw;
  margin-left: -9.33333vw;
  height: 0.53333vw;
  background: var(--gradient-green);
}

.w2_plan .w2_plan_list_item .w2_plan_list_item_text2 {
  padding-top: 10px;
  padding-bottom: 20px;
  padding-inline: var(--padding-vertical);
  margin: auto;
  text-align: left;
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 180%;
}

.w2_plan .w2_plan_list dl {
  border-top: solid 1px #ddd;
  padding-top: 15px;
  margin-bottom: 15px;
  margin-inline: var(--padding-vertical);
}

.w2_plan .w2_plan_list dl dt {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

.w2_plan .w2_plan_list dl dt::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #139E78;
  transform: translate(0, -45%);
}

.w2_plan .w2_plan_list dl dd {
  padding-left: 20px;
  font-size: 12px;
  position: relative;
  line-height: 1.8;
}

.w2_plan .w2_plan_list dl dd::before {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(-50%, 0);
  background: #139E78;
}

.w2_plan .w2_plan_list_item_button {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.w2_plan_list_item_image {
  margin: auto;
  box-sizing: border-box;
  padding: 40px;
  padding-top: 15px;
  padding-bottom: 10px;
  border-top: solid 1px #DDDDDD;
}

.w2_plan_list_item_image_caption {
  position: relative;
  padding-left: 15px;
  font-weight: 600;
}

.w2_plan_list_item_image_caption::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-w2-blue);
  top: 50%;
  transform: translate(0, -50%);
}

.w2_plan_list-wrap {
  padding-left: 0;
}

.w2_plan_list-wrap li {
  line-height: 180%;
  font-size: 14px;
  padding-left: 30px;
  position: relative;
}

.w2_plan_list-wrap li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--color-w2-blue);
  left: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
  .w2_plan_list_item_image {
    padding: 15px;
  }
}


@media screen and (max-width: 767px) {
  .w2_plan .w2_plan_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_text2 {
    width: var(--width-content);
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_inner {
    padding-bottom: 30px;
  }

  .w2_plan_list_item_image {
    width: var(--width-content);
    margin-bottom: 5.33333vw;
    box-sizing: border-box;
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_title_en {
    font-size: 25px;
    line-height: normal;
  }

  .w2_plan_list_item_image .w2_plan_list_item_image_caption {
    margin-top: 0;
  }

  .w2_plan .w2_plan_list-wrap {
    margin-top: 15px;
  }

  .w2_plan .w2_plan_list_item_image {
    padding: 15px;
  }
}

@media screen and (min-width: 768px) {
  .w2_plan {
    --padding-vertical: 8.18%;
    position: relative;
  }

  #Main.w2_plan .w2_plan_list_item_inner {
    padding-bottom: 0;
  }

  .w2_plan .w2_plan_list {
    align-items: stretch;
    gap: 1.78%;
    margin: 0 auto 3.47222vw;
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_inner {
    height: 100%;
    padding-bottom: min(3.8888888889vw, 56px);
    box-sizing: border-box;
    border-radius: 5px;
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_inner::before {
    height: min(0.34722vw, 5px);
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_title {
    padding: 20px 0;
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_title_en {
    font-size: min(2.5vw, 36px);
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_title_ja {
    font-size: min(0.97222vw, 14px);
    line-height: min(1.73611vw, 25px);
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_icon {
    margin-right: min(1.38889vw, 20px);
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_icon .w2_plan_list_item_icon_img {
    width: min(5.97222vw, 86px);
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_text1 {
    font-size: min(1.25vw, 18px);
    line-height: min(2.22222vw, 32px);
    padding-top: min(0.69444vw, 10px);
    padding-bottom: 1.0416666667vw;
    margin-bottom: 28px;
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_text1::after {
    width: min(5.55556vw, 80px);
    height: 2px;
    margin-left: min(-2.77778vw, -40px);
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_text2 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 0;
    padding-bottom: 0;
    width: auto;
    height: auto;
    line-height: normal;
  }

  .w2_plan .w2_plan_list_item_button {
    padding-top: 0;
    padding-bottom: 0;
  }

  .w2_plan_list_item_image {
    width: 100%;
    margin-bottom: 1.38889vw;
  }

  .w2_plan_list_item_image_caption {
    font-size: 16px;
  }

  .w2_plan_list-wrap {
    margin-top: min(1.5vw, 15px);
  }

  .w2_plan_list-wrap li {
    font-size: 14px;
  }
}

@media screen and (min-width: 1440px) {
  .w2_plan .w2_plan_list dl dt {
    font-size: 18px;
    padding-left: 30px;
  }

  .w2_plan .w2_plan_list dl dt::before {
    width: 20px;
    height: 20px;
  }

  .w2_plan .w2_plan_list dl dd {
    font-size: 18px;
    padding-left: 45px;
  }

  .w2_plan .w2_plan_list dl dd::before {
    width: 10px;
    left: 25px;
  }

  .w2_plan_list_item_image {
    margin-bottom: 20px;
  }

  .w2_plan .w2_plan_list_item .w2_plan_list_item_title {
    padding: 35px 0;
  }

}

/* ===============================================
  Contact / Form
=============================================== */
.w2_contact {
  margin-top: 5.2083333333vw;
}

.inquiry__form .error,
.inquiry__form .error_checkbox {
  bottom: -25px;
}

#ContactForm .w2_form_input_outer {
  position: relative;
}

@media screen and (max-width: 767px) {
  #ContactForm .w2_form_input_outer {
    border-bottom: 0;
  }
}

.w2_form_input_outer_privacy {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .w2_contact {
    margin-top: 0;
  }

  .w2_contact .w2_content .w2_form_inner .w2_form_input_outer .w2_form_input_title {
    margin-bottom: 0.5vw;
  }

  .w2_contact .w2_content .w2_form_inner .w2_form_input_outer_other {
    padding-bottom: 0 !important;
  }

  .w2_form_input_outer.w2_form_input_outer_submit {
    padding-top: 1.5vw;
  }
}

@media screen and (min-width: 1440px) {
  .w2_contact .w2_content .w2_form_inner .w2_form_input_outer {
    margin-bottom: 4px;
    padding-bottom: 12px;
  }

  .w2_contact .w2_content .w2_form_inner .w2_form_input_outer .w2_form_input_title {
    margin-bottom: 8px;
  }

  .w2_form_input_outer.w2_form_input_outer_submit {
    padding-top: 20px;
  }
}

/* ===============================================
  Case Study / Integration
=============================================== */
.w2_casestudy .w2_container .w2_casestudy_inner {
  margin-left: 0;
  width: 100%;
}

.w2_integration_button {
  border-radius: 25px;
  line-height: normal;
  display: inline-block;
  color: #FFFFFF;
  background: #fb6020;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  margin-top: 15px;
  position: relative;
}

.w2_common_button {
  position: relative;
}

.w2_common_button:before,
.w2_common_button::after,
.w2_integration_button::before,
.w2_integration_button::after {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  right: 15px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

.w2_common_button::before,
.w2_integration_button::before {
  transform: rotate(45deg);
}

.w2_common_button::after,
.w2_integration_button::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .w2_integration_button {
    padding: 10px;
    min-width: 300px;
  }

  .w2_common_button {
    min-width: 300px;
  }
}

@media screen and (min-width: 768px) {
  .w2_integration_button {
    border-radius: min(1.38889vw, 20px);
    font-size: min(1.11111vw, 16px);
    line-height: min(2.77778vw, 40px);
    padding-left: min(2.91667vw, 42px);
    padding-right: min(2.91667vw, 42px);
    min-width: min(18.05556vw, 260px);
  }
}

.tx__blue {
  color: var(--color-w2-blue);
}