@charset "UTF-8";
/* ==========================================================================
  基本
  ========================================================================== */
/*------------------------------------------------------------------------------------
  変数定義
  - 色
  - フォント
  - 角丸
  ある程度共通のもののみ変数化し、個別のコンポーネント固有のものは変数化しない
------------------------------------------------------------------------------------*/
:root {
  /* 色 */
  --color-normal: #262626;
  --color-gray: #666;
  --color-dark-gray: #525252;
  --color-black: #000;
  --color-white: #FFF;
  --color-orange: #F36500;
  --color-orange-on: #F57900;
  --color-blue: #1867C0;
  --color-blue-on: #1C7CCD;
  --color-sony-blue: #003366;
  --color-primary-green: #008A19;
  --color-yellow: #FFE500;
  --color-heading-blue-01: #003366;
  --color-heading-blue-02: #0C4A6E;
  /* p-plan-area移植用 */
  --color-green: #008A19;
  --color-dark-blue: #0C4A6E;
  --color-nomal: #262626;

  /* font-family */
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --font-family-lexend: "Lexend", serif;

  /* font-size：16px = 1remとして計算する */
  --font-size-10px: 0.625rem;
  --font-size-11px: 0.6875rem;
  --font-size-12px: 0.75rem;
  --font-size-13px: 0.8125rem;
  --font-size-14px: 0.875rem;
  --font-size-15px: 0.9375rem;
  --font-size-16px: 1rem;
  --font-size-17px: 1.0625rem;
  --font-size-18px: 1.125rem;
  --font-size-19px: 1.1875rem;
  --font-size-20px: 1.25rem;
  --font-size-21px: 1.3125rem;
  --font-size-22px: 1.375rem;
  --font-size-23px: 1.4375rem;
  --font-size-24px: 1.5rem;
  --font-size-25px: 1.5625rem;
  --font-size-26px: 1.625rem;
  --font-size-27px: 1.6875rem;
  --font-size-28px: 1.75rem;
  --font-size-29px: 1.8125rem;
  --font-size-30px: 1.875rem;
  --font-size-31px: 1.9375rem;
  --font-size-32px: 2rem;
  --font-size-40px: 2.5rem;
  --font-size-45px: 2.8125rem;
  --font-size-46px: 2.875rem;
  --font-size-47px: 2.9375rem;
  --font-size-48px: 3rem;
  --font-size-64px: 4rem;
  --font-size-88px: 5.5rem;

  /* font-weight */
  --font-weight-lighter: 300;
  --font-weight-normal: 400;
  --font-weight-semi-bold: 500;
  --font-weight-bold: 700;
  /* p-plan-area移植用 (typo維持) */
  --font-wight-normal: 400;
  --font-wight-semi-bold: 500;
  --font-wight-bold: 600;

  /* 角丸 */
  --border-radius-button: 8px;
  --border-radius-card: 8px;

  /* margin */
  --margin-centering: 0 auto;

  /* animation */
  --transition-all-01: all 0.2s ease 0s;
}


/*------------------------------------------------------------------------------------
  Resets
------------------------------------------------------------------------------------*/
* { box-sizing: border-box; }
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; }
html { line-height: 1; }
ol,ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption,th,td { text-align: left; font-weight: normal; vertical-align: middle; }
q,blockquote { quotes: none; }
q:before,q:after,blockquote:before,blockquote:after { content: none; }
a img { border: none; }
img { max-width: 100%; }
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary { display: block; }
summary::-webkit-details-marker { display: none; }

/* ==========================================================================
  共通スタイル
  ========================================================================== */
/*------------------------------------------------------------------------------------
  全体
------------------------------------------------------------------------------------*/
html {
  font-size: inherit;
}
body {
  overflow-x: hidden;
  -webkit-text-size-adjust:100%;
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: var(--color-normal);
}
main {
  overflow: hidden;
  background-color: #FAFCFF;
}

/*------------------------------------------------------------------------------------
  汎用クラス
------------------------------------------------------------------------------------*/
/* hidden */
.u-sp-hidden {
  display: none;
}
@media screen and (769px <= width) {
  .u-sp-hidden {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-md-hidden {
    display: block;
  }
}

@media screen and (1025px <= width) {
  .u-pc-hidden {
    display: none;
  }
}

/* show */
@media screen and (769px <= width) {
  .u-sp-only {
    display: none;
  }
}

.u-md-show {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-md-show {
    display: block;
  }
}

.u-pc-show {
  display: none;
}
@media screen and (1025px <= width) {
  .u-pc-show {
    display: block;
  }
}

/*------------------------------------------------------------------------------------
  breakpoint
  ブレークポイントは下記をベースとする（記載方法はモダンブラウザ対応済みの【Range記法】とする）
  また、基本的にはモバイルファーストで記述し、タブレットやPC幅向けにスタイルにメディアクエリで上書きしていく形とする
    sp: 〜768px
    sp以外: 769px〜
    tablet: 769px〜1024px
    pc: 1025px〜1280px
    large pc: 1281px〜
------------------------------------------------------------------------------------*/
/* コピペ用 */
/* sp */
@media screen and (width <= 768px) {
}
/* sp以外 */
@media screen and (769px <= width) {
}
/* tablet */
@media screen and (769px <= width <= 1024px) {
}
/* pc */
@media screen and (1025px <= width <= 1280px) {
}
/* large pc */
@media screen and (1281px <= width) {
}

/* ==========================================================================
  ソニーヘッダー、Boundary Spanning Serviceフッター
  ========================================================================== */
#sony-header {
  height: 50px;
  background-color: var(--color-black);
}
#sony-header .container {
  padding: 16px 0 0 16px;
  height: 100%;
}
#sony-header .container .sony {
  display: inline-block;
  width: 70px;
  height: auto;
}
@media screen and (769px <= width) {
  #sony-header {
    height: 68px;
  }
  #sony-header .container {
    width: 100%;
    max-width: 1200px;
    margin: var(--margin-centering);
    padding: 25px 40px 0;
  }
  #sony-header .container .sony {
    width: 100px;
  }
}
@media screen and (1281px <= width) {
  #sony-header .container {
    max-width: 1920px;
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* footer */
.p-bss-footer {
  background-color: var(--color-white);
}
.p-bss-footer__top {
  padding: 1.5rem 1rem;
}
.p-bss-footer__bottom {
  padding: 1.5rem 1rem;
  border-top: 1px solid #d9d9d9;
  display: grid;
  row-gap: 1.5rem;
}
.p-bss-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.25rem;
}
.p-bss-footer__links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 20.625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (1025px <= width) {
  .p-bss-footer {
    padding-bottom: 0;
  }
  .p-bss-footer__top {
    padding: 3rem;
  }
  .p-bss-footer__bottom {
    padding: 2rem 3rem;
    align-items: center;
  }
  .p-bss-footer__logo {
    justify-content: flex-start;
    column-gap: 2rem;
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 3;
  }
  .p-bss-footer__links {
    padding-right: 1rem;
    max-width: none;
    justify-content: flex-end;
    column-gap: 2rem;
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 2;
  }
}

/* footerナビ */
.p-bss-footer-navi {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding-right: 3.5rem;
}
@media screen and (1025px <= width) {
  .p-bss-footer-navi {
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 2rem;
  }
}
.p-bss-footer-navi__link {
  font-size: var(--font-size-12px);
  text-decoration: none;
  color: var(--color-nomal);
}

/* footerロゴ */
.p-bss-footer__logo > a {
  transition: opacity 0.2s ease 0s;
}
@media (hover: hover) {
  .p-bss-footer__logo > a:hover {
    opacity: 0.8;
  }
}
.p-bss-footer__logo > .p-bss-footer__service {
  width: 230px;
}
@media screen and (1025px <= width) {
  .p-bss-footer__logo > .p-bss-footer__service {
    width: 315px;
  }
}

/* footerポータルサイトボタン */
.p-bss-footer-portal {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  color: var(--color-nomal);
  font-size: var(--font-size-12px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid #666;
  border-radius: 0.25rem;
  transition: all 0.2s ease 0s;
}
.p-bss-footer-portal > span {
  display: block;
  position: relative;
  padding-right: 20px;
}
.p-bss-footer-portal > span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("/resources/boundary_spanning_service_ad/assets/icon_blank.svg") 0 0 no-repeat;
  background-size: contain;
}
@media (hover: hover) {
  .p-bss-footer-portal:hover {
    background-color: #333;
    color: var(--color-white);
  }
  .p-bss-footer-portal:hover > span:before {
    background-image: url("/resources/boundary_spanning_service_ad/assets/icon_blank_white.svg");
  }
}

/* footer SNSリンク */
.p-bss-footer-sns {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
}
@media screen and (1025px <= width) {
  .p-bss-footer-sns {
    column-gap: 0.5rem;
  }
}
.p-bss-footer-sns > li a {
  transition: opacity 0.2s ease 0s;
}
@media (hover: hover) {
  .p-bss-footer-sns > li a:hover {
    opacity: 0.8;
  }
}

/* footer コピーライト */
.p-bss-footer__copyright {
  font-size: var(--font-size-12px);
  line-height: 1;
  text-align: center;
}
@media screen and (1025px <= width) {
  .p-bss-footer__copyright {
    grid-row-start: 2;
    grid-column-start: 2;
    text-align: right;
  }
}

/* ==========================================================================
  共通コンポーネント
  ========================================================================== */
/* 通常黒いボタン */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  line-height: 1;
  border-radius: 8px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease 0s;
}
.c-button > span {
  position: relative;
  padding: 0 28px;
  width: 100%;
  display: block;
  text-align: center;
}
.c-button > span::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 12px;
  margin-top: -5px;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white.svg") 0 0 no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  transition: all 0.2s ease 0s;
}
@media screen and (769px <= width) {
  .c-button {
    max-width: 100%;
    padding: 28px 28px;
    font-size: var(--font-size-24px);
  }
  .c-button > span::after {
    right: 0;
    width: 10px;
    height: 18px;
    margin-top: -9px;
    background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white_pc.svg") 0 0 no-repeat;
  }
}
@media (hover: hover) {
  .c-button:hover {
    background-color: var(--color-dark-gray);
  }
  .c-button:hover > span::after {
    opacity: 1;
    transform: translateX(0);
  }
}

/* CTAボタン */
.c-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 56px;
  margin: var(--margin-centering);
  color: var(--color-white);
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-button);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: var(--transition-all-01);
}
.c-cta-button.--apply {
  background-color: var(--color-orange);
}
.c-cta-button.--request {
  background-color: var(--color-blue);
}
.c-cta-button > span {
  position: relative;
  padding: 0 28px;
  width: 100%;
  display: block;
  text-align: center;
}
.c-cta-button > span::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 12px;
  margin-top: -5px;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white.svg") 0 0 no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  transition: var(--transition-all-01);
}
@media screen and (769px <= width) {
  .c-cta-button {
    height: 80px;
    padding: 0 32px;
    font-size: var(--font-size-24px);
  }
  .c-cta-button > span::after {
    right: 0;
    width: 10px;
    height: 18px;
    margin-top: -9px;
    background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white_pc.svg") 0 0 no-repeat;
  }
}
@media (hover: hover) {
  .c-cta-button.--apply:hover {
    background-color: var(--color-orange-on);
  }
  .c-cta-button.--request:hover {
    background-color: var(--color-blue-on);
  }
  .c-cta-button:hover > span::after {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 矢印付きリンク */
.c-link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 45px;
  min-height: 32px;
  font-size: var(--font-size-16px);
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition-all-01);
}
.c-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_circle_chevron_black_01.svg") 0 0 no-repeat;
  background-size: contain;
  transition: var(--transition-all-01);
}
.c-link-arrow.--cta {
  color: var(--color-white);
}
.c-link-arrow.--cta::after {
  background: url("/resources/boundary_spanning_service_ad/assets/ico_circle_chevron_white_01.svg") 0 0 no-repeat;
  background-size: contain;
}
@media (hover: hover) {
  .c-link-arrow:hover {
    color: var(--color-blue);
  }
  .c-link-arrow:hover::after {
    background-image: url("/resources/boundary_spanning_service_ad/assets/ico_circle_chevron_black_01_on.svg");
  }
  .c-link-arrow.--cta:hover {
    color: var(--color-white);
  }
  .c-link-arrow.--cta:hover::after {
    background-image: url("/resources/boundary_spanning_service_ad/assets/ico_circle_chevron_white_01_on.svg");
  }
}

/* 注釈リスト */
.c-notes-list {
  margin-top: 20px;
}
.c-notes-list__item {
  position: relative;
  font-size: var(--font-size-12px);
  line-height: 1.5;
  padding-left: 1.25em;
}
.c-notes-list__item::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* FAQリスト */
.c-faq-list {
  list-style-type: none;
}
.c-faq-list__item {
  border-bottom: 1px solid #D9D9D9;
}
.c-faq-list__question {
  cursor: pointer;
  background-color: #FAFCFF;
  font-size: var(--font-size-16px);
  line-height: 1.5;
}
.c-faq-list__question > span {
  position: relative;
  display: block;
  padding: 16px 40px 16px 0;
}
.c-faq-list__question > span::before,
.c-faq-list__question > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  background-color: #262626;
  transition: all 0.2s ease 0s;
}
.c-faq-list__question > span::after {
  transform: rotate(90deg);
}
@media (hover: hover) {
  .c-faq-list__question:hover {
    color: var(--color-blue);
  }
  .c-faq-list__question:hover > span::before,
  .c-faq-list__question:hover > span::after {
    background-color: var(--color-blue);
  }
}
.c-faq-list__answer-box {
  padding-bottom: 24px;
  font-size: var(--font-size-16px);
  line-height: 1.5;
}
.c-faq-list__answer-box > .inner {
  background-color: #E9F3FB;
  padding: 20px 20px;
  border-radius: 8px;
  border: 1px solid #0369A1;
}
.c-faq-list__details[open] > .c-faq-list__question > span::after {
  opacity: 0;
}

/* Animation ----------------------------------------*/
[data-load-fadein] {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s ease;
}
[data-load-fadein].is-show {
  opacity: 1;
  transform: translateY(0);
  animation: opacityFadeIn 0.8s ease normal forwards;
}

/* イベントリスト */
.c-event-list {
  border-top: 1px solid #D9D9D9;
}
.c-event-list__item {
  border-bottom: 1px solid #D9D9D9;
}
.c-event-list__inner {
  position: relative;
  display: block;
  padding: 16px 32px 16px 0;
  text-decoration: none;
}
.c-event-list__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 16px;
  margin-top: -8px;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_blue.svg") 0 0 no-repeat;
  background-size: contain;
}
.c-event-list__date {
  display: block;
  color: #666;
  font-size: var(--font-size-12px);
  line-height: 1.5;
}
.c-event-list__title {
  display: block;
  color: var(--color-normal);
  font-size: var(--font-size-16px);
  line-height: 1.5;
}
@media screen and (769px <= width) {
  .c-event-list__inner {
    display: flex;
    align-items: center;
  }
  .c-event-list__inner::after {
    opacity: 0;
    transition: opacity 0.2s ease 0s;
  }
  .c-event-list__date {
    margin-right: 3.5em;
    font-size: var(--font-size-16px);
  }
  .c-event-list__title {
    flex: 1;
    color: var(--color-black);
  }
}
@media (hover: hover) {
  .c-event-list__inner:hover .c-event-list__date,
  .c-event-list__inner:hover .c-event-list__title {
    color: var(--color-blue);
  }
  .c-event-list__inner:hover::after {
    opacity: 1;
  }
}

/* ==========================================================================
  CTAセクション
  ========================================================================== */
/* セクション全体 */
.cta-section {
  background: linear-gradient(167deg, #0C4A6E 0%, #000 100%);
  padding: 48px 48px;
}
.cta-section.--pattern3 {
  background: linear-gradient(85deg, #0C4A6E 0%, #000 100.47%);
}
.cta-section__inner {
  max-width: 1200px;
  margin: var(--margin-centering);
}
.cta-section__title {
  color: var(--color-white);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-semi-bold);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
.cta-section__catch-title {
  color: var(--color-white);
  font-size: var(--font-size-16px);
  font-weight: var(--font-weight-lighter);
  line-height: 1.75;
  margin-bottom: 20px;
}
.cta-section__description {
  color: var(--color-white);
  font-size: var(--font-size-16px);
  font-weight: var(--font-weight-lighter);
  line-height: 1.75;
  margin-bottom: 30px;
}
.cta-section__additional {
  margin-top: 30px;
  text-align: center;
}

@media screen and (769px <= width) {
  .cta-section {
    padding: 64px 64px;
    background: linear-gradient(85deg, #0C4A6E 0%, #000 100.47%);
  }
  .cta-section.--pattern3 {
    padding: 80px 64px 64px;
    background: linear-gradient(85deg, #0C4A6E 0%, #000 100.47%);
  }
  .cta-section__inner {
    text-align: center;
  }
  .cta-section__title {
    font-size: var(--font-size-32px);
  }
  .cta-section__title .en {
    font-family: var(--font-family-lexend);
  }
  .cta-section__catch-title {
    font-size: var(--font-size-20px);
    margin-bottom: 30px;
  }
  .cta-section__description {
    text-align: center;
  }
}

/* 強調テキスト */
.cta-text-emphasis {
  color: var(--color-yellow);
  font-size: var(--font-size-16px);
  font-weight: var(--font-weight-bold);
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (769px <= width) {
  .cta-text-emphasis {
    font-size: var(--font-size-20px);
  }
}

/* 注釈テキスト */
.cta-text-note {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 1.25em;
  color: var(--color-white);
  font-size: var(--font-size-12px);
  font-weight: var(--font-weight-lighter);
  line-height: 1.5;
}
.cta-text-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (769px <= width) {
  .cta-text-note {
    text-align: center;
  }
}

/* ボタン群 */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-buttons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-buttons__item.--reverse {
  flex-direction: column-reverse;
}
@media screen and (769px <= width) {
  .cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 32px;
    max-width: 830px;
    margin: var(--margin-centering);
  }
  .cta-buttons__item {
    flex: 1;
  }
  .cta-buttons__item.--reverse {
    flex-direction: column;
  }
}

/* パーツ同士の余白調整 */
.cta-buttons__item.--reverse .cta-text-emphasis {
  margin-bottom: 15px;
}
.cta-text-emphasis + .cta-buttons {
  margin-top: 15px;
}
.cta-buttons + .cta-text-note {
  margin-top: 20px;
}
@media screen and (769px <= width) {
  .cta-buttons__item.--reverse .cta-text-emphasis {
    margin-top: 15px;
    margin-bottom: 0;
  }
  .cta-buttons + .cta-text-note {
    margin-top: 30px;
  }
}


/* ==========================================================================
  MV部分
  ========================================================================== */
.top-container {
  overflow: hidden;
  background: linear-gradient(170deg, #DAF4E0 0%, #CFF4EB 70.83%, #C8EDFF 101.19%);
}
@media screen and (769px <= width) {
  .top-container {
    background: linear-gradient(210deg, #DAF4E0 36.56%, #CFF4EB 55.16%, #C8EDFF 63.13%);
  }
}

.top-visual {
  padding: 32px 24px 64px;
}
@media screen and (769px <= width) {
  .top-visual {
    padding: 40px 24px 50px;
  }
}
@media screen and (1025px <= width) {
  .top-visual {
    padding-inline: 80px;
    padding-bottom: 65px;
  }
}

.top-visual__inner {
  max-width: 1200px;
  margin: var(--margin-centering);
}

.top-visual__heading {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (769px <= width) {
  .top-visual__heading {
    padding-top: 40px;
    margin-bottom: 77px;
  }
}

/* メインロゴ */
.top-visual__logo {
  width: 100%;
  max-width: 690px;
  height: auto;
}
.top-visual__logo img,
.top-visual__logo picture,
.top-visual__logo picture source {
  width: 100%;
  height: auto;
}
@media screen and (769px <= width) {
  .top-visual__logo .sp {
    display: none;
  }
}
.top-visual__logo .pc {
  display: none;
}
@media screen and (769px <= width) {
  .top-visual__logo .pc {
    display: block;
  }
}
/** ログインボタン */
.top-visual__login {
  display: none;
}
@media screen and (769px <= width) {
  .top-visual__login {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.top-visual__note {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 1.1em;
  margin-top: 8px;
  color: #5C5C5C;
  font-size: var(--font-size-12px);
  line-height: 1;
}
.top-visual__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 48px;
  padding: 0 20px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
  border-radius: var(--border-radius-button);
  text-decoration: none;
}
.login-button > span {
  position: relative;
  padding: 0 28px;
  width: 100%;
  display: block;
  text-align: center;
}
.login-button > span::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 12px;
  margin-top: -5px;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white.svg") 0 0 no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  transition: all 0.2s ease 0s;
}
@media (hover: hover) {
  .login-button:hover {
    background-color: var(--color-dark-gray);
  }
  .login-button:hover > span::after {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MV詳細部分 */
.top-visual-details__title {
  margin-bottom: 50px;
  font-size: var(--font-size-30px);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
@media screen and (769px <= width) {
  .top-visual-details__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-47px);
    margin-bottom: 90px;
  }
}
@media screen and (1025px <= width) {
  .top-visual-details__title {
    display: block;
    margin-bottom: 85px;
  }
}

.top-visual-details__visual {
  position: relative;
  width: 280px;
  margin: var(--margin-centering);
}
.top-visual-details__visual img {
  width: 100%;
  height: auto;
}
.top-visual-details__icon {
  position: absolute;
  top: -50px;
  right: -43px;
  width: 100px;
}
@media screen and (769px <= width) {
  .top-visual-details__visual {
    width: 100%;
    max-width: 614px;
  }
  .top-visual-details__icon {
    top: -75px;
    right: -42px;
    width: 150px;
  }
}

.top-visual-details__button {
  margin: 53px 0 0;
  text-align: center;
}
@media screen and (769px <= width) {
  .top-visual-details__button {
    display: flex;
    justify-content: center;
  }
}
@media screen and (1025px <= width) {
  .top-visual-details__button {
    display: block;
    margin: 0;
  }
}
.top-visual-details__note {
  position: relative;
  padding-left: 1.25em;
  margin-top: 20px;
  color: var(--color-black);
  font-size: var(--font-size-12px);
  line-height: 1.5;
  text-align: left;
}
.top-visual-details__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (1025px <= width) {
  .top-visual-details__note {
    margin-top: 25px;
  }
}

.main-visual-apply-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  height: 56px;
  margin: var(--margin-centering);
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-button);
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(169, 70, 0, 0.60);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: var(--transition-all-01);
}
.main-visual-apply-button > span {
  position: relative;
  padding: 0 28px;
  width: 100%;
  display: block;
  text-align: center;
}
.main-visual-apply-button > span::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 12px;
  margin-top: -5px;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white.svg") 0 0 no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  transition: var(--transition-all-01);
}
@media screen and (769px <= width) {
  .main-visual-apply-button {
    height: 80px;
    margin: 0;
    padding: 0 32px;
    font-size: var(--font-size-24px);
  }
  .main-visual-apply-button > span::after {
    right: 0;
    width: 10px;
    height: 18px;
    margin-top: -9px;
    background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white_pc.svg") 0 0 no-repeat;
  }
}
@media (hover: hover) {
  .main-visual-apply-button:hover {
    background-color: var(--color-orange-on);
  }
  .main-visual-apply-button:hover > span::after {
    opacity: 1;
    transform: translateX(0);
  }
}

/* レイアウト */
@media screen and (769px <= width) {
  .top-visual-details {
    display: grid;
    grid-template-areas:
    "title"
    "visual"
    "button";
    grid-template-columns: 1fr;
  }
}
@media screen and (1025px <= width) {
  .top-visual-details {
    display: grid;
    grid-template-areas:
    "title    visual"
    "button   visual";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content min-content;
    align-content: start;
    column-gap: 15px;
    row-gap: 0;
  }
  .top-visual-details__title {
    grid-area: title;
    align-self: start;
  }
  .top-visual-details__visual {
    grid-area: visual;
    align-self: start;
    grid-row: 1 / 4;
  }
  .top-visual-details__button {
    grid-area: button;
    align-self: start;
  }
}
@media screen and (1281px <= width) {
  .top-visual-details {
    grid-template-columns: 1fr 614px;
    column-gap: 10px;
  }
}


.company-section {
  padding: 20px 0 56px;
  background: rgba(14, 113, 188, 0.08);
  backdrop-filter: blur(20px);
}
@media screen and (769px <= width) {
  .company-section {
    padding: 40px 0 80px;
  }
}

.company-section__title {
  margin-bottom: 20px;
  color: var(--color-heading-blue-02);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-16px);
  text-align: center;
  line-height: 1.5;
}
@media screen and (769px <= width) {
  .company-section__title {
    margin-bottom: 40px;
    font-size: var(--font-size-20px);
  }
}


.logoSlider .splide__arrows {
  position: absolute;
  bottom: -44px;
  right: 80px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (769px <= width) {
  .logoSlider .splide__arrows {
    right: 98px;
    bottom: -58px;
  }
}
@media screen and (1025px <= width) {
  .logoSlider .splide__arrows {
    right: 138px;
  }
}

.logoSlider .splide__arrow {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: rgba(255,255,255, 0.4);
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
@media screen and (769px <= width) {
  .logoSlider .splide__arrow {
    width: 44px;
    height: 44px;
  }
}

@media (hover: hover) {
  .logoSlider .splide__arrow:hover {
    background: var(--color-white);
  }
}

.logoSlider .splide__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (769px <= width) {
  .logoSlider .splide__arrow::before {
    width: 44px;
    height: 44px;
  }
}

.logoSlider .splide__arrow.splide__arrow--prev::before {
  transform: rotate(-90deg);
  background-image: url("/resources/boundary_spanning_service/assets/ico_vertical_slider_prev_02.svg");
}
@media screen and (769px <= width) {
  .logoSlider .splide__arrow.splide__arrow--prev::before {
    background-image: url("/resources/boundary_spanning_service/assets/ico_vertical_slider_prev_pc_02.svg");
  }
}
.logoSlider .splide__arrow.splide__arrow--next::before {
  transform: rotate(-90deg);
  background-image: url("/resources/boundary_spanning_service/assets/ico_vertical_slider_next_02.svg");
}
@media screen and (769px <= width) {
  .logoSlider .splide__arrow.splide__arrow--next::before {
    background-image: url("/resources/boundary_spanning_service/assets/ico_vertical_slider_next_02_pc.svg");
  }
}

.logoSlider .splide__arrow > svg {
  display: none;
}

.logoSlider .splide__toggle {
  position: absolute;
  right: 40px;
  bottom: -44px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: rgba(255,255,255, 0.4);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
@media (hover: hover) {
  .logoSlider .splide__toggle:hover {
    background: var(--color-white);
  }
}

@media screen and (769px <= width) {
  .logoSlider .splide__toggle {
    width: 44px;
    height: 44px;
    right: 50px;
    bottom: -58px;
  }
}
@media screen and (1025px <= width) {
  .logoSlider .splide__toggle {
    right: 90px;
  }
}

@media screen and (769px <= width) {
  .logoSlider .splide__toggle .splide__toggle__play img {
    width: 44px;
    height: 44px;
  }
}

.logoSlider.is-oneSlide .splide__arrows,
.logoSlider.is-oneSlide .splide__toggle {
  display: none !important;
}
.logoSlider.is-oneSlide .splide__list {
  transform: translateY(0) !important;
}

/* ==========================================================================
  MV部分とCTA以外をラッピングするコンテナ
  ========================================================================== */
.section-container {
  background-color: #FAFCFF;
  padding: 80px 24px;
}
@media screen and (769px <= width) {
  .section-container {
    padding-block: 120px;
  }
}
.section-container__inner {
  max-width: 1200px;
  margin: var(--margin-centering);
}
/* セクション間の区切り線 */
.section-border {
  border-top: 1px solid #D9D9D9;
  margin: 48px 0 56px;
  box-shadow: none;
}
@media screen and (769px <= width) {
  .section-border {
    margin: 80px 0 96px;
  }
}

/* ==========================================================================
  サービス説明セクション
  ========================================================================== */
/* セクション全体 */
.service-heading__title {
  color: var(--color-heading-blue-01);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
.service-heading__title .en {
  font-size: var(--font-size-28px);
  font-family: var(--font-family-lexend);
}
@media screen and (769px <= width) {
  .service-heading__title {
    font-size: var(--font-size-32px);
    text-align: left;
    margin-bottom: 30px;
  }
  .service-heading__title .en {
    font-size: var(--font-size-40px);
  }
}

.service-heading__description {
  font-size: var(--font-size-16px);
  line-height: 1.75;
  margin-bottom: 20px;
}
@media screen and (769px <= width) {
  .service-heading__description {
    line-height: 2;
    margin-bottom: 30px;
  }
}

/* カードコンポーネント */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (769px <= width) {
  .service-cards {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media screen and (769px <= width) {
  .service-cards__item {
    width: calc(50% - 40px/2);
  }
}
@media screen and (1025px <= width) {
  .service-cards__item {
    flex: 1;
    width: 33.33%;
  }
  .service-cards__item:nth-child(3n-1) {
    width: 33.34%;
  }
}

.service-card {
  padding: 32px 24px;
  min-height: 100%;
  background-color: var(--color-white);
  border-radius: var(--border-radius-card);
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
.service-card__title {
  color: var(--color-heading-blue-02);
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}
.service-card__description {
  font-size: var(--font-size-16px);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-card__image img {
  width: 100%;
  height: auto;
}
@media screen and (769px <= width) {
  .service-card {
    display: flex;
    flex-direction: column;
    padding: 40px 24px 52px;
  }
  .service-card__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: var(--font-size-24px);
    min-height: 3em;
  }
  .service-card__description {
    flex: 1;
  }
}
@media screen and (1281px <= width) {
  .service-card {
    padding-inline: 32px;
  }
}

/* ==========================================================================
  使い方セクション
  ========================================================================== */
/* セクション全体 */
.usage-heading__title {
  color: var(--color-heading-blue-01);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
.usage-heading__title .en {
  font-size: var(--font-size-28px);
  font-family: var(--font-family-lexend);
}
@media screen and (769px <= width) {
  .usage-heading__title {
    font-size: var(--font-size-32px);
    text-align: left;
    margin-bottom: 30px;
  }
  .usage-heading__title .en {
    font-size: var(--font-size-40px);
  }
}

/* 使い方ステップ */
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (1200px <= width) {
  .usage-steps {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .usage-steps__item {
    flex: 1;
    width: calc(20% - 8px);
  }
}
.usage-step-card {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 24px 24px;
  min-height: 212px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
@media screen and (769px <= width) {
  .usage-step-card {
    padding: 32px 32px;
    min-height: 160px;
  }
}
@media screen and (1200px <= width) {
  .usage-step-card {
    min-height: 456px;
    padding: 24px 24px 180px;
  }
}

.usage-step-card__heading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.usage-step-card__number {
  margin-right: 17px;
  color: #666;
  font-size: var(--font-size-14px);
  font-family: var(--font-family-lexend);
  font-weight: var(--font-weight-lighter);
  line-height: 1;
}
.usage-step-card__number > span {
  display: block;
  margin-top: 4px;
  color: var(--color-primary-green);
  font-size: var(--font-size-24px);
  font-weight: 600;
}

.usage-step-card__title {
  color: var(--color-heading-blue-02);
  font-weight: bold;
  font-size: var(--font-size-18px);
  line-height: 1.25;
}

.usage-step-card__description {
  padding: 0 120px 0 0;
  font-size: var(--font-size-14px);
  line-height: 1.75;
}
@media screen and (769px <= width) {
  .usage-step-card__description {
    padding: 0 190px 0 0;
    font-size: var(--font-size-16px);
  }
}
@media screen and (1200px <= width) {
  .usage-step-card__description {
    padding: 0;
  }
}

.usage-step-card__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 157px;
}
.usage-step-card__image img {
  vertical-align: bottom;
}
@media screen and (769px <= width) {
  .usage-step-card__image {
    width: auto;
  }
  .usage-step-card__image img {
    width: auto;
    height: 160px;
  }
}
@media screen and (1200px <= width) {
  .usage-step-card__image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (1281px <= width) {
  .usage-step-card__image {
    width: 100%;
  }
}


/* ==========================================================================
  お申込み方法セクション
  ========================================================================== */
/* セクション全体 */
.apply-heading__title {
  color: var(--color-heading-blue-02);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (769px <= width) {
  .apply-heading__title {
    font-size: var(--font-size-32px);
    text-align: left;
    margin-bottom: 30px;
  }
}

/* 申込みステップ */
.apply-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apply-steps__item {
  position: relative;
}
.apply-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 23px;
  height: 19px;
  margin-left: -11px;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_step_02.svg") 0 0 no-repeat;
  background-size: contain;
}
@media screen and (1025px <= width) {
  .apply-steps {
    display: flex;
    flex-direction: row;
    gap: 46px;
  }
  .apply-steps__item {
    flex: 1;
    width: 25%;
  }
  .apply-steps__item:not(:last-child)::after {
    top: 50%;
    left: auto;
    right: -34px;
    bottom: auto;
    width: 22px;
    height: 28px;
    margin-top: -14px;
    background: url("/resources/boundary_spanning_service_ad/assets/ico_step_01.svg") 0 0 no-repeat;
    background-size: contain;
  }
}
.apply-step-card {
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 24px 24px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
@media screen and (1025px <= width) {
  .apply-step-card {
    min-height: 100%;
  }
}
.apply-step-card__heading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.apply-step-card__number {
  margin-right: 17px;
  color: #666;
  font-size: var(--font-size-14px);
  font-family: var(--font-family-lexend);
  font-weight: var(--font-weight-lighter);
  line-height: 1;
}
.apply-step-card__number > span {
  display: block;
  margin-top: 4px;
  color: var(--color-primary-green);
  font-size: var(--font-size-24px);
  font-weight: 600;
}
.apply-step-card__title {
  color: var(--color-heading-blue-02);
  font-weight: bold;
  font-size: var(--font-size-18px);
  line-height: 1.25;
}
.apply-step-card__description {
  font-size: var(--font-size-16px);
  line-height: 1.75;
}
.apply-step-card__link {
  margin-top: 16px;
}
.c-link-arrow.apply-step-card__link {
  font-size: var(--font-size-14px);
  line-height: 1.4;
}

.apply-existing-guide{
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
}

.apply-existing-guide__link{
  margin-left: 6px;
  color: var(--color-blue);
  text-decoration: underline;
  font-weight: var(--font-weight-bold);
}

@media (hover: hover){
  .apply-existing-guide__link:hover{
    text-decoration: none;
  }
}

/* ==========================================================================
  特長セクション
  ========================================================================== */
/* セクション全体 */
.features-section__title {
  color: var(--color-heading-blue-02);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (769px <= width) {
  .features-section__title {
    font-size: var(--font-size-32px);
    text-align: left;
    margin-bottom: 30px;
  }
}
.features-section__description {
  font-size: var(--font-size-16px);
  line-height: 1.75;
}
.features-section__description + .features-section__description {
  margin-top: 1.5em;
}
@media screen and (769px <= width) {
  .features-section__description + .features-section__description {
    margin-top: 0;
  }
}

/* 特長カードコンポーネント */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
@media screen and (769px <= width) {
  .features-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
  }
  .features-list__item {
    width: calc(50% - 40px/2);
  }
}
@media screen and (1025px <= width) {
  .features-list__item {
    flex: 1;
    width: 33.33%;
  }
  .features-list__item:nth-child(3n-1) {
    width: 33.34%;
  }
}

.feature-card {
  min-height: 100%;
  padding: 20px 24px 24px;
  background: var(--color-white);
  border-radius: var(--border-radius-card);
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
.feature-card__image {
  margin: var(--margin-centering);
}
.feature-card__image.--image01 {
  width: 160px;
  margin-bottom: 20px;
}
.feature-card__image.--image02 {
  width: 159px;
  margin-bottom: 15px;
}
.feature-card__image.--image03 {
  width: 160px;
  margin-bottom: 15px;
}
.feature-card__title {
  margin-bottom: 10px;
  color: var(--color-black);
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
.feature-card__description {
  color: var(--color-normal);
  font-size: var(--font-size-16px);
  line-height: 1.75;
}
@media screen and (769px <= width) {
  .feature-card__image.--image01 {
    width: 180px;
    margin-bottom: 20px;
  }
  .feature-card__image.--image02 {
    width: 180px;
    margin-bottom: 20px;
  }
  .feature-card__image.--image03 {
    width: 180px;
    margin-bottom: 20px;
  }
  .feature-card__title {
    margin-bottom: 15px;
  }
  .feature-card__description {
    line-height: 2;
  }
}
@media screen and (1025px <= width) {
  .feature-card {
    padding: 24px 24px 32px;
  }
}
@media screen and (1281px <= width) {
  .feature-card {
    padding-inline: 32px;
  }
}

/* ==========================================================================
  プランセクション
  ========================================================================== */
/* セクション全体 */
.plans-heading__title {
  color: var(--color-heading-blue-02);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (769px <= width) {
  .plans-heading__title {
    font-size: var(--font-size-32px);
    text-align: left;
    margin-bottom: 30px;
  }
}

/* プランリスト */
.plans-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plans-list + .c-notes-list {
  margin-top: 25px;
}
@media screen and (769px <= width) {
  .plans-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
  }
  .plans-list__item {
    width: calc(50% - 12px);
  }
}
@media screen and (1200px <= width) {
  .plans-list {
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 0;
  }
  .plans-list__item {
    width: auto;
    flex: 1;
  }
}

.plan-card {
  overflow: hidden;
  background-color: #fff;
  padding: 24px 24px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
.plan-card.--enterprise {
  border: 2px solid var(--color-primary-green);
}
@media screen and (769px <= width) {
  .plan-card {
    min-height: 100%;
  }
}
@media screen and (1025px <= width) {
  .plan-card.--enterprise {
    min-width: 320px;
  }
}

.plan-card__title {
  margin-bottom: 8px;
  color: var(--color-primary-green);
  font-weight: bold;
  font-size: var(--font-size-20px);
  line-height: 1.2;
  text-align: center;
}
.plan-card__emphasize {
  margin: 20px 0 8px;
  padding: 10px 8px;
  background-color: var(--color-primary-green);
  border-radius: 4px;
  color: var(--color-white);
  font-size: var(--font-size-16px);
  line-height: 1.5;
  text-align: center;
}
.plan-card__emphasize strong {
  font-weight: 600;
  font-size: var(--font-size-20px);
}
.plan-card__emphasize .num {
  font-family: var(--font-family-lexend);
}

.plan-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: var(--font-size-14px);
}
.plan-card__item:not(:first-child) {
  border-top: 1px solid #D9D9D9;
}
.plan-card__item.--bottom {
  padding: 24px 0 0;
}
.plan-card__item.--bottom + .plan-card__item.--bottom {
  padding: 16px 0 0;
  border: none;
}
.plan-card__item dd .number {
  margin-right: 0.15em;
  color: var(--color-black);
  font-family: var(--font-family-lexend);
  font-size: var(--font-size-24px);
  font-weight: 600;
}
.plan-card__item dd .bold {
  color: var(--color-black);
  font-weight: bold;
}
@media screen and (1025px <= width) {
  .plan-card__item dt {
    line-height: 1.4;
  }
}

/* ==========================================================================
  お客様の声セクション
  ========================================================================== */
/* セクション全体 */
.voice-section__title {
  color: var(--color-heading-blue-02);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (769px <= width) {
  .voice-section__title {
    font-size: var(--font-size-32px);
    text-align: left;
    margin-bottom: 30px;
  }
}

/* お客様の声カードコンポーネント */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (769px <= width) {
  .voice-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
  }
  .voice-list__item {
    width: calc(50% - 40px/2);
  }
}
@media screen and (1025px <= width) {
  .voice-list__item {
    flex: 1;
    width: 33.33%;
  }
  .voice-list__item:nth-child(3n-1) {
    width: 33.34%;
  }
}

.voice-card {
  padding: 24px 24px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-card);
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
.voice-card__image {
  width: 68px;
  margin: var(--margin-centering) 16px;
}
.voice-card__title {
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
.voice-card__department {
  margin-bottom: 15px;
  color: var(--color-gray);
  font-size: var(--font-size-14px);
  line-height: 1.75;
}
.voice-card__text {
  font-size: var(--font-size-16px);
  line-height: 1.75;
}
.voice-card__link {
  margin-top: 16px;
}
.voice-card__link .c-link-arrow {
  font-size: var(--font-size-14px);
}
@media screen and (769px <= width) {
  .voice-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px 32px;
  }
  .voice-card__image {
    width: 72px;
  }
  .voice-card__department {
    font-size: var(--font-size-16px);
  }
  .voice-card__text {
    flex: 1;
  }
}

/* ==========================================================================
  よくある質問セクション
  ========================================================================== */
/* セクション全体 */
.faq-section__inner {
  max-width: 1200px;
  margin: var(--margin-centering);
}
.faq-section__heading .faq-section__link {
  display: none;
}
.faq-section__title {
  color: var(--color-heading-blue-02);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}

.faq-section__content .faq-section__link {
  margin-top: 30px;
  text-align: center;
}
@media screen and (1025px <= width) {
  .faq-section__inner {
    display: flex;
    justify-content: space-between;
    gap: 64px;
  }
  .faq-section__heading {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .faq-section__content {
    width: 100%;
    max-width: 740px;
  }
  .faq-section__title {
    flex: 1;
    text-align: left;
    font-size: var(--font-size-32px);
    word-break: keep-all;
  }
  .faq-section__heading .faq-section__link {
    display: block;
    word-break: keep-all;
  }
  .faq-section__content .faq-section__link {
    display: none;
  }
}

/* ==========================================================================
  イベント・説明会情報セクション
  ========================================================================== */
/* セクション全体 */
.event-section__inner {
  max-width: 1200px;
  margin: var(--margin-centering);
}
.event-section__heading {
  margin-bottom: 20px;
}
.event-section__content {
  margin-bottom: 40px;
}
.event-section__content .event-info {
  margin-bottom: 24px;
}
.event-section__bottom {
  display: flex;
  justify-content: center;
}
@media screen and (1025px <= width) {
  .event-section__heading {
    margin-bottom: 32px;
  }
  .event-section__bottom {
    justify-content: flex-end;
  }
  .event-section__content .event-info {
    margin-bottom: 14px;
  }
}

.event-section__title {
  color: var(--color-heading-blue-02);
  font-size: var(--font-size-24px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
.event-section__description {
  font-size: var(--font-size-16px);
  line-height: 1.75;
}
@media screen and (1025px <= width) {
  .event-section__title {
    font-size: var(--font-size-32px);
    margin-bottom: 20px;
    text-align: left;
  }
}

.event-area__image {
  margin-bottom: 16px;
}
@media screen and (1025px <= width) {
  .event-area {
    display: flex;
    gap: 64px;
  }
  .event-area__image {
    width: 400px;
    margin: 0;
  }
  .event-area__content {
    flex: 1;
  }
  .event-area__content .c-event-list {
    border-top: none;
  }
}

.event-info {
  padding: 20px 20px;
  border-radius: 8px;
  border: 1px solid #0369A1;
  background: #E9F3FB;
  font-size: var(--font-size-16px);
  color: var(--color-black);
}
.event-info__title {
  margin-bottom: 10px;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
.event-info__list {
  line-height: 1.5;
}
.event-info__list > li {
  position: relative;
  padding-left: 1.5em;
}
.event-info__list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (1025px <= width) {

}
.event-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 297px;
  height: 56px;
  line-height: 1;
  border-radius: 8px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease 0s;
}
.event-button > span {
  position: relative;
  padding: 0 28px;
  width: 100%;
  display: block;
  text-align: center;
}
.event-button > span::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 8px;
  height: 12px;
  margin-top: -5px;
  background: url("/resources/boundary_spanning_service_ad/assets/ico_chevron_white.svg") 0 0 no-repeat;
  background-size: contain;
  transform: translateX(-50%);
  transition: all 0.2s ease 0s;
}
@media screen and (769px <= width) {
  .event-button {
    max-width: 240px;
    padding: 28px 28px;
  }
}
@media (hover: hover) {
  .event-button:hover {
    background-color: var(--color-dark-gray);
  }
  .event-button:hover > span::after {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================
  p-plan-area (boundary_spanning_serviceから移植)
   ========================================== */
.p-plan-area-heading {
  margin-bottom: 15px;
  color: var(--color-dark-blue);
}
@media screen and (min-width: 1200px) {
  .p-plan-area-heading {
    margin-bottom: 20px;
  }
}

.p-plan-area-heading__title {
  font-size: var(--font-size-20px);
  font-weight: 600;
}
.p-plan-area-heading__title .num {
  font-family: var(--font-family-lexend);
}
.p-plan-area-heading__note {
  position: relative;
  margin-top: 3px;
  font-size: var(--font-size-12px);
  font-weight: 400;
  line-height: 1.5;
}
.p-plan-area-heading__note::before {
  content: "※";
  display: inline-block;
  vertical-align: baseline;
}

/* ==========================================
  p-plan-current
   ========================================== */
.p-plan-current {
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .p-plan-current {
    margin-bottom: 48px;
  }
}

.p-plan-current-box {
  padding: 24px 24px;
  border-radius: 8px;
  border: 2px solid var(--color-green);
  background: var(--color-white);
}

@media screen and (min-width: 1200px) {
  .p-plan-current-box__content {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
  }
  .p-plan-current-box__details {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

.p-plan-current-box__strong {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 24px;
  padding: 8px 8px;
  border-radius: 4px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: var(--font-size-16px);
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}
.p-plan-current-box__strong .num {
  font-family: var(--font-family-lexend);
}
.p-plan-current-box__strong em {
  display: block;
  font-weight: 600;
  font-size: var(--font-size-20px);
}
.p-plan-current-box__strong .num {
  font-family: var(--font-family-lexend);
}
@media screen and (min-width: 1200px) {
  .p-plan-current-box__strong {
    width: 250px;
    padding: 20px 24px;
    margin: 0;
  }
}

.p-plan-current-box__plan {
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .p-plan-current-box__plan {
    margin: 0;
  }
}
.p-plan-current-box__name {
  margin-bottom: 5px;
  color: var(--color-nomal);
  font-size: var(--font-size-22px);
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .p-plan-current-box__name {
    font-size: var(--font-size-24px);
  }
}
.p-plan-current-box__price {
  color: var(--color-green);
  font-size: var(--font-size-24px);
  font-weight: 600;
  line-height: 1;
}
.p-plan-current-box__price .num {
  display: inline-block;
  vertical-align: baseline;
  margin-inline: 0.05em;
  font-family: var(--font-family-lexend);
  font-size: var(--font-size-64px);
}
@media screen and (min-width: 1200px) {
  .p-plan-current-box__price {
    font-size: var(--font-size-32px);
  }
  .p-plan-current-box__price .num {
    font-size: var(--font-size-70px);
  }
}

@media screen and (min-width: 1200px) {
  .p-plan-current-lists {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
  }
  .p-plan-current-list {
    flex: 1;
    width: 50%;
    min-width: 220px;
  }
}
.p-plan-current-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-block: 12px;
  border-bottom: 1px solid #D9D9D9;
}
.p-plan-current-list__item > dt {
  flex: 1;
  font-size: var(--font-size-14px);
  font-weight: var(--font-wight-normal);
  line-height: 1.4;
}
.p-plan-current-list__item > dd {
  text-align: right;
  font-size: var(--font-size-14px);
  line-height: 1;
}
.p-plan-current-list__item > dd .value {
  color: var(--color-black);
  font-weight: var(--font-wight-bold);
  line-height: 100%;
}
.p-plan-current-list__item > dd .num {
  display: inline-block;
  margin-inline: 0.1em;
  color: var(--color-black);
  font-family: var(--font-family-lexend);
  font-size: var(--font-size-24px);
  font-weight: var(--font-wight-bold);
}
.p-plan-current-list__item > dd .unit {
  font-size: var(--font-size-14px);
}
@media screen and (min-width: 1200px) {
  .p-plan-current-list__item {
    min-height: 50px;
  }
  .p-plan-current-list__item > dd .value {
    font-size: var(--font-size-16px);
  }
}

.p-plan-current-box__foot {
  padding-top: 20px;
}
.p-plan-current-box__note {
  position: relative;
  padding-left: 1.15em;
  font-size: var(--font-size-12px);
  line-height: 1.5;
}
.p-plan-current-box__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* ==========================================
  p-plan-upcoming
   ========================================== */
.p-plan-upcoming {
  margin-bottom: 48px;
}

.p-plan-upcoming-box {
  margin: 0 -24px;
}
@media screen and (min-width: 769px) {
  .p-plan-upcoming-box {
    margin: 0 -40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-box {
    margin: 0;
  }
}

.p-plan-upcoming-items {
  overflow: visible;
}
.p-plan-upcoming-items .splide__list {
  display: flex !important;
}

@media screen and (min-width: 1200px) {
  .p-plan-upcoming-items .splide__list {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.p-plan-upcoming-items .splide__track {
  padding-block: 10px;
  padding-left: 24px !important;
  padding-right: 48px !important;
}
@media screen and (min-width: 769px) {
  .p-plan-upcoming-items .splide__track {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-items .splide__track {
    overflow: visible;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.p-plan-upcoming-items .splide__arrows {
  display: none !important;
}
.p-plan-upcoming-item.splide__slide {
  width: 100%;
  min-width: 248px;
  padding: 24px 24px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-item.splide__slide {
    padding: 40px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-item.splide__slide {
    flex: 1;
    width: 25%;
  }
}

.p-plan-upcoming-item__title {
  margin-bottom: 10px;
  font-size: var(--font-size-22px);
  font-weight: var(--font-wight-bold);
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-item__title {
    margin-bottom: 14px;
    font-size: var(--font-size-24px);
  }
}

.p-plan-upcoming-item__price {
  margin-bottom: 8px;
  color: var(--color-green);
  font-size: var(--font-size-16px);
  font-weight: var(--font-wight-bold);
  line-height: 1;
}
.p-plan-upcoming-item__price .num {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 0.05em;
  font-size: var(--font-size-32px);
  font-family: var(--font-family-lexend);
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-item__price {
    font-size: var(--font-size-20px);
  }
  .p-plan-upcoming-item__price .num {
    font-size: var(--font-size-28px);
  }
}

.p-plan-upcoming-item__note {
  margin-bottom: 10px;
  font-size: var(--font-size-12px);
  line-height: 1;
}
.p-plan-upcoming-item__note > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.p-plan-upcoming-item__note > div:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-item__note {
    margin-bottom: 20px;
    font-size: var(--font-size-14px);
  }
}

.p-plan-upcoming-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding-block: 12px;
  border-bottom: 1px solid #D9D9D9;
}
.p-plan-upcoming-list__item > dt {
  flex: 1;
  font-size: var(--font-size-14px);
  font-weight: var(--font-wight-normal);
  line-height: 1.4;
}
.p-plan-upcoming-list__item > dd {
  text-align: right;
  font-size: var(--font-size-14px);
  line-height: 1;
}
.p-plan-upcoming-list__item > dd .value {
  font-weight: var(--font-wight-semi-bold);
  line-height: 100%;
  font-size: var(--font-size-16px);
}
.p-plan-upcoming-list__item > dd .num {
  display: inline-block;
  margin-inline: 0.1em;
  color: var(--color-black);
  font-family: var(--font-family-lexend);
  font-size: var(--font-size-24px);
  font-weight: var(--font-wight-semi-bold);
}
.p-plan-upcoming-list__item > dd .unit {
  font-size: var(--font-size-14px);
}
.p-plan-upcoming-list__item > dd .note {
  display: block;
  margin: 3px -0.5em 0 0;
  font-size: var(--font-size-14px);
}
@media screen and (min-width: 1200px) {
  .p-plan-upcoming-list__item {
    min-height: 64px;
  }
  .p-plan-upcoming-list__item > dd .num {
    font-size: var(--font-size-22px);
  }
}

.p-plan-custom {
  margin-top: 24px;
  padding: 24px 24px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10);
}
@media screen and (min-width: 1200px) {
  .p-plan-custom {
    margin-top: 20px;
    padding: 40px 24px;
  }
}
.p-plan-custom__title {
  margin-bottom: 20px;
  font-size: var(--font-size-22px);
  font-weight: var(--font-wight-bold);
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .p-plan-custom__title {
    font-size: var(--font-size-24px);
  }
}
.p-plan-custom__text {
  font-size: var(--font-size-14px);
  line-height: 1.75;
}

.p-plan-note {
  position: relative;
  padding-left: 1.1em;
  color: #262626;
  font-size: var(--font-size-12px);
  line-height: 1.5;
}
.p-plan-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-plan-note-area {
  margin-top: 24px;
}

/* ==========================================================================
  フッター（.p-bss-footer-*）
  ========================================================================== */
/* フッターナビ：3ブロック横並び */
.p-bss-footer-navi-cols {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
}

/* 各ブロック（縦並び・固定幅） */
.p-bss-footer-navi-cols > ul {
  width: 300px;
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  row-gap: 1.0rem;
}

/* SP */
@media screen and (max-width: 768px) {
  .p-bss-footer-navi-cols {
    flex-direction: column;
  }
  .p-bss-footer-navi-cols > ul {
    width: 100%;
  }
}