:root {
  /* color */
  --brand-primary: #0E43A9;
  --brand-primary-darker: #0D347E;
  --brand-secondary: #E2F6FE;
  --brand-secondary-darker: #17A6E5;
  --text-default: #333;
  --text-muted: #353535;
  --background-default: #FFF;
  --background-gray: #F4F4F8;
  --gray-scale-gray-3: #D7D7D7;
  --gray-scale-gray-8: #7C7C7C;
  --gray-scale-gray-10: #5C5C5C;
  --gray-scale-gray-11: #484848;
  --gray-scale-gray-12: #353535;

  /* グラデーション */
  --bg-gradation: linear-gradient(90deg, #0E43A9 0%, #17A0E5 100%);

  /* font */
  --font-family-body: "Hiragino Kaku Gothic ProN";
  --font-line-height-sm: 24px;
  --font-line-height-md: 32px;
  --font-letter-spacing-sm: -1px;

  /* spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-3xl: 104px;

  /* border */
  --border-radius-rounded: 8px;
  --border-primary: #D9D9D9;

}

html {
  scroll-behavior: smooth;
}

/* reset.cssの影響を受けないように追加 */
input {
  all: revert;
}

.partner_navi,
.partner_navi *,
.partner_header,
.partner_header *,
main,
main *,
.partner_footer,
.partner_footer * {
  box-sizing: border-box;
}

.partner_navi .inner,
.partner_header .inner,
.partner_footer.inner,
main .inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

main h2 {
  margin-bottom: 32px;
  font-size: 32px;
  line-height: 160%;
}

main h3 {
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 160%;
}

main p {
  font-size: 16px;
  line-height: 170%;
}

main a {
  color: #0e43a9;
  text-decoration: underline;
}

main a:hover {
  text-decoration: none;
}

@media ( max-width: 600px ){
  main h3 {
    margin-bottom: 24px;
  }
}

/* 共通パーツ
 * ----------------------- */

.button_primary {
  margin: 40px auto 0;
  display: flex;
  max-width: 100%;
  width: 614px;
  height: 74px;
  background-color: var(--brand-primary);
  border-radius: 2px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 170%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.button_primary:hover {
  opacity: 0.8;
}

@media ( max-width: 600px ){
  .button_primary {
    font-size: 18px;
    padding: 21px 24px;
    font-weight: normal;
    line-height: 120%;
    border-radius: 4px;
  }
}

/* partner_navi
 * ----------------------- */
.partner_navi {
  background-color: #0e43a9;
  font-size: 15px;
}

.partner_navi .inner {
  display: flex;
  gap: 30px;
  min-height: 64px;
  justify-content: space-between;
  align-items: center;
}

.partner_navi a {
  color: #fff;
}

.service_title {
  font-weight: 600;
  font-variation-settings: "wght" 600;
}

.partner_navi .service_title {
  line-height: 1.5;
}

.partner_navi .sp_navi_open {
  display: none;
}

.navi_list {
  display: flex;
  gap: 24px;
  align-items: center;
  position: relative;
}

.navi_list li a {
  font-size: 15px;
  padding: 10px 0;
}

.partner_navi a:hover {
  opacity: 0.8;
}

.partner_navi .link_to_sales:hover .navi_child_list {
  display: flex;
}

.navi_child_list {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  position: absolute;
  top: 40px;
  background-color: var(--brand-primary-darker);
  padding: 6px 32px 6px 24px;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.10);
}

.navi_child_list a:hover {
  text-decoration: underline;
}

.partner_navi .link_to_sales a {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navi_list .link_to_inquiry a {
  display: flex;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 0 30px;
  min-height: 40px;
  justify-content: center;
  align-items: center;
}

.partner_navi .sp_navi_close {
  display: none;
}


@media (max-width: 959px) {
  .partner_navi .inner {
    flex-direction: column;
    padding: 0;
    position: relative;
    min-height: unset;
  }

  .partner_navi .service_title {
    background-color: var(--brand-primary-darker);
    width: 100%;
    height: 56px;
    padding: 14px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .partner_navi .sp_navi_open {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  .partner_navi .sp_navi_open.rotate {
    rotate: 180deg;
  }

  .partner_navi .navi_list {
    display: none;
    position: fixed;
    flex-direction: column;
    background-color: #F4F4F8;
    width: 100%;
    height: calc(100dvh - 105px - env(safe-area-inset-bottom, 0));
    top: 106px;
    z-index: 30;
    gap: 0;
    padding-top: 24px ;
  }

  .partner_navi .navi_list.open {
    display: flex;
  }

  .partner_navi .navi_list li {
    padding: 0 20px;
    width: 100%;
  }

  .partner_navi .navi_list li a {
    color: var(--text-default);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 60px;
    align-items: flex-start;
    border-bottom: 1px solid var(--gray-scale-gray-3);
  }

  .partner_navi .navi_list .link_to_sales {
    padding-bottom: 0;
  }

  .partner_navi .navi_list .link_to_sales a {
    border: none;
  }

  .partner_navi .navi_list .link_to_sales svg {
    display: none;
  }

  .partner_navi .navi_list .link_to_sales .navi_child_list {
    position: relative;
    display: block;
    top: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 0 0 0 24px;
  }

  .partner_navi .navi_list .link_to_sales .navi_child_list li a {
    font-weight: 300;
    border: none;
  }

  .partner_navi .navi_list .link_to_technical a {
    border-top: 1px solid var(--gray-scale-gray-3);
  }

  .navi_list .link_to_inquiry a {
    display: inline;
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: auto;
  }

  .partner_navi .navi_list .sp_navi_close {
    display: block;
    margin-top: auto;
    padding: 40px 20px calc(env(safe-area-inset-bottom, 0) + 16px);
    border-top: 1px solid var(--gray-scale-gray-3);
  }

  .partner_navi .navi_list .close_button {
    font-size: 16px;
    background-color: var(--background-default);
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-scale-gray-8);
    border-radius: 4px;
    color: var(--gray-scale-gray-11);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
  }

}

/* header
 * ----------------------- */
.partner_header {
  min-height: 280px;
  padding-top: 64px;
  background: linear-gradient(#0E43A9, #1374C9);
  border-radius: 0 0 0 140px;
}

.partner_header h1 {
  color: #fff;
  font-size: 33px;
  line-height: 160%;
  height: 118px;
  width: fit-content;
}

.partner_header h1 span {
  display: block;
}

.partner_header .inner {
  position: relative;
}

.partner_header .inner::before {
  content: "";
  width: 398px;
  max-width: 40%;
  height: 370px;
  right: 0;
  top: -20px;
  background-image: url(./images/mainvisual.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 20;
}

.partner_header .header-cta {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.partner_header .button {
  box-sizing: border-box;
  height: 48px;
  border-radius: 4px;
  border: solid 1px #fff;
  font-size: 14px;
  font-family: var(--font-family-body);
  letter-spacing: 0.56px;
  font-feature-settings: 'pwid' on;
  line-height: 170%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 400;
  padding: 8px 16px;
}

.partner_header .button_text {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.partner_header .button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.partner_header .button-primary-action {
  background-color: var(--brand-primary-darker);
  width: 247px;
}

.partner_header .button-primary-action:hover {
  background-color: #fff;
  color: var(--brand-primary-darker);
  border-color: var(--brand-primary-darker);
}


.partner_header .button-secondary-action {
  background-color: var(--brand-secondary-darker);
  width: 200px;
}

.partner_header .button-secondary-action:hover {
  background-color: #fff;
  color: var(--brand-secondary-darker);
  border-color: var(--brand-secondary-darker);
}

@media (max-width: 1100px) {
  .partner_header {
    border-radius: 0 0 0 57px;
  }
}

@media (max-width: 959px){

  .partner_header .header-cta {
    padding: 40px 0 96px;
    width: 60%;
  }

  .partner_header .button {
    height: auto;
    width: 161px;
    padding: 12px 0;
    font-weight: 400;
    justify-content: center;
    text-align: center;
  }

  .partner_header .button_text {
    display: inline;
    width: fit-content;
  }

  .partner_header .button svg {
    display: none;
  }
}

@media (max-width: 600px){
  .partner_header .header-cta {
    width: 100%;
  }
}


/* main > .layout_introduction
 * ----------------------- */
.layout_introduction {
  padding: 160px 0 100px;
  position: relative;
}

.layout_introduction::before,
.layout_introduction::after {
  content: "";
  display: block;
  position: absolute;
  width: 280px;
  height: 100px;
  top: 0;
  right: 0;
  border-radius: 0 100px 0 0;
/*  border-radius: 50% 320px / 0 180px 0 0; 楕円形*/
}

@media (max-width: 959px) {
  .layout_introduction::before,
  .layout_introduction::after {
    border-radius: 0 41px 0 0;
  width: 41px;
  height: 41px;
  }
}

.layout_introduction::before {
  background-color: #fff;
  z-index: 10;
}

.layout_introduction::after {
  background-color: #1374C9;
  z-index: 1;
  border-radius: 0;
}

.service_intro {
  display: flex;
  gap: 56px;
}

.service_intro_text {
  flex: 0 0 425px;
}

.service_intro_image {
  flex: 0 1 506px;
}

.service_intro_image img {
  width: 100%;
}

/* main > .layout_introduction > .find_partner
 * ----------------------- */
 .find_partner {
  padding: 100px 0;
  background-color: var(--background-gray);
}

.find_partner h3 {
  margin-bottom: 16px;
}

.find_partner p {
  margin-bottom: 16px;
}

.find_partner .introduction_flow {
  background-color: var(--background-default);
  padding: 56px 40px 48px;
  border: 1px solid var(--border-primary);
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  border-radius: 16px;
  box-shadow: 0px 1px 15px 0px rgba(163, 163, 205, 0.10);
  font-family: var(--font-family-body);
}

.find_partner .introduction_flow h4 {
  color: #1d1d1d;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}

.find_partner .step_list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.find_partner .step_item {
  width: 270px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray-scale-gray-12);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 170%; /* 27.2px */
}

.find_partner .step_item::after {
  content: url('./images/icon_triangle_right.svg');
  position: absolute;
  right: -28px;
  top: 46px;
  width: 15px;
  height: 33px;
}

.find_partner .step_item:last-child:after {
  display: none;
}

.find_partner .step_title {
  color: #1d1d1d;
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 20px;
}

.find_partner .step_description {
  color: #1d1d1d;
  font-weight: 400;
  text-align: left;
}

.find_partner .partner_buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.find_partner .button {
  box-sizing: border-box;
  height: 54px;
  width: fit-content;
  gap: 8px;
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-family-body);
  letter-spacing: 0.56px;
  font-feature-settings: 'pwid' on;
  line-height: 170%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  padding: 8px 16px;
  text-decoration: none;
}

.find_partner .button:hover {
  opacity: 0.7;
}

.find_partner .goto_form_button {
  width: 310px;
  color: #fff;
  background: linear-gradient(93deg, #0E43A9 -0.99%, #179FE5 100%);
}

.find_partner .goto_list_button {
  width: 249px;
  border: solid 1px #1163C8;
  color: #1163C8;
  background-color: #fff;
}


@media ( max-width: 960px ){
  .find_partner .step_item {
    width: 30%;
  }
}

@media ( max-width: 740px ){
  .find_partner .step_list {
    flex-direction: column;
    gap: 16px;
  }

  .find_partner .step_item {
    width: 100%;
  }

  .find_partner .step_item::after {
    rotate: 90deg;
    top: unset;
    bottom: unset;
    position: relative;
    left: 0;
  }

  .partner_buttons {
    flex-direction: column;
    align-items: center;
  }

  .partner_buttons .button {
    max-width: 100%;
    width: 310px;
    justify-content: center;
  }

  .partner_buttons .button svg {
    display: none;
  }

}

@media ( max-width: 600px ){
  .find_partner h3 {
    font-size: 26px;
    margin-bottom: 24px;
  }

}

/* main > .layout_introduction > .explain_program
 * ----------------------- */
.explain_program {
  background-color: var(--background-default);
  padding: 100px 0;
}

.program_list {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.program_list li {
  flex: 0 1 460px;
  min-height: 400px;
  padding: 56px 40px 48px;
  border-radius: 16px;
  background-color: #fff;
  text-align: center;
  border: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program_image {
  margin-bottom: 24px;
  height: 60px;
}

.program_list h5 {
  margin-bottom: 16px;
  font-size: 20px;
}

.program_list p {
  margin-bottom: 20px;
  text-align: left;
}

p.link_to_sales,
p.link_to_list {
  margin-top: auto;
  text-align: center!important;
}

.link_to_list .fa-arrow-right,
.link_to_sales .fa-arrow-right {
    padding-left: 8px;
  font-size: 20px;
}

/* main > .layout_flow
 * ----------------------- */
.layout_flow {
  padding: 100px 0;
  background-color: #fff;
}

.layout_flow h3 + p {
  margin-bottom: 48px;
}

.flow_list {
  display: flex;
  margin-bottom: 60px;
  gap: 106px;
  justify-content: space-evenly;
}

.flow_list li {
  position: relative;
  text-align: center;
}

.flow_list li::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  right: -84px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-width: 20px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #0e43a9;
}

.flow_list li:last-child:after {
  display: none;
}

.flow_list .flow_image {
  margin-bottom: 20px;
}

.flow_list_areas {
  margin-top: 64px;
}

/* main > .layout_flow > .term_discription
 * ----------------------- */
.term_discription {
  padding: 26px 22px;
  border-radius: 2px;
  background-color: #f4f4f8;
}

.term_discription p {
  margin-bottom: 10px;
  line-height: 28px;
}


.term_sales_list li {
  margin-left: 20px;
  font-size: 15px;
  list-style: square;
  line-height: 25px;
}

/* main > .layout_news
 * ----------------------- */
.layout_news {
  padding: 100px 0;
  background-color: var(--background-gray);

}


 /* main > .layout_news > .news_list
 * ----------------------- */
.news_list {
  background-color: var(--background-default);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  border-radius: 2px;
  border: 1px solid var(--border-primary);
}

.news_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-feature-settings: 'pwid' on;
}

.news_no_item {
    font-size: 16px;
}

.news_date {
  display: block;
  font-size: 15px;
  width: 140px;
  letter-spacing: 0.6px;
  flex-shrink: 0;
}

.news_title {
  font-size: 16px;
  letter-spacing: 0.64px;
  flex-shrink: 1;
}

@media ( max-width: 960px ){
  .news_list {
    gap: 32px;
    border-radius: 16px;
  }

  .news_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* footer
 * ----------------------- */
.partner_footer {
  min-height: 248px;
  padding: 60px 0 70px;
  text-align: center;
  background-image: url(./images/footer.png);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color:rgba(4,40,108,0.7);
  background-blend-mode: multiply;
}


.partner_footer p {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-variation-settings: "wght" 600;
}

.partner_footer .notice {
  color: #fff600;
}

.partner_footer .behave_button {
  display: flex;
  max-width: 614px;
  min-height: 80px;
  margin: auto;
  background-color: #fff;
  color: #0e43a9;
  font-size: 20px;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 170%;
  justify-content: center;
  align-items: center;
}

.partner_footer a:hover {
  opacity: 0.8;
}




@media ( max-width: 960px ){
  .flow_list {
    flex-direction: column;
  }

  .flow_list li::after {
    right: 0;
    bottom: -320px;
    left: 0;
    transform: rotate(90deg);
  }
}

@media ( min-width: 601px ){
  .only_sp {
    display: none;
  }
}


@media ( max-width: 600px ){
  .only_pc {
    display: none;
  }

  .layout_introduction {
    padding: 272px 0 0;
  }

  .layout_introduction .inner {
    padding: 64px 20px;
  }

  .inner {
    padding: 0 20px;
  }

  .service_intro {
    flex-direction: column;
  }

  .service_intro_text {
    flex-basis: auto;
  }

  .service_intro_image {
    flex-basis: auto;
  }

  .find_partner {
    padding: 64px 0;
  }

  .explain_program {
    padding: 64px 0;
  }

  .explain_program h3 {
    font-size: 26px;
  }

  .program_list {
    flex-direction: column;
  }

  .program_list li {
    flex-basis: auto;
    min-height: auto;
    padding: 28px 20px 24px;
  }

  .term_list {
    flex-direction: column;
  }

  .term_sales {
    flex-basis: auto;
  }

  .term_tech {
    flex-basis: auto;
  }

  .layout_flow {
    padding: 0 0 64px;
  }

  .layout_news {
    padding: 64px 0;
  }

  .partner_footer .behave_button {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
  }
}

@media ( max-width: 959px ){
  .inner {
    padding: 0 20px;
  }
}

@media (max-width: 959px) {
  .partner_header {
    border-radius: 0 0 0 57px;
  }
  .partner_header h1 {
    width: 60%;
    height: fit-content;
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  main h2 {
    font-size: 28px;
  }

  .partner_header h1 {
    width: fit-content;
    font-size: 28px;
  }

  .partner_header .inner::before {
    width: 90%;
    max-width: 90%;
    margin: auto;
    top: 78%;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/*セールスパートナー
 * ----------------------- */

.sales-partner {
  background-color: #fff;
}

@media (max-width: 959px) {
  .sales-partner section {
    padding: 0 3%;
  }
}

.sales-partner_header.partner_header {
  min-height: 218px;
}
.sales-partner_header.partner_header .inner::before {
  content: none;
}

.sales-partner_header.partner_header .service_description {
  color: #FFF;
  font-feature-settings: 'pwid' on;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.64px;
  margin-top: 8px;
  padding-bottom: 53px;
}

.sales-partner .layout_introduction {
  background-color: #fff;
  padding: 120px 0 100px;
}

@media (max-width: 959px) {
  .sales-partner .layout_introduction {
    padding: 15% 3% 15%;
  }
}

.sales-partner .layout_introduction::before {
  background-color: #fff;
}

.sales-partner .service_intro {
  display: block;
  margin-bottom: 72px;
}

.sales-partner .service_intro_image {
  margin: 64px auto 0;
}


@media (max-width: 959px) {
  .sales-partner .service_intro_image {
    margin: 10% auto 0;
  }

  .sales-partner .service_intro {
    margin-bottom: 10%;
  }
}

.sales-partner .service_intro_areas {
  display: flex;
  flex-direction: column;
  gap: calc(2 * var(--spacing-xl));
}

@media (max-width: 799px) {
  .sales-partner .service_intro_areas {
    gap: var(--spacing-xl);
  }
}

.batch_area {
  border: 1px solid#D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding: 16px 0;
  border-radius: 0px 80px;
}

.sakura-batch img {
  width: 208px;
}


.batch_text {
  width: 413px;
}

.note {
  font-size: 14px;
  margin-top: 16px;
}

@media (max-width: 959px) {
  .batch_area {
    padding: 40px 10% 40px 5%;
    gap: 3%;
  }

  @media (max-width: 599px) {
    .batch_area {
      display: block;
      padding: 30px 10% 70px;
    }
    .batch_text {
      width: 100%;
    }
    .sakura-batch img {
      width: 70%;
      margin: 0 auto;
      display: block;
    }
    .note {
      text-align: right;
    }
    .note-temporary {
      text-align: left;
    }
  }
}

.briefing_area {
  background: #EEF4FF;
  padding: 40px 48px;
  border-radius: 0px 80px;
  font-family: var(--font-family-body);
}

.briefing_heading {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  color: #1163C8;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.briefing_text {
  margin-bottom: 32px;
}

.briefing_links {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
}

.briefing_links a {
  width: 192px;
  border-radius: 4px;
  text-decoration: none;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
}

.briefing_links a:hover {
  opacity: 0.7;
}

.briefing_video {
  color: #fff;
  background: var(--bg-gradation);
}

.briefing_contact {
  background-color: #fff;
  border: 1px solid #1163C8;
}

@media (max-width: 799px) {
  .briefing_area {
    padding: 48px 24px;
  }
  .briefing_heading {
    font-size: 22px;
    margin-bottom: var(--spacing-sm);
  }

  .briefing_links {
    flex-direction: column;
    align-self: center;
  }

  .briefing_links a {
    width: 100%;
    justify-content: center;
    height: 51px;
  }

  .briefing_links svg {
    display: none;
  }
}

/*セールスパートナー > パートナー一覧
 * ----------------------- */
.list_area {
  margin-top: 64px;
}

.list_area .behave_button {
  display: flex;
  max-width: 600px;
  min-height: 64px;
  margin: auto;
  background: var(--bg-gradation);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  font-family: var(--font-family-body);
  line-height: 170%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.list_area .behave_button:hover {
  opacity: 0.8;
}

@media (max-width: 799px) {
  .list_area {
    margin-top: 40px;
  }
}

/*セールスパートナー > 提供プログラム
 * ----------------------- */

.layout_program {
  background-color: #f4f4f8;
  padding: 100px 0;
}

.layout_program .program_list {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.layout_program .program_list li {
  flex-grow: 1;
  width: 50%;
  box-sizing: border-box;
  padding: 32px 40px 40px;
}

@media (max-width: 959px) {
  .layout_program .program_list li {
    width: 100%;
    padding: 16px 20px 20px;
  }
}

.layout_program .program_list h4 {
  font-size: 22px;
  line-height: 1.6;
}

.layout_program .program_list .program_image {
  height: 167px;
  display: flex;
  align-items: center;
  justify-content: center;

}


/*セールスパートナー > 提供プログラム >　エンジニア向け
 * ----------------------- */

.layout_program .program_list .program-engineer {
  text-align: left;
  padding: 40px 40px 32px
}

@media (max-width: 959px) {
  .layout_program .program_list .program-engineer {
    padding: 32px 20px 16px;
  }
}

.layout_program .program_list .program-engineer .engineer-training {
  display: flex;
  background-color: #f4f4f8;
  justify-content: space-between;
  padding: 32px 24px;
  gap: 32px;
  margin-top: 16px;
}

.layout_program .program_list .program-engineer .engineer-training ul {
  display: flex;
  flex-wrap:wrap;
}

.layout_program .program_list .program-engineer li.engineer-training_ex {
  min-height: auto;
  padding: 5px 0 0;
  display: block;
  flex: auto;
  align-items: center;
  border-radius: 1px;
  border: solid #DADAE1 1px;
  width: auto;
  height: 35px;
  box-shadow: none;
  margin: 3px;
  font-size: 15px;
}

.layout_program .lead {
  text-align: center;
  margin-top: 60px;
  font-size: 20px;
}

.layout_program .program_list .program-engineer .program-engineer_image img {
  width: 391px;
}

@media (max-width: 799px) {
  .layout_program .program_list .program-engineer li.engineer-training_ex {
    height: auto;
    display: block;
  }

  .layout_program .program_list .program-engineer .engineer-training {
    padding: 5%;
  }

  .layout_program .program_list .program-engineer .engineer-training ul {
    margin-bottom: 4%;
  }
    .layout_program .program_list .program-engineer .engineer-training {
    display: block;
  }
  .layout_program .program_list .program-engineer .program-engineer_image img {
    width: 100%;
  }
}

@media (max-width: 959px) {
  .layout_program .program_list .program-engineer li.engineer-training_ex {
    height: auto;
    padding: 2% 1%;
  }
}





@media (max-width: 959px) {
  .sales-partner section {
    padding: 12% 2%;
  }
}

/*セールスパートナー > よくある質問
 * ----------------------- */

.layout_faq {
  background-color: var(--background-gray);
  padding: 100px 0;
}

.layout_faq .faq_list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.layout_faq .faq_list .qa {
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius-rounded);
  background-color: var(--background-default);
}

/* 質問 */
.layout_faq .faq_list .question-button {
  border: none;
  border-radius: 0;
  background-color: transparent;

  width: 100%;
  cursor: pointer;
  padding: var(--spacing-md) var(--spacing-xl);

  display: flex;
  gap: var(--spacing-lg);
  justify-content: space-between;
  align-items: center;
  color: var(--text-default);
  font-family: var(--font-family-body);
  font-style: normal;
}

@media (max-width: 799px) {
  .layout_faq .faq_list .question-button {
    align-items: start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
  }
}

.layout_faq .faq_list .question-button:hover {
  background-color: var(--brand-secondary);
  border-radius: var(--border-radius-rounded);
}

.layout_faq .faq_list .question {
  font-size: 20px;
  font-style: normal;
  line-height: var(--font-line-height-md);
  display: flex;
  gap: 10px;
  text-align: left;
}

@media (max-width: 799px) {
  .layout_faq .faq_list .question {
    font-size: 18px;
    line-height: var(--font-line-height-sm);
    gap: 4px;
  }
}

.layout_faq .faq_list .question-number {
  text-align: left;
  min-width: 54px;
}

@media (max-width: 799px) {
  .layout_faq .faq_list .question-number {
    min-width: 50px;
  }
}

.layout_faq .faq_list .question-button i {
  color: #0E43A9;
  margin-left: auto;
  font-size: 32px;
}
/* // 質問 */

/* 回答オープン */
.layout_faq .faq_list .open .question-button {
  display: flex;
  background-color: var(--brand-secondary);
  border-radius: var(--border-radius-rounded) var(--border-radius-rounded) 0 0;
  border-bottom: 1px solid var(--border-primary);
}

.layout_faq .faq_list .open .question-button:hover {
  border-radius: var(--border-radius-rounded) var(--border-radius-rounded) 0 0;
}

.layout_faq .faq_list .open .question-button i {
  transform: rotate(180deg);
}

.layout_faq .faq_list .open .answer {
  display: flex;
}

/* // 回答オープン */

/* 回答 */
.layout_faq .faq_list .answer {
  display: none;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-lg) var(--spacing-3xl);

}

@media (max-width: 799px) {
  .layout_faq .faq_list .answer {
    padding: var(--spacing-lg);
  }
}

.layout_faq .faq_list .answer ol,
.layout_faq .faq_list .answer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: var(--font-line-height-sm);
}


.layout_faq .faq_list .answer .number,
.layout_faq .faq_list .answer .disc {
  padding-left: 1.4rem;
}

.layout_faq .faq_list .answer li::marker {
  padding-right: 20px;
}

.layout_faq .faq_list .answer .number li {
  list-style-type: decimal;
}

.layout_faq .faq_list .answer .disc li {
  list-style-type: disc;
}

.layout_faq .faq_list .answer a.external:after {
  display: inline-block;
  margin-left: 4px;
  font-family: 'fontawesome';
  content: "\f08e";
}

/* // 回答 */





/*セールスパートナー > セールスパートナー一覧
 * ----------------------- */

 #partner-contents {
  display: flex;
  gap: 24px;
  justify-content: center;
  /* padding: 120px 0; */
  position: relative;
 }


@media (max-width: 799px) {
  #partner-contents {
    width: 100%;
    flex-direction: column;
  }
}


/* フィルター */

#sp-filter-button {
  display: none;
  justify-content: end;
  padding: 0 20px;
}

#sp-filter-button button {
  background: none;
  border: none;
  color: #0E43A9;

  font-feature-settings: 'pwid' on;
  /* pc/base/regular */
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.64px;
}

@media (max-width: 799px) {
  #sp-filter-button {
    display: flex;
  }
}

#sp-filter {
  display: none;
}

@media (max-width: 799px) {
  #sp-filter {
    display: block;

  }
}

#sp-filter h3 {
  margin-bottom: 0;
  font-feature-settings: 'pwid' on;
  /* pc/lg/bold */
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 150%; /* 30px */
  letter-spacing: 0.8px;
}

#sp-filter .close-button {
  background: none;
  border: none;
  font-size: 32px;
}

#sp-filter .close-button::before {
  font-family: 'fontawesome';
  color: #5C5C5C;
  content: "\f057";
}

#sp-filter-menu {
  background: #F4F4F8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  min-height: 100dvh;
  min-width: 100vw;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

#sp-filter-menu .sp-filter-body {
  flex: 1;
  overflow-y: auto;
}

#sp-filter-menu .sp-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 42px 20px;
}

#sp-filter-menu .buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 40px 0 calc(40px + env(safe-area-inset-bottom, 0));
  bottom: 0;
  background-color: #F4F4F8;
  border-top: 1px solid #D7D7D7;
  z-index: 10;
}

#sp-filter-menu .buttons button {
  width: 153px;
  padding: 14px 16px;
  border-radius: 4px;
  background-color: #FFF;
}

#sp-filter-menu .reset_button {
  border: 1px solid  #7C7C7C;
  background-color: #FFF;
  color: #484848;
}

#sp-filter-menu .reset_button::before {
  content: "\f01e";
  font-family: "FontAwesome";
  color: #7C7C7C;
}

#sp-filter-menu .apply_button {
  border: none;
  background: linear-gradient(93deg, #0E43A9 -0.99%, #179FE5 100%);
  color: #FFF;
}

#pc-filter {
  width: 236px;
  min-height: 1746px;
  border-radius: 8px;
  background: #F4F4F8;
  padding: 24px 8px;
  margin-top: 48px;
}

@media (max-width: 799px) {
  #pc-filter {
    display: none;
  }
}

#pc-filter h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  padding: 0 10px;
  font-weight: 400;
}

.filter-list section {
  padding: 0;
}

@media (max-width: 799px) {
  .filter-list section {
    padding: 0 20px;
  }
}

 .filter-list fieldset {
  border: none;
 }

 .filter-list legend {
  font-feature-settings: 'pwid' on;
  /* pc/base/bold */
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  font-size: 16px;
  width: 100%;
  border-bottom: 1px solid #D7D7D7;
 }

 .filter-list legend button {
  color: #5C5C5C;
  background: none;
  border: none;
 }

 .filter-list legend button:hover {
  cursor: pointer;
 }

 .filter-list legend button.closed {
    transform: rotate(180deg);
 }

 .filter-list .search-form {
  padding: 16px 10px;
 }

 .filter-list .search-box {
  display: flex;
 }

 .filter-list .search-text-box {
  flex-grow: 1;
  width: 100%;
  padding: 10px;
  border-radius: 2px 0 0 2px;
  border: 1px solid #A3A3A3;
  border-right: none;
 }

 @media (max-width: 799px) {
  .filter-list .search-text-box {
    border: 1px solid #A3A3A3;
    height: 45px;
  }
}

 .filter-list .search-button {
  border: none;
  cursor: pointer;
  height: 40px;
 }

 .filter-list .search-validation-message {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.56px;
  font-size: 12px;
  color: red;
  margin-top: 8px;
 }

 .filter-list .filter-items {
  padding: 12px 0;
  border-bottom: 1px solid #D7D7D7;
 }

 .filter-list .filter-category:not(:first-child) {
  border-top: 1px dashed #D7D7D7;
 }

 .filter-list .filter-category .category-name {
  padding: 8px 10px;
  color: #484848;
  font-size: 14px;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
 }
 .filter-list .filter-category .filter-item {
  display: inline-flex;
  width: 50%;
 }



 .filter-list .filter-item {
  padding: 8px 10px;
  font-size: 14px;
  display: flex;
  gap: 8px;
 }

 .filter-list .filter-item input,
 .filter-list .filter-item label {
  cursor: pointer;
 }

 @media (max-width: 799px) {
  .filter-list .filter-item {
    font-size: 16px;
  }
}


 .filter-reset {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 0 10px;
}

.filter-reset .reset_button {
  color: #484848;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 84px;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid #7C7C7C;
  background: #FFF;
  cursor: pointer;
}

.filter-reset .reset_button::before {
  content: "\f01e";
  font-family: "FontAwesome";
  color: #7C7C7C;
}

.filter-reset .reset_button:hover {
  color: #FFFFFF;
  border: 1px solid #8F8F8F;
  background: #8F8F8F;
}

.filter-reset .reset_button:hover::before {
  color: #fff;
}



/* // フィルター */

/* パートナーリスト */
#partner-list_wrapper {
  max-width: 700px;
}

@media (max-width: 799px) {
  #partner-list_wrapper {
    margin: 0 auto;
  }
}

#partner-counter {
  font-size: 14px;
  line-height: 170%;
  padding-bottom: 24px;
  text-align: right;
  color: #484848;
}

#partner-counter .current {
  font-weight: 600;
  color: var(--text-default);
}

@media (max-width: 799px) {
  #partner-counter {
    padding: 0 20px 16px;
  }
}

#partner-list {
  font-feature-settings: 'pwid' on;
  font-size: 14px;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 700px;
}

@media (max-width: 799px) {
  #partner-list {
    min-width: 100%;
    padding: 0 20px;
  }
}


#partner-list section.partner {
  display: flex;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  background: var(--Gray-scale-Gray-0, #FFF);
}

@media (max-width: 959px) {
  #partner-list section.partner {
    padding: 0;
  }
}

@media (max-width: 799px) {
  #partner-list section.partner {
    /* width: 100%; */
    flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }
}

#partner-list .partner .inner-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  width: 240px;
}

@media (max-width: 799px) {
  #partner-list .partner .inner-left {
    padding: 0;
    width: 100%;
  }
}

#partner-list .partner .inner-right {
  padding: 24px 24px 24px 8px ;
}

@media (max-width: 799px) {
  #partner-list .partner .inner-right {
    padding: 0 ;
  }
}

#partner-list .partner-name {
  font-size: 20px;
  margin-bottom: 0px
}

#partner-list .partner-company-logo {
  width: 192px;
  padding: 0 5%;
  margin: 0 auto;
}

#partner-list .partner-company-logo img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  box-sizing: border-box;
}

#partner-list .partner-certificated {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 799px) {
  #partner-list .partner-certificated {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}

#partner-list .partner-certificated .heading {
  font-weight: 400;
  font-variation-settings: "wght" 400;
  font-size: 12px;
}

@media (max-width: 799px) {
  #partner-list .partner-certificated .heading {
    font-size: 14px;
  }
}

#partner-list .partner-certificated-numbers {
  font-feature-settings: 'pwid' on;
  font-size: 14px;
  font-weight: 600;
  font-variation-settings: "wght" 600;
}


@media (max-width: 799px) {
  #partner-list .partner-certificated-numbers {
    font-size: 16px;
  }
}

#partner-list .partner-button a {
  display: flex;
  width: 192px;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  text-decoration: none;
}

@media (max-width: 799px) {
  #partner-list .partner-button a {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
  }
}

#partner-list .partner-button a::after {
  content: "\f054";
  font-family: "FontAwesome";
}

@media (max-width: 799px) {
  #partner-list .partner-button a::after {
    content: "";
  }
}

#partner-list .partner-case {
  color: #0E43A9;
  background: #FFF;
  border: 1px solid #0E43A9;
}

#partner-list .partner-contact {
  color: #fff;
  background: linear-gradient(93deg, #0E43A9 -0.99%, #179FE5 100%);
}

#partner-list .partner-contact:hover {
  opacity: 0.7;
}

#partner-list .partner-url {
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 4px;
}

@media (max-width: 799px) {
  #partner-list .partner-url {
    font-size: 14px;
    margin-top: 16px;
  }
}

#partner-list .partner-url::after {
  content: "\f08e";
  font-family: "FontAwesome";
  padding-left: 6px;
  color: #0E43A9;
  font-size: 14px;
}

#partner-list .partner-headquarters {
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D9D9D9;
}

#partner-list .partner-headquarters .heading {
  font-weight: 600;
  font-variation-settings: "wght" 600;
  padding-right: 16px;
}

#partner-list .partner-description {
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  font-size: 14px;
  margin: 16px 0;
  white-space: pre-wrap;
}

@media (max-width: 799px) {
  #partner-list .partner-description {
    font-size: 16px;
  }
}

#partner-list .visitable_areas {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #D9D9D9;
}

#partner-list .visitable_areas .heading {
  font-weight: 600;
  font-variation-settings: "wght" 600;
  flex-shrink: 0;
}

@media (max-width: 799px) {
  #partner-list .visitable_areas {
    flex-direction: column;
    gap: 4px;
  }
}

#partner-list .partner-conditions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  line-height: 170%; /* 20.4px */
  letter-spacing: 0.24px;
}

@media (max-width: 799px) {
  #partner-list .partner-conditions {
    font-size: 14px;
  }
}

#partner-list .partner-condition {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#partner-list .partner-condition .heading {
  line-height: 170%; /* 20.4px */
}

#partner-list .partner-tags {
  display: flex;
}


#partner-list .partner-example {
  background-color: #F4F4F8;
  padding: 12px;
  margin-top: 24px;
  font-feature-settings: 'pwid' on;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  font-size: 14px;
}

@media (max-width: 799px) {
  #partner-list .partner-example {
    font-size: 16px;
  }
}

#partner-list .partner-example .heading {
  font-weight: 600;
  font-variation-settings: "wght" 600;
  line-height: 170%; /* 23.8px */
  margin-bottom: 4px;
}

@media (max-width: 799px) {
  #partner-list .partner-example .heading {
    margin-bottom: 8px;
  }
}

#partner-list .partner-example ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#partner-list .partner-example li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 12px;
}

#partner-list .partner-example .ex-link::after {
  content: "\f08e";
  font-family: "FontAwesome";
  padding-left: 6px;
  color: #0E43A9;
  font-size: 14px;
}

#partner-list .not-found {
  margin-top: 48px;
}

#partner-list .not-found .filter-reset {
  justify-content: center;
}

/* // パートナーリスト */

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  gap:8px;
  margin: 64px auto 0 auto;
}

.pagination .page-item {
  font-family: "Hiragino Kaku Gothic ProN";
  text-align: center;
  font-feature-settings: 'pwid' on;
  /* margin: 2px 4px; */
  /* padding: 2px 4px; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  line-height: 1;
  width: 28px;
  height: 28px;
}

.pagination .page-item button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #7C7C7C;
  background: none;
  border: none;
  font-size: 14px;
}

.pagination .page-item button:hover {
  color: #0E43A9;
  text-decoration-line: underline;
  cursor: pointer;
}

.pagination .page-item .page-current {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  color: #0E43A9;
  border-radius: 100px;
  background: #E1EBFF;
  width: 100%;
  height: 100%;
}


/* // ページネーション */


/* 検索実行時のフェードアニメーション */
.fade-enter-active {
  transition: opacity 0.3s ease;
}
.fade-enter {
  opacity: 0;
}
/* // 検索実行時のフェードアニメーション */
