:root {
  /* color */
  --brand-primary: #0E43A9;
  --brand-primary-darker: #0D347E;
  --brand-secondary: #E2F6FE;
  --brand-secondary-darker: #17A6E5;
  --text-default: #333;
  --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;

  /* 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;

}

body {
  background-color: #fff;
}

.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;
}

/* 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;
}

.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(100vh - 105px);
    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;
    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: 218px;
  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%;
}

.partner_header h1 span {
  display: block;
}

.partner_header .inner {
  position: relative;
}

.partner_header .inner::before {
  content: "";
  width: 398px;
  height: 370px;
  right: 0;
  top: -20px;
  background-image: url(./images/mainvisual.png);
  position: absolute;
  z-index: 100;
}

/* main > .layout_introduction
 * ----------------------- */
.layout_introduction {
  padding: 160px 0 80px;
  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: #f4f4f8;
  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: 676px;
}

.technical-partner_header.partner_header .inner::before {
  content: none;
}

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

.technical-partner .layout_batch {
  background-color: #f4f4f8;
  padding: 100px 0;
}

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

.technical-partner .service_intro {
  display: block;
}

.technical-partner .service_intro_image {
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
}


/*batch_area
 * ----------------------- */
.batch_area {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding: 40px 0;
  border-radius: 0px 80px;
}

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


.batch_text {
  width: 413px;
}

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


/*テクニカルパートナー > layout_partner_list
 * ----------------------- */
 .technical-partner .layout_partner_list {
  background-color: #fff;
  padding: 100px 0;
}

.layout_partner_list .partner_list {
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  margin-bottom: 40px;
}

.layout_partner_list .partner_list_info {
  display: flex;
  height: 144px;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  justify-content: flex-start;
  padding: 16px 32px;
}

.layout_partner_list figure {
  padding: 24px;
}

.layout_partner_list img {
  width: 210px;
  height: 60px;
  object-fit: contain;
}

.layout_partner_list .css_net img {
  height: 80px;
}

.layout_partner_list .partner_list_name {
  display: flex;
  width: 620px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  }

.layout_partner_list .ttl {
  font-feature-settings: 'pwid' on;
  /* pc/lg/bold */
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: 0.8px;
}

.layout_partner_list a {
  color: #0E43A9;
  font-feature-settings: 'pwid' on;
  /* pc/s/regular_underline */
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  text-decoration-line: underline;
}

.layout_partner_list .text-link_mark-right_external-link::after {
  content: "\f08e";
  font-family: FontAwesome;
  margin: 0 6px;
}

.layout_partner_list .partner_list_decs  {
  display: flex;
  padding: 24px 32px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid #d9d9d9;
  background-color: #f4f4f8;
  padding: 24px 32px;
  border-radius: 0 0 8px 8px;
}

.layout_partner_list .partner_list_decs  p {
  padding-bottom: 24px;
}

.layout_partner_list .partner_list_info_condition {
  display: flex;
  padding: 24px 24px 0px 0px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid #d9d9d9;
}

.layout_partner_list .partner_list_info_condition dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.layout_partner_list .partner_list_info_tags{
  display: flex;
  align-items: center;
  gap: 16px;
}

.layout_partner_list dt {
  display: flex;
  flex-shrink: 0;
  color: var(--Gray-scale-Gray-12, #353535);
  font-feature-settings: 'pwid' on;
  /* pc/s/regular */
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}

.layout_partner_list .partner_list_info_tag {
  display: flex;
  gap: 0 8px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 0 0;
}

.layout_partner_list dd {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  color: var(--Gray-scale-Gray-12, #353535);
  font-feature-settings: 'pwid' on;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 20.4px */
  letter-spacing: 0.24px;
  border: 1px solid var(--Gray-scale-Gray-2, #E4E4E4);
  background: var(--Gray-scale-Gray-0, #FFF);
}

.layout_partner_list .contact_button {
    display: flex;
    max-width: 540px;
    min-height: 68px;
    padding: 8px;
    margin: auto;
    border-radius: 2px;
    background: linear-gradient(93deg, #0E43A9 -0.99%, #179FE5 100%);
    font-size: 20px;
    font-weight: 600;
    line-height: 170%;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.layout_partner_list .contact_button a {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: 0.8px;
  outline: none;
  overflow: hidden;
  text-decoration: none;
}

/*テクニカルパートナー > 提供プログラム
 * ----------------------- */

.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;
}

.program_list li {
  flex: 0 1 460px;
  min-height: 400px;
  padding: 56px 40px 48px;
  border-radius: 15px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 1px 15px 0px rgba(163, 163, 205, 0.10);
}

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

.program_list .program_image {
  margin-bottom: 24px;
}

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

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


/*テクニカルパートナー > パートナー契約までの流れ
 * ----------------------- */
 .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;
}

.term_discription {
  padding: 26px 22px;
  border-radius: 2px;
  background-color: #f4f4f8;
}

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

/* 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;
}

.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;
  line-height: 170%;
  justify-content: center;
  align-items: center;
}

.partner_footer a:hover {
  opacity: 0.8;
}

/* break-point 959px
 * ----------------------- */

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

  .partner_header {
    border-radius: 0 0 0 57px;
  }

  .technical-partner section {
    padding: 12% 2%;
  }

  .inner {
    padding: 0 20px;
  }

  .partner_header h1 {
    width: 50%;
    font-size: 28px;
  }

  .technical-partner .layout_introduction {
    padding: 15% 3% 15%;
  }

  .technical-partner .service_intro_image {
    margin: 10% auto 0;
  }

  .technical-partner .service_intro {
    margin-bottom: 0;
  }

  .layout_batch .batch_area {
    padding: 40px 10% 40px 5%;
    gap: 3%;
  }

  .technical-partner .layout_partner_list {
    padding: 12% 2%;
  }

  .technical-partner .partner_list_info {
    display: flex;
    padding: 16px 32px 24px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    height: auto;
  }

  .technical-partner .partner_list_name {
    width: auto;
    margin: 0 auto;
  }

  .layout_partner_list .partner_list_decs p {
    font-size: 14px;
  }


}

@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;
  }
}

/* break-point 600px
 * ----------------------- */

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

  .partner_header h1 {
    width: 100%;
    font-size: 28px;
  }

  .layout_introduction {
    padding: 70% 0 10%;
  }

  main h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
  }

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

  .inner {
    padding: 0 20px;
  }

  .link_to_sales a {
    display: block;
    border-radius: 1px;
    border: 1px solid #0e43a9;
    padding: 4%;
    width: 100%;
    text-align: center;
    text-decoration: none;
  }

  .technical-partner .service_intro {
    margin-bottom: 0;
  }

  .service_intro {
    flex-direction: column;
  }

  .service_intro_text {
    flex-basis: auto;
  }

  .service_intro_image {
    flex-basis: auto;
  }

  .service_intro_image img {
    width: 100%;
  }

  .batch_area {
    display: block;
    padding: 30px 10% 70px;
  }

  .batch_text {
    width: 100%;
    padding: 0 24px;
  }

  .sakura-batch img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .note {
    text-align: right;
  }

  .layout_partner_list .partner_list_info_tags {
    align-items: flex-start;
    gap: 16px;
  }

  .program_list {
    flex-direction: column;
  }

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

  .term_list {
    flex-direction: column;
  }

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




