@charset "UTF-8";

/* ==========================================================================
custom @roperties
========================================================================== */
:root {
  /* z-index */
  --zIndex: 9;
  --zIndex-header: calc(var(--zIndex) * 2);
  /* color */
  --color-base: #333;
  --color-accent: #000;
  --color-sub: #000;
  --color-red: #000;
  --color-dark: #000;
  --color-light: #000;
  --color-warning: #000;
  /* background-color */
  --background-base: #fff;
  --background-accent: #000;
  --background-sub: #000;
  --background-light: #000;
  /* font-family */
  --fontFamily-base: 'Noto Sans JP', sans-serif;
  --fontFamily-accent: 'Jost', sans-serif;
  /* line-height */
  --lineHeight-base: 1.5;
  --lineHeight-tight: 1.2;
  --lineHeight-loose: 2;
  /* transition */
  --transition-timingFunction: ease-in-out;
  --transition-duration: .3s;
  --transition: var(--transition-duration) var(--transition-timingFunction);
}

/* ==========================================================================
reset
========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}
html {
  -webkit-text-size-adjust: none;
}
@supports not (min-block-size: 100dvb) {
  html {
    block-size: 100%;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  block-size: 100%;
  block-size: 100dvb;
  min-block-size: 100%;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}
img,
picture,
svg,
video {
  block-size: auto;
  max-inline-size: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}
svg {
  stroke: none;
  fill: currentColor;
}
input,
button,
textarea,
select,
input[type="file"]::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
textarea {
  resize: vertical;
}
@supports (resize: block) {
  textarea {
    resize: block;
  }
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
ul,
ol {
  list-style: none;
  padding-inline-start: 0;
}
a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"]) {
  cursor: pointer;
  touch-action: manipulation;
}
input[type="file"] {
  cursor: auto;
}
input[type="file"]::-webkit-file-upload-button,
input[type="file"]::file-selector-button {
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :not(:active):focus-visible {
    transition-duration: 0.25s;
  }
}
:not(:active):focus-visible {
  outline-offset: 5px;
}
button,
button[type],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"]::-webkit-file-upload-button,
input[type="file"]::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}
button[disabled],
button[type][disabled],
input[type="button"][disabled],
input[type="submit"][disabled],
input[type="reset"][disabled] {
  cursor: not-allowed;
}
label:has(> input:disabled),
label:has(+ input:disabled) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}
a {
  color: inherit;
  text-decoration: none;
}
summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display:none;
}

/* ==========================================================================
base
========================================================================== */
/* html */
html {
  font-size: calc(10 / 375 * 100vw);
}

@media (min-width: 375px) {
  html {
    font-size: 62.5%;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}

/* body */
body {
  display: grid;
  grid-template-rows: 1fr auto;
  visibility: hidden;
  background: var(--background-base);
  color: var(--color-base);
  font-size: 1.6rem;
  line-height: var(--lineHeight-base);
  font-family: var(--fontFamily-base);
}
body[data-page-state="loaded"] {
  visibility: visible;
}
body[data-header-drawer-open="true"] {
  overflow: hidden;
}

/* material-symbols-rounded */
.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ==========================================================================
header
========================================================================== */
/* header　 pc */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--zIndex-header);
  background: var(--background-base);
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3.2rem;
}

.header-logo img {
  height: 4rem;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.2rem;
  position: relative;
}

.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.header-nav .header-nav-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}

.header-nav .header-nav-list li a,
.header-nav .header-nav-list li p  {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: .2rem;
  padding-bottom: .4rem;
  border-bottom: .1rem solid transparent;
  transition: all .3s ease;
}

.header-nav .header-nav-list > li > a:hover,
.header-nav .header-nav-list > li > p:hover {
  color: #2262D3;
  border-bottom: .1rem solid #2262D3;
}

.header-nav .header-nav-list li a span {
  width: 1.6rem;
  aspect-ratio: 1 / 1;
  font-size: 1.6rem;
}

.header-cta-btn {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.header-cta-btn-outline,
.header-cta-btn-fill {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  border-radius: .4rem;
  padding: 1.2rem 2.4rem;
  transition: all .3s ease;
}

.header-cta-btn-outline {
  color: #00B972;
  border: 1px solid #00B972;
  cursor: pointer;
}

.header-cta-btn-outline:hover {
  color: #fff;
  background-color: #00B972;
}

.header-cta-btn-fill {
  color: #fff;
  background-color: #00B972;
}

.header-cta-btn-fill:hover {
  background-color: #04915C;
}

.header-sub-menu {
  position: fixed;
  top: 7.2rem;
  left: 0;
  width: 100%;
  background: var(--background-base);
  padding: 3.2rem 9.6rem 8rem 9.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, calc((100% - 6.4rem) / 4)), 1fr));
  gap: 3.2rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transform: translateY(-1rem);
  transition: all .3s ease;
}

.header-sub-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-sub-menu-overlay {
  position: fixed;
  top: 7.2rem;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.header-sub-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}


.header-sub-menu-item {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 0;
}

.header-sub-menu-item * a:hover {
  color: #2262D3;
}

.header-sub-menu-item-title {
  padding: 1.6rem 0 .8rem 0;
  border-bottom: .1rem solid #DCDCDC;
  font-weight: 500;
  display: grid;
  grid-template-rows: subgrid;
}

.header-sub-menu-item-title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 1.6rem;
}

.header-sub-menu-item-title a span {
  width: 1.6rem;
  aspect-ratio: 1 / 1;
  font-size: 1.6rem;
}

.header-sub-menu-item-list{
  padding-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.header-sub-menu-item-list li a {
  font-size: 1.4rem;
}

.header-menu-sp {
  display: none;
}

/* header　 sp */
@media screen and (max-width: 1200px) {
  .header-menu {
    display: none;
  }

  .header-menu-sp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .4rem;
  }

  .header-menu-sp > .header-cta-btn-fill {
    border-radius: .2rem;
    height: 4rem;
  }

  .header-menu-sp-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 4rem;
    height: 4rem;
    background-color: #2FAEE9;
    border-radius: .2rem;
    cursor: pointer;
    position: relative;
  }

  .header-menu-sp-hamburger-line {
    width: 1.7rem;
    height: .2rem;
    background-color: var(--background-base);
    transition: all .3s ease;
    position: absolute;
    border-radius: .2rem;
  }

  .header-menu-sp-hamburger-line:nth-child(1) {
    transform: translateY(-.6rem);
  }

  .header-menu-sp-hamburger-line:nth-child(3) {
    transform: translateY(.6rem);
  }

  .header-menu-sp-hamburger.is-active .header-menu-sp-hamburger-line:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .header-menu-sp-hamburger.is-active .header-menu-sp-hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header-menu-sp-hamburger.is-active .header-menu-sp-hamburger-line:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .header-menu-sp-menu {
    position: fixed;
    top: 7.2rem;
    right: 0;
    width: 39rem;
    height: calc(100vh - 7.2rem);
    background: var(--background-base);
    padding: 1.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all .3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
  }

  .header-menu-sp-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header-menu-sp-overlay {
    position: fixed;
    top: 7.2rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 7.2rem);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1000;
  }

  .header-menu-sp-overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header-menu-sp-menu-list {
    display: flex;
    flex-direction: column;
    border-top: .1rem solid #DCDCDC;
  }

  .header-menu-sp-menu-item {
    border-bottom: .1rem solid #DCDCDC;
  }

  .header-menu-sp-menu-item > a,
  .header-menu-sp-menu-item > p  {
    padding: 2.4rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .2rem;
    line-height: 1;
  }

  .header-menu-sp-menu-item > p {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-menu-sp-menu-item > p .menu-icon {
    font-size: 2.4rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    transition: all 0.3s ease;
  }

  .header-menu-sp-menu-item.is-active > p .menu-icon {
    content: "remove";
  }

  .header-menu-sp-menu-item > a > span {
    width: 1.6rem;
    font-size: 1.6rem;
  }

  .header-sub-menu-sp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .header-sub-menu-sp.is-active {
    max-height: 1000px;
    overflow-y: scroll;
  }

  .header-sub-menu-sp-item-list {
    padding-bottom: 1.6rem;
  }

  .header-sub-menu-sp-item-title a {
    display: flex;
    justify-content: space-between;
    padding: 1.6rem 0;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .header-sub-menu-sp-item-title a > span {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
  }

  .header-sub-menu-sp-item-list li {
    padding: 1.2rem 0;
    font-size: 1.4rem;
  }

  .header-menu-sp-cta-banner {
    margin-top: 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .header-menu-sp-cta-banner-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem;
    border-radius: .4rem;
    font-size: 1.8rem;
  }

  .header-menu-sp-cta-banner-item > span {
    width: 2.4rem;
    height: 2.4rem;
    background-color: var(--background-base);
    font-size: 1.6rem;
    border-radius: .2rem;
    color: #00B972;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta-btn-outline > span {
    border: 1px solid #00B972;
  }

  .header-cta-btn-img {
    padding: 0;
  }

  .header-menu-sp-link-item {
    margin-top: 3.2rem;
    padding-top: 1.6rem;
    display: flex;
    gap: 1.6rem;
    border-top: .1rem solid #DCDCDC;
    flex-wrap: wrap;
  }

  .header-menu-sp-link-item > a {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: #7C7C7C;
  }

  .header-menu-sp-link-item > a > span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 1.6rem;
  }

  .header-logo img {
    height: 2.4rem;
  }

  .header-menu-sp-menu {
    width: 100%;
  }
}

/* ==========================================================================
main
========================================================================== */
/* main */
.main {
  margin-top: var(--headerHeight);
}

/* ==========================================================================
main-content
========================================================================== */
:where(.main-content h2) {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: white;
}

/* ===============================================
mv:メインビジュアル
=============================================== */

.layered-background {
    position: relative;
    min-height: 600px;

    background-image:
        url('../images/home/top-blue.svg'),
        url('../images/home/top-gray.svg');

    background-repeat:
        no-repeat,
        no-repeat;

    background-position:
        center 50px,
        -100px 9px;

    background-size:
        100% auto,
        cover;
}

@media (max-width: 1500px) {
  .layered-background {
    background-position:
        center 106px,
        -100px 9px;
  }
}

@media (max-width: 1365px) {
    .layered-background {
        background-position:
            center 106px,
            center center;
        background-size:
            cover;
    }
}

.mv-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18.5rem;
}

.mv-left {
  padding-top: min(9vh, 12rem);
  max-width: 1206px;
  margin: 0 auto;
  width: calc(100% - 160px);
}

@media (max-width: 1200px) {
  .mv-left {
    width: calc(100% - 80px);
  }
}

.mv-image-sp {
  display: none;
}

.mv-text {
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: -1.8rem;
}

.mv-award {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16.49px;
  gap: 24px;
  width: 55%;
}
@media (max-width: 1200px) {
  .mv-award {
    grid-template-columns: 1fr;
  }
}

.mv-right {
  width: 41.6%;
  right: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-35%);
  max-width: 760px;
}

.mv-image img {
  width: 100%;
}

.materials {
  translate: -1.2rem 0;
  max-width: 42rem;
}

.materials-sp {
  display: none;
}

@media (max-width: 768px) {
  .layered-background {
    position: relative;

    background-image:
        url('../images/home/top-blue-sp.svg'),
        url('../images/home/top-gray-sp.svg');

    background-repeat:
        no-repeat,
        no-repeat;

    background-position:
        center 235px;

    background-size:
        cover;
  }
  .mv-content {
    display: block;
    margin-bottom: 1rem;
  }
  .mv-left {
    padding: 0;
    width: 100%;
  }
  .mv-image-sp {
    display: block;
    max-width: 72.5%;
    margin-left: auto;
    margin-top: 40px;
  }
  .mv-right {
    display: none;
  }
  .mv-text {
    font-size: 36px;
    padding: 0 24px;
    max-width: 500px;
    margin: 15px auto 1.6rem;
  }
  .mv-award {
    width: auto;
    row-gap: .8rem;
    margin: 2.4rem auto 0;
    padding: 0 2.4rem;
    max-width: 500px;
  }
  .mv-award img {
    width: 80%;
  }
  .materials {
    display: none;
  }
  .materials-sp {
    margin: 8px auto 0;
    display: flex;
    justify-content: center;
    margin-bottom: 6.2rem;
  }
}

/* ===============================================
how-smartvisca:SmartViscaとは
=============================================== */

.how-smartvisca {
  width: 100%;
  max-width: 1366px;
  display: flex;
  color: white;
  gap: 7.2rem;
  padding: 0 calc(120 / 1366 * 100vw);
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 12rem;
}

.how-left {
  max-width: calc(441 / 1366 * 100vw);
  margin-top: 2.4rem;
  flex: 1;
}

.how-left h2 {
  margin-bottom: 48px;
}

.how-left h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: white;
}

.how-left p {
  font-size: 16px;
  line-height: 1.8;
  color: white;
}

.how-right {
  max-width: calc(612 / 1366 * 100vw);
  flex: 1;
}

.how-right img {
  width: 100%;
}

@media (max-width: 1200px) {
  .how-smartvisca {
    padding: 0 calc(40 / 1366 * 100vw);
    gap: 4rem;
  }

  .how-left, .how-right {
    flex: 1;
    max-width: unset;
  }
}

@media (max-width: 768px) {
  .how-smartvisca {
    display: block;
    margin-bottom: 6.4rem;
    padding: 0;
  }

  .how-left {
    max-width: 500px;
    margin: 0 auto;
  }

  .how-left h2 {
    font-size: 32px;
    margin-bottom: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .how-left h3 {
    padding: 0 16px;
  }

  .how-left p {
    padding: 0 16px;
  }

  .how-right {
    margin: 4.8rem 0 0 auto;
    max-width: calc(357 / 390 * 100vw);
  }
}

/* ===============================================
why-smartvisca:SmartViscaが選ばれる理由
=============================================== */
.why-smartvisca {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 120px 120px;
}

.why-smartvisca h2 {
  margin-bottom: 48px;
  text-align: center;
  color: white;
}

.why-smartvisca .why-cards {
  display: flex;
  gap: 24px;
  border: none;
}

.why-smartvisca .why-cards .why-card {
  background-color: white;
  border-radius: 8px;
  flex: 1;
}

.why-smartvisca .why-cards .why-card img {
  padding: 48px 54px 0;
  width: 100%;
}

.why-smartvisca .why-cards .why-text {
  padding: 32px;
}

.why-smartvisca .why-cards .why-text h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #2A79E6;
}

.why-smartvisca .why-cards .why-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .why-smartvisca {
    padding: 0 calc(40 / 1366 * 100vw) 8rem;
  }
}

@media (max-width: 768px) {
  .why-smartvisca {
    height: auto;
    padding: 0 1.6rem 3.67rem;
  }

  .why-smartvisca h2 {
    font-size: 32px;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    line-height: 1.2;
  }

  .why-smartvisca .why-cards {
    display: flex;
    border: none;
    flex-direction: column;
    gap: 1.6rem;
  }

  .why-smartvisca .why-cards .why-card {
    text-align:  left;
  }

  .why-smartvisca .why-cards .why-card img {
    padding: 3.3rem 5.34rem 0;
  }

}

/* ===============================================
function:機能
=============================================== */
.function-section {
  padding: 80px 16px;
  position: relative;

  background-image:
    url('../images/home/function_upper_right.svg'),
    url('../images/home/function_lower_left.svg');

  background-position:
    top right,
    bottom left;

  background-repeat:
    no-repeat,
    no-repeat;

}

.function-section .container {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-radius: 12px;
  max-width: 1206px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  padding-bottom: 6.9rem;
}

.function-section .function-container h2 {
  margin-bottom: 24px;
  color: #333333;
}

.function-section .function-section-text {
  margin-bottom: 38px;
}

.function-section p {
  font-size: 16px;
  line-height: 1.8;
}

.function-contants .cantants-blue {
  border-radius: 8px;
  background-color: #F1F9FE;
  padding: 40px 0;
  margin-bottom: 16px;
}

.function-contants .cantants-gray {
  border-radius: 8px;
  background-color: #F8F8F8;
  padding: 40px 0;
  margin-bottom: 16px;
}

.function-contants .cantants-end {
  border-radius: 8px;
  background-color: #F1F9FE;
  padding: 4rem 0 1.1rem;
}

.function-text {
  border-left: 4px solid #2A79E6;
  padding: 0 44px 32px;
}

.function-text h3 {
  color: #3D3D3D;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.function-title {
  display: inline-flex;
  column-gap: 3.2rem;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
  min-width: 287px;
}

.function-title .link-icon {
  border: 1px solid #2A79E6;
  color: #2A79E6;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 2px;
  margin: 3px 0;
}

.function-block {
  background-color: white;
  border-radius: 8px;
  margin: 0 48px;
  padding: 16px;
}

.function-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.acordion-button {
  display: none;
}

.function-link-button {
  color: #464646;
  padding: 16px;
  border-bottom: 1px solid #DCDCDC;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 8px;
}

.function-link-button p {
  line-height: 1;
}

.function-link-button .link-icon {
  color: white;
  background: linear-gradient(to right, #4095F1, #2262D3);
  width: 32px;
  min-width: 32px;
  height: 20px;
  font-weight: normal;
  border-radius: 2px;
  text-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .function-section {
    padding: 56px 8px;
    background-image:
      url('../images/home/function_upper_right_sp.svg'),
      url('../images/home/function_lower_left_sp.svg');
    background-position:
      top right, bottom left;
    background-repeat: no-repeat, no-repeat;
  }

  .function-section .container {
    padding: 34.11px 24px;
  }

  .function-section .function-container h2 {
    font-size: 32px;
  }

  .function-section .function-section-text br {
    display: none;
  }

  .function-contants .cantants-blue,
  .function-contants .cantants-gray {
    padding-top: 32px;
    padding-bottom: 28px;
    margin-bottom: 16px;
  }

  .function-title {
    column-gap: 1.6rem;
    min-width: 100%;
  }

  .function-text {
    border-left: 4px solid #2A79E6;
    padding: 0 2.4rem 0 2rem;
  }
  .js-accordion-item .function-text > p {
      padding: 0;
      margin-bottom: 3rem;
  }

  .function-text h3 {
    font-size: 28px;
  }

  .acordion-button.js-accordion-trigger {
    display: block;
    border: none;
  }
  .acordion-button button {
    border: none;
    background-color: transparent;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #656565;
  }
  .js-accordion-item:not(.is_active) .acordion-button button span:nth-child(2) {
    display: none;
  }
  .js-accordion-item.is_active .acordion-button button span:nth-child(1) {
    display: none;
  }
  .function-block {
    margin: 0 24px;
  }

  .function-link.js-accordion-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding-top 0.4s ease-out, padding-bottom 0.4s ease-out;
  }

  .js-accordion-item.is_active .function-link.js-accordion-content {
    max-height: 600px;
    padding-top: 2.5rem;
  }

  .function-link-button {
    padding: 18px 0 15px;
  }
  .function-link.js-accordion-content a.function-link-button:last-child {
    border-bottom: none;
  }
}
/* ===============================================
implementing-company:導入企業
=============================================== */
.company-section {
  background-color: #2A79E6;
  padding: 80px 16px;
}

.company-content h2 {
  text-align: center;
}

.company-content p {
  text-align: center;
  color: white;
  font-size: 16px;
  line-height: 1.8;
  margin: 24px 0 22px;
}

.company-container {
  display: grid;
  gap: 8px;
  max-width: 1046px;
  margin-left: auto;
  margin-right: auto;
}

.company-item {
  height: 80px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.company-item img {
  max-width: 80%;
  max-height: 4.5rem;
}


/* PC表示 (例: 768px以上の画面幅) */
@media (min-width: 768px) {
  .company-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* スマホ表示 (例: 767px以下の画面幅) */
@media (max-width: 767px) {
  .company-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-section {
    padding: 4.8rem 1.6rem;
  }
  .company-content p {
    text-align: left;
  }
  .company-content h2 {
    font-size: 3.2rem;
  }
}
/* ===============================================
customer-voice:お客様の声
=============================================== */
.customer-voice-section {
  background-image: url('../images/home/customer_background_img.svg');
  padding: 80px 0 120px;
  width: 100vw;
  overflow: hidden;
}

.customer-voice-content {
  margin: 0 auto;
  max-width: 100%;
}

.customer-voice-content h2 {
  color: #333;
  text-align: center;
  margin-bottom: 4.8rem;
}

.splide__track {
  overflow: visible;
}

/* カード個別スタイル */
.customer-voice-card {
  flex-shrink: 0;
  padding: 4.8rem;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
  height: 100%;
}

.customer-voice-card.is-active {
  z-index: 2;
}

.customer-voice-card .card-decoration {
  position: absolute;
  font-size: 102px;
  font-weight: 500;
  color: #00B972;
  right: -18px;
  bottom: -93px;
}

.card-bubble {
  position: absolute;
  top: calc(100% - .2rem);
  left: 19%;
}

.customer-voice-card h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
}

.customer-voice-card h3 span {
  color: #2A79E6;
}

.customer-voice-card .card-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.splide__arrow {
  opacity: 1 !important;
  width: 4.8rem;
  height: 4.8rem;
  background: #fff;
  color: #2A79E6;
  border: .1rem solid #2A79E6;
}

.splide__arrow::before {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

.splide__arrow svg {
  display: none;
}

.splide__arrow--prev {
  left: calc(33vw - 4.8rem);
  translate: -50% 0;
}

.splide__arrow--prev::before {
  content: '\f46b';
}

.splide__arrow--next {
  right: calc(33vw - 4.8rem);
  translate: 50% 0;
}

.splide__arrow--next::before {
  content: '\f46a';
}

.customer-voice-card .card-customer {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  text-align: right;
}

.splide__pagination {
  bottom: -44px;
}

.splide__pagination__page {
  background: #ddd;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: .8rem;
  margin: .4rem;
  opacity: 1;
  width: .8rem;
}

.splide__arrow {
  transform: translateY(-30%);
}

.splide__pagination__page.is-active {
  background: #2A79E6;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .splide__arrow--prev, .splide__arrow--next {
    display: none;
  }
}

@media (max-width: 767px) {
  .customer-voice-slider-wrapper {
    overflow: visible;
  }
  .customer-voice-section {
    padding: 5.6rem 1.6rem 7.7rem;
  }
  .customer-voice-content h2 {
    font-size: 3.2rem;
  }
  .customer-voice-card {
    width: 100%;
    padding: 3.2rem;
  }
  .splide__arrow--prev {
    display: none;
  }

  .splide__arrow--next {
    display: none;
  }
}
/* ===============================================
partner-ranking:Salesforceパートナーとして
=============================================== */
.partner-ranking-section {
  background-image: url('../images/home/partner-ranking_background_img.svg');
  background-position: left;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.partner-ranking-content {
  display: flex;
  padding: 7.5rem 16px 0;
  max-width: 1162px;
  margin: 0 auto;
  justify-content: space-between;
}

.partner-ranking-right {
  width: 45.5%;
}

.partner-ranking-left {
  width: 48.2%;
}

.partner-ranking-left h2 {
  color: black;
  font-size: 4rem;
  line-height: 1.2;
  margin-top: 24px;
  margin-bottom: 35px;
}
@media (max-width: 959px) {
  .partner-ranking-left h2 {
    font-size: 3.2rem;
  }
}

.best-hit-appranking {
  display: flex;
}

.best-hit-appranking div {
  margin-top: 1.6rem;
  margin-left: 24px;
  color: #2A79E6;
}

.best-hit-appranking p {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  font-family: 'Jost', sans-serif;
  line-height: 1.16;
}

.ranking-detail-link {
  display: flex;
  align-items: baseline;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.partner-ranking-left:hover .ranking-detail-link {
  opacity: 1;
  visibility: visible;
}

.ranking-detail-link p {
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid #2A79E6;
  line-height: 1;
}

.ranking-detail-link .material-symbols-rounded {
  font-size: 1.6rem;
}

.partner-ranking-right .left-img {
  width: 77%;
}

.partner-ranking-right .right-img {
  width: 77%;
  margin-left: auto;
  margin-top: 24px;
}

.appranking-link {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 48px;
  max-width: 1126px;
  margin: 1.6rem auto 0;
  font-size: 1.6rem;
  line-height: 1;
}

.appranking-link a {
  display: flex;
  align-items: center;
}

.appranking-link a .material-symbols-rounded {
  font-size: 1.6rem;
  color: #2A79E6;
}

@media (max-width: 767px) {
  .partner-ranking-section {
    background-image: url('../images/home/partner-ranking_background_img_sp.svg');
    background-position: left top;
    background-repeat: no-repeat;
  }
  .partner-ranking-content {
    display: block;
    padding: 56px 16px 0;
    text-align: center;
  }
  .partner-ranking-left {
    width: 100%;
  }
  .partner-ranking-right {
    width: 100%;
  }
  .partner-ranking-left h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 3.3rem;
  }
  .best-hit-appranking {
    margin-bottom: 3.9rem;
    justify-content: center;
  }
  .best-hit-appranking img {
    max-width: 8.9rem;
  }
  .best-hit-appranking div {
    margin-top: 0.6rem;
  }
  .best-hit-appranking p {
    font-size: 20px;
    line-height: 1.3;
  }
  .ranking-detail-link {
    display: none;
    margin-bottom: 32px
  }
  .appranking-link {
    margin: 2.5rem auto 5.7rem;
    padding: 0;
    justify-content: center;
    font-size: 1.4rem;
  }
  .partner-ranking-right .left-img {
    margin: 0 auto 2.4rem;
    width: auto;
  }
  .partner-ranking-right .right-img {
    margin: 0 auto;
    width: auto;
  }
}

/* ===============================================
price:料金
=============================================== */
.price-section {
  background-color: #2A79E6;
  padding: 80px 16px;
}

.price-section .container {
  max-width: 1126px;
  margin: 0 auto;
}

.price-section .section-title {
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.price-content {
  background-color: white;
  border-radius: 8px;
  margin: 0 auto 16px;
  padding: 24px 16px 8px;
}

.price-content .costs {
  display: flex;
  gap: 16px;
  max-width: 966px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.initial-subtitle {
  background-color: #7C7C7C;
  color: white;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.initial-cost {
  width: 40%;
}

.initial-cost .initial-amount {
  background-color: #F4F4F4;
  color: #333333;
  text-align: center;
  padding: 44px;
}

.initial-cost .initial-amount .amount {
  font-size: 88px;
  line-height: 1;
  font-weight: 700;
  font-family: 'Jost', sans-serif;
}

.initial-cost .initial-amount span {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.plus-icon {
  width: 40px;
  height: 40px;
  position: relative;

}

.plus-icon::before,
.plus-icon::after {
  content: '';
  position: absolute;
  background-color: #cccccc;
  border-radius: 3px;
}

.plus-icon::before {
  width: 100%;
  height: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.plus-icon::after {
  width: 8px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.monthly-subtitle {
  background-color: #2262D3;
  /* min-width: 505px; */
  color: white;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.monthly-cost {
  width: 52.2%;
}

.monthly-cost .monthly-amount {
  background-color: #F4F4F4;
  color: #333333;
  text-align: center;
  padding: 8px 40px;
}

 .monthly-cost .monthly-amount .amount {
  font-size: 88px;
  line-height: 1;
  font-weight: 700;
  color: #2262D3;
  font-family: 'Jost', sans-serif;
 }

  .monthly-cost .monthly-amount .amount span {
    font-size: 24px;
    font-weight: 900;
  }

  .monthly-note {
    display: flex;
    justify-content: space-between;
    margin: 1.6rem auto 0;
    max-width: 42.5rem;
    align-items: center;
    padding-bottom: 6px;
    border-bottom: 1px dashed #BDBDBD;
  }
  @media (max-width: 500px) {
    .monthly-note {
      display: block;
      text-align: left;
      padding-bottom: 0;
    }
  }

  .monthly-note p {
    font-size: 16px;
    font-weight: 500;
  }

  .monthly-note .amount-formula {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Jost', 'Noto Sans JP', sans-serif;
  }

  .monthly-note .amount-formula span {
    font-size: 14px;
  }

  @media (max-width: 390px) {
    .monthly-note .amount-formula {
      margin-left: 3px;
    }
    .monthly-note p {
      margin-left: 3px;
    }
  }

  .amount-formula .note {
    font-size: 1.2rem !important;
    vertical-align: top;
  }

  .amount-note {
    font-size: 12px;
    color: #656565;
    margin-top: 8px;
    display: flex;
    line-height: 1;
  }

  .comparison-contact-button img {
    width: 100%;
  }
  @media (max-width: 550px) {
    .amount-note {
      text-align: left;
      margin-left: 0.3rem;
    }
  }
  .price-note {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: #656565;
    max-width: 966px;
    margin: 0 auto;
  }

  /* ここから比較検討 */

  .comparison-content {
    background-color: white;
    border-radius: 8px;
    padding: 4rem 1.6rem;
    margin-bottom: 16px;
  }

  .comparative-study {
    max-width: 675px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
  }

  .comparative-subtitle {
    background-color: #00B972;
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 16px;
    width: fit-content;
    margin: 0 auto 16px;
  }

/* ここから比較検討 */

  .comparative-title {
    color: black;
    line-height: 1.5;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .comparative-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .comparison-cards {
    display: flex;
    gap: 7px;
    justify-content: center;
    max-width: 966px;
    margin: 0 auto;
  }

  .comparison-free-charged {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid #DCDCDC;
    width: 33%;
    margin-top: 30px;
  }
  .comparison-free-charged .comparison-title {
    background-color: #D9D9D9;
    color: #333333;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    width: 100%;
    padding: 21px 0;
    text-align: center;
    border-radius: 12px 12px 0 0;
  }
  .comparison-free-charged img {
    max-width: calc(19rem + 1.6rem*2);
    margin: 0 auto;
    padding: 1.6rem 1.6rem 0;
  }
  .comparison-text {
    padding: 8px 16px;
    font-size: 14px;
  }
  .comparison-free-charged .comparison-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px;
    background-color: #D9D9D9;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    font-weight: 700;
    border-radius: 8px;
    min-height: 84px;
    height: 100%;
  }

  .comparison-smartvisca {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 4px solid #2262D3;
    /* min-width: 317px; */
    width: 33%;
  }
  .comparison-smartvisca .comparison-title {
    background-color: #2262D3;
    color: white;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    width: 100%;
    padding: 28px 0;
    text-align: center;
    border-radius: 10px 10px 0 0;
  }
  .comparison-smartvisca .comparison-title span {
    font-size: 1.4rem;
    margin-left: 0.4rem;
  }
  .comparison-smartvisca img {
    max-width: calc(19rem + 1.6rem*2);
    margin: 0 auto;
    padding: 1.6rem 1.6rem 0;
  }
  .comparison-smartvisca .comparison-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1.6rem 1.2rem;
    background-color: #2262D3;
    border-radius: 8px;
    min-height: 84px;
    height: 100%;
  }
  .comparison-smartvisca .comparison-text p {
    color: white;
    font-weight: 700;
  }

  .comparison-detail {
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    padding: 15px 16px;
    line-height: 1;
    max-width: 228px;
    border: 1px solid #2262D3;
    color: #2262D3;
    border-radius: 4px;
  }

  @media (max-width: 1024px) {
    .price-content .costs {
      flex-direction: column;
    }
    .initial-cost {
      width: 100%;
    }
    .monthly-cost {
      width: 100%;
    }
    .monthly-note {
      justify-content: center;
    }
    .amount-note {
      justify-content: center;
    }
  }

  @media (max-width: 767px) {

    .initial-cost .initial-amount {
      padding: 2.4rem 9.45rem;
    }
    .initial-cost .initial-amount .amount {
      font-size: 7.2rem;
    }
    .price-section {
      padding: 5.6rem 1.6rem;
    }
    .price-content {
      padding: 1.6rem;
    }
    .initial-subtitle {
      min-width: auto;
      font-size: 1.6rem;
    }
    .monthly-subtitle {
      min-width: auto;
      font-size: 1.6rem;
    }
    .monthly-note p {
      font-size: 1.4rem;
    }
    /* .monthly-note {
      margin: 1.3rem 0.3rem 0;
    } */
    .monthly-note .amount-formula {
      font-size: 2rem;
      margin: 7px 0;
    }
    .monthly-note .amount-formula span {
      font-size: 1.2rem;
    }
    /* ここから比較検討 */
    .comparative-title {
      font-size: 3.2rem; 
      margin-bottom: 1.6rem;
    }
    .comparative-study {
      margin-bottom: 3.2rem;
    }
    .comparison-content {
      padding: 2.4rem 1.6rem;
    }
    .comparison-cards {
      display: block;
    }
    .comparison-smartvisca {
      width: 100%;
    }
    .comparison-smartvisca .comparison-title {
      padding: 2.1rem 0 2.5rem;
    }
    .comparison-smartvisca .comparison-text {
      margin: 1.2rem;
      padding: .8rem 1.6rem;
    }
    .comparison-detail {
      margin-top: 3.2rem;
      max-width: 100%;
      padding: 1.4rem;
      justify-content: center;
      gap: 1.6rem
    }
    .comparison-free-charged {
      min-width: auto;
      margin-bottom: 1.6rem;
      width: 100%;
      margin-top: 0;
    }
    .monthly-cost .monthly-amount {
      padding: 1.6rem 2.1rem;
    }
    .monthly-cost .monthly-amount .amount {
      font-size: 7.2rem;
    }

  }

/* ===============================================
contact:SmartVisca資料お問い合わせ
=============================================== */
.contact-section {
  padding: 56px 16px;
  text-align: center;
  color: #333333;
}

.contact-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-line {
  margin: 8px auto 15px;
}

.contact-title {
  color: #333333;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.contact-title .pc-none {
  display: none;
}

.contact-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: 1206px;
  margin: 0 auto;
}

.contact-card-white,.contact-card-blue {
  max-width: 380px;
  width: 33%;
  border-radius: 8px;
  border: 1px solid #1C9EDB;
  padding: 64px 16px 16px;
  position: relative;
  background-color: #F1F9FE;
  box-shadow: 6px 5px 16px 0px rgba(34, 98, 211, 0.16);
}

.contact-card-blue {
  background-color: #E2F2FC;
}

.contact-card-comment {
  position: absolute;
  top: -24px;
  right: 24px;
}

.comment-card {
  background-color: #2262D3;
  border-radius: 4px;
  color: white;
  line-height: 1.5;
  font-weight: 700;
  padding: 8px 16px;
}

.comment-card .comment-text {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
}

.contact-card-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.contact-cart-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00B972;
  color: white;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  border: none;
  border-radius: 100px;
  padding: 22px;
  max-width: 333px;
  width: 100%;
  margin: 0 auto;
}

.contact-card-button img {
  margin-right: 2.4rem;
}

@media (max-width: 1024px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  .contact-card-white,
  .contact-card-blue {
    padding: 6.3rem 2.4rem 1.5rem;
    width: 100%;
  }
  .contact-card-comment {
    top: -17px;
    right: 16px;
  }
  .contact-card-button {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-text {
    font-size: 1.4rem;
  }
  .contact-line {
    margin: 8px auto;
  }
  .contact-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 7rem;
  }
  .contact-title .pc-none {
    display: block;
  }
  .contact-section {
    padding: 5.6rem 1.6rem 2.1rem;
  }
}
/* ===============================================
faq:よくある質問
=============================================== */
.faq-section {
  background-color: #E0F1FF;
 
}

.faq-section .container {
  padding: 80px 0;
  max-width: 966px;
  margin: 0 auto;
}

.faq-title {
  color: #333333;
  text-align: center;
  margin-bottom: 48px;
}

.faq-container {
  background-color: white;
  margin-bottom: 16px; 
  border-radius: 4px;
  overflow: hidden;
}

.faq-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem;
  color: #333333;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-jost {
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-right: 8px;
  color: #2262D3;
  transition: color 0.3s ease;
}

.faq-icon-wrapper {
  display: flex;
  align-items: center;
}

.faq-icon {
  font-size: 2.4rem;
  font-weight: 900;
  color: #2262D3;
  transition: color 0.3s ease;
}

.faq-icon-minus {
    display: none;
}

.faq-open {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 6rem;
}

.faq-open p {
  padding: 24px 0;
  margin: 0;
}

.js-accordion.is_active .faq-close {
  background-color: #2262D3;
  color: white;
  border-radius: 4px;
}

.js-accordion .faq-close .faq-question {
  display: flex;
  align-items: baseline;
}

.js-accordion .faq-close .faq-question p {
  /* line-height: 1.2; */
  letter-spacing: 0.0065em;
}

.js-accordion.is_active .faq-question .faq-jost {
  color: white;
}

.js-accordion.is_active .faq-icon {
    color: white;
}

.js-accordion.is_active .faq-icon-plus {
    display: none;
}

.js-accordion.is_active .faq-icon-minus {
    display: inline-block;
}

.js-accordion.is_active .faq-open {
  max-height: 900px;
}
@media (max-width: 767px) {
  .faq-section {
    padding: 8rem 1.6rem 7.5rem;
  }
  .faq-section .container {
    padding: 0;
  }
  .faq-title {
    font-size: 3.2rem;
    margin-bottom: 4.8rem;
  }
  .faq-container {
    margin-bottom: 8px;
  }
  .faq-close {
    padding: 16px;
  }
  .js-accordion .faq-close .faq-question p {
    line-height: 1.2;
  }
  .faq-jost {
    font-size: 2.4rem;
  }
  .faq-open {
    padding: 0 5.2rem;
  }
  .faq-open p {
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.2;
  }
}

/* sp時contactとfaqの表示順を逆にする */
@media (max-width: 767px) {
  .content-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* ==========================================================================
footer
========================================================================== */
/* footer */
.footer {
  width: 100vw;
  background-color: var(--background-base);
  padding: 8rem 8rem 0 8rem;
}

.footer-inner-menu {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}

.footer-group-cta .footer-logo {
  width: 25rem;
  display: inline-block;
}

.footer-group-cta img {
  width: 100%;
}

.footer-group-cta {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: calc(364 / 1366 * 100vw);
  max-width: 36.4rem;
}

.footer-group-cta-container {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-group-cta-btn {
  border-radius: .4rem;
  display: block;
  transition: all .3s ease;
  width: 100%;
}

.footer-group-cta-btn-inner {
  padding: 1.6rem 2rem 1.6rem 2.4rem;
  border-radius: .4rem;
  color: var(--background-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-group-cta-btn-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--background-base);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .4rem;
  color: #00B972;
}

.footer-group-cta-btn-icon span {
  font-size: 1.6rem;
}

.footer-cta-btn-fill {
  background-color: #00B972;
}

.footer-cta-btn-outline {
  background-color: var(--background-base);
  border: .1rem solid #00B972;
  color: #00B972;
}

.footer-cta-btn-outline .footer-group-cta-btn-icon {
  border: .1rem solid #00B972;
}

.footer-cta-btn-text {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-cta-btn-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.footer-group-cta-btn:hover .footer-cta-btn-fill{
  background-color: #04915C;
  transition: all .3s ease;
}

.footer-group-cta-btn:hover .footer-cta-btn-outline {
  background-color: #00B972;
  color: var(--background-base);
  transition: all .3s ease;
}

.footer-cta-btn-desc {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  padding-top: .8rem;
  border-top: .1rem dashed;
}

.footer-group-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3.2rem;
  grid-row-gap: 4rem;
  flex-grow: 1;
}

.footer-group-menu a:hover {
  color: #2262D3;
}

.footer-group-menu-wide {
  grid-area: 1 / 1 / 2 / 4;
}

.footer-group-menu-head {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-top: 2.4rem;
  border-top: .1rem solid #2250AB;
  color: var(--text-base);
  display: flex;
  align-items: center;
}

.footer-group-menu-head span {
  font-size: 1.6rem;
}

.footer-group-menu-wide-head {
  color: #7C7C7C;
}

.footer-group-menu-wide-container {
  display: flex;
  gap: 3.2rem;
  padding-top: 2.4rem;
}

.footer-group-menu-wide-item {
  width: 100%;
}

.footer-group-menu-wide-title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-base);
  padding-bottom: .8rem;
  border-bottom: .1rem solid #DCDCDC;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-group-menu-wide-title span {
  font-size: 1.6rem;
}

.footer-group-menu-wide-list {
  padding-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-group-menu-wide-list-item {
  font-size: 1.4rem;
}

.footer-link-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  padding: 1.6rem 0;
  border-top: .1rem solid #DCDCDC;
}

.footer-link-inner {
  font-size: 1.2rem;
  color: #7C7C7C;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-link-item > a,
.footer-link-item span {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.footer-copyright {
  font-size: 1.4rem;
  padding-top: 1.6rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.footer-isms {
  display: flex;
  align-items: flex-end;
  gap: .8rem;
}

.footer-isms-num {
  font-size: 1.3rem;
  color: #7C7C7C;
}

.footer-isms-num {
  font-size: 1.2rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.footer-isms-logo {
  width: calc(128 / 1366 * 100vw);
}

.footer-group-cta-container.is-sp,
.footer-copyright.is-sp {
  display: none;
}

.footer-copyright.is-pc {
  display: block;
}

@media (max-width: 1200px) {
  .footer {
    padding: 4rem 4rem 0 4rem;
  }

  .footer-inner-menu {
    gap: 4rem;
  }

  .footer-group-cta .footer-logo {
    max-width: 100%;
  }

  .footer-group-cta-btn-inner {
    padding: calc(16 / 1366 * 100vw);
  }

  .footer-group-cta-btn-icon {
    width: calc(40 / 1366 * 100vw);
    height: calc(40 / 1366 * 100vw);
  }

  .footer-group-cta-btn-icon span {
    font-size: calc(16 / 1366 * 100vw);
  }

  .footer-cta-btn-title {
    font-size: calc(20 / 1366 * 100vw);
  }

  .footer-cta-btn-desc {
    font-size: calc(12 / 1366 * 100vw);
  }

  .footer-copyright.is-sp {
    display: none;
  }

  .footer-copyright.is-pc {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 8rem 1.6rem 0 1.6rem;
  }

  .footer-group-cta .footer-logo {
    max-width: calc(374 / 390 * 100vw);
  }

  .footer-group-cta-container.is-sp {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .footer-group-cta-btn img {
    width: 100%;
  }

  .footer-cta-btn-title {
    font-size: 1.8rem;
  }

  .footer-cta-btn-desc {
    display: none;
  }

  .footer-group-cta-btn-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .footer-group-cta-btn-icon span {
    font-size: 1.6rem;
  }

  .footer-group-cta-btn-inner {
    padding: 1.6rem;
  }

  .footer-inner-menu {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .footer-group-cta-container {
    display: none;
  }

  .footer-group-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
  }

  .footer-group-menu-wide-container {
    flex-direction: column;
  }

  .footer-group-menu-wide {
    grid-area: 1 / 1 / 2 / 3;
  }

  .grid1 { grid-area: 1 / 1 / 2 / 3; }
  .grid2 { grid-area: 2 / 1 / 3 / 2; }
  .grid3 { grid-area: 2 / 2 / 3 / 3; }
  .grid4 { grid-area: 3 / 1 / 4 / 2; }
  .grid5 { grid-area: 4 / 1 / 5 / 2; }
  .grid6 { grid-area: 4 / 2 / 5 / 3; }

  .footer-link-container {
    flex-direction: column;
  }

  .footer-link-item {
    flex-wrap: wrap;
    gap: 1.6rem;
  }

  .footer-isms {
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    padding-top: 2.4rem;
  }

  .footer-isms-logo {
    width: calc(128 / 390 * 100vw);
  }

  .footer-copyright.is-pc {
    display: none;
  }

  .footer-copyright.is-sp {
    display: block;
    width: 100%;
    text-align: center;
    color: #7C7C7C;
  }
}

/* ==========================================================================
fadein
========================================================================== */
/* fadein */
.fadein {
  opacity: 0;
  translate: 0 .8rem;
  transition: opacity var(--transition), translate var(--transition);
}

.fadein[data-intersection-observer-active=true] {
  opacity: 1;
  translate: 0 0;
}

/* ==========================================================================
article
========================================================================== */
.article {
  display: grid;
  grid-template-columns: 1.6rem 1fr 1.6rem;
  overflow: clip;
  padding-bottom: 5.2rem;
  overflow: hidden;
}

.article:has(.article__contact) {
  padding-bottom: 0;
}

.article:has(.article__blockEditor) {
  background: #F1F1F1;
}

.article__mainvisual {
  grid-column: 2;
  position: relative;
  z-index: var(--zIndex);
}

.article__section {
  grid-column: 2;
  position: relative;
  z-index: var(--zIndex);
}

.article__toc {
  grid-column: 2;
  position: relative;
  z-index: var(--zIndex);
}

.article__blockEditor {
  grid-column: 2;
  position: relative;
}

.article__contact {
  grid-column: 1 / -1;
  position: relative;
  background: #FBFBFB;
}

.article__mainvisual + .article__section {
  margin-top: -3.6rem;
}

.article__mainvisual + .article__toc {
  margin-top: -5.6rem;
}

.article__toc + .article__blockEditor {
  margin-top: 5.6rem;
}

.article__mainvisual + .article__blockEditor {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .article {
    grid-template-columns: 3.2rem 1fr 3.2rem;
  }
}

@media (min-width: 960px) {
  .article {
    grid-template-columns: 8rem 1fr 8rem;
    padding-bottom: 8rem;
  }

  .article__mainvisual + .article__section {
    margin-top: -10.4rem;
  }

  .article__mainvisual + .article__toc {
    margin-top: -4rem;
  }

  .article__mainvisual + .article__blockEditor {
    margin-top: 5.6rem;
  }
  
}
@media (max-width: 767px) {
  .article__mainvisual + .article__section {
    margin-top: -8.8rem;
  }
}

/* ==========================================================================
mainvisual
========================================================================== */
.mainvisual {
  display: grid;
  row-gap: 2.4rem;
  position: relative;
  z-index: var(--zIndex);
  padding: 8.8rem 1.6rem 7.6rem 0;
  z-index: -1;
}

.mainvisual[data-color="blue"] {
  padding: 11.2rem .8rem;
  color: #fff;
}

.mainvisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  translate: -50% 0;
  width: 100vw;
  height: 100%;
  background: #F1F1F1;
}

.mainvisual[data-color="blue"]::before {
  background: linear-gradient(79.62deg, #2262D3 9%, #2EAEE9 84.52%);
}

.mainvisual__background {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  translate: -50% 0;
  min-width: 100vw;
  height: 100%;
}

.mainvisual__background img {
  height: 29rem;
}

.mainvisual__title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
}

.mainvisual__text {
  font-size: 1.6rem;
  line-height: 2;
}

@media (min-width: 960px) {
  .mainvisual {
    padding: 9.6rem 0 16rem;
  }

  .mainvisual[data-color="blue"] {
    padding: 9.6rem 0;
  }

  .mainvisual__background img {
    height: 100%;
  }

  .mainvisual__title {
    font-size: 5.6rem;
  }

  .mainvisual__text {
    max-width: 52%;
  }
}
@media (max-width: 767px) {
  .mainvisual {
    padding-bottom: 12.8rem;
  }
}

/* ==========================================================================
shadowContent
========================================================================== */
.shadowContent {
  max-width: 120.6rem;
  margin: 0 auto;
  padding: 4.8rem 1.6rem;
  border-radius: 1.6rem;
  box-shadow: .5rem .6rem 3rem 0 rgba(172, 172, 172, 0.25);
  background: #fff;
}

@media (min-width: 768px) {
  .shadowContent {
    padding: 4.8rem 3.2rem;
  }
}

@media (min-width: 960px) {
  .shadowContent {
    padding: 8rem 12rem;
    border-radius: 2.4rem;
  }
}

/* ==========================================================================
   Contact：お問い合わせ
========================================================================== */
.article__section.contact {
  position: relative;
  z-index: var(--zIndex);
}

.contact .shadowContent {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .article__section.contact::before {
    content: '';
    position: absolute;
    z-index: -99;
    top: 10%;  
    right: -8rem; 
    width: 38.5%; 
    height: 100%;
    background-image: url('../images/contact/contact_bgimg_upper_right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
  }

  .article__section.contact::after {
    content: '';
    position: absolute;
    z-index: -99;
    bottom: -55.5rem;
    left: -8rem;
    width: 100%;
    height: 75%;
    background-image: url('../images/contact/contact_bgimg_lower_left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .article__section.contact::before {
    content: '';
    position: absolute;
    z-index: -99;
    top: -7.5%;
    right: -16rem;
    width: 70%;
    height: 100%;
    background-image: url('../images/contact/contact_bgimg_upper_right.svg');
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
  }

  .article__section.contact::after {
    content: '';
    position: absolute;
    z-index: -99;
    bottom: -45rem;
    left: -10rem;
    width: 100%; 
    height: 50%; 
    background-image: url('../images/contact/contact_bgimg_lower_left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
  }
}

.contact .shadowContent {
  max-width: 1206px;
  margin: 0 auto;
  padding: 8rem 12rem;
  border-radius: 2.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4.8rem;
  color: #333333;
}

.contact .form-block {
  margin-bottom: 2.4rem;
}

.contact .form-block.post {
  margin-bottom: 1.9rem;
}

.contact .form-block label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1;
}

.contact .source label,
.contact .question label {
  margin-bottom: 0.8rem;
}

.contact .question textarea {
  resize: none;
  overflow-y: hidden;
}

.contact .select-wrapper {
  position: relative; 
}

.contact .select-arrow {
  position: absolute;
  top: 50%;
  right: 2.3rem;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: #666;
  pointer-events: none;
}

/* 必須マーク */
.contact .required {
  color: #d32f2f;
}

.contact .select-wrapper {
  position: relative;
}

.contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 4.8rem;
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"],
.contact select,
.contact textarea {
  width: 100%;
  padding: 1.2rem 2.4rem;
  border: 1px solid #2A79E666;
  font-weight: 400;
  border-radius: 0.4rem;
  line-height: 1.7;
  font-size: 1.6rem;
  background-color: #F9FCFF;
  box-sizing: border-box;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact input[type="tel"]:focus,
.contact select:focus,
.contact textarea:focus {
  outline: none;
  border-color: #2A79E6;
}

.contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 4.8rem;
}

.contact .post textarea {
  line-height: 1.4;
}

.contact .form-note {
  font-size: 1.4rem;
  color: #333333;
  margin-top: 0.8rem;
  line-height: 1;
}

.contact .email .form-note {
  line-height: 1.5;
  margin-top: 0.4rem;
}

.contact .submit {
  text-align: center;
  margin-top: 5rem;
}

.contact .privacy-policy-link {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact .privacy-policy-link a {
  color: #007bff;
  text-decoration: underline;
}

.contact .agree-check {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  margin-top: 1.5rem;
  margin-bottom: 5.6rem;
}

.contact .agree-check input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.6rem;
}

.contact .agree-check label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 1.5rem;
}

.contact .submit p {
   font-size: 1.4rem;
   line-height: 1.5;
}

.contact .submit .pc-none {
  display: none;
}

.contact .submit a {
   color: #007bff;
}

.contact .submit-button {
  background-color: #00B972;
  max-width: 31.2rem;
  width: 100%;
  color: white;
  border: none;
  padding: 1.4rem 8rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  border-radius: 0.4rem;
  transition: background-color var(--transition), transform var(--transition);
}

.contact .submit-button:hover {
  background-color: #43a047;
  transform: translateY(-2px);
}

.contact .form-block ul {
  display: grid;
  row-gap: .8rem;
  margin-top: .8rem;
}

.contact .form-block input[type="checkbox"] {
  display: none;
}

.contact .form-block ul li label {
  position: relative;
  padding-left: 3.2rem;
  line-height: 1.5;
  font-size: 1.4rem;
  cursor: pointer;
  margin-bottom: 0;
}

.contact .form-block ul li label::before {
  content: 'check_box_outline_blank';
  font-family: 'Material Symbols Rounded';
  font-size: 2.4rem;
  color: #666666;
  position: absolute;
  left: 0;
  top: -.2rem;
  transition: color 0.2s ease;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

.contact .form-block input[type="checkbox"]:checked + label::before {
  content: 'check_box';
  color: #2A79E6;
}

@media (max-width: 767px) {
  .contact h2 {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
  }
  .contact .shadowContent {
    padding: 4.8rem 1.6rem;
    border-radius: 1.6rem;
  }
  .contact .submit {
    margin-top: 3.5rem;
  }
  .contact .submit .pc-none {
    display: block;
  }
  .contact .agree-check {
    margin-bottom: 3.8rem;
  }
  .contact .submit-button {
    max-width: 32.6rem;
    padding: 1.6rem 8rem;
  }
}
/* ==========================================================================
  contact-thanks：お問い合わせ完了画面
========================================================================== */
.contact-thanks {
  text-align: center;
}

.contact-thanks h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  color: #333333;
}

.contact-thanks p {
  font-size: 1.6rem;
  line-height: 2;
}

.contact-thanks .button {
  display: block;
  background-color: #00B972;
  max-width: 31.2rem;
  width: 100%;
  color: white;
  border: none;
  padding: 1.6rem 8rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  border-radius: 0.4rem;
  margin: 5.6rem auto 0;
}

@media (max-width: 767px) {
  .contact-thanks {
    text-align: left;
  }
  .contact-thanks h2 {
    font-size: 3.2rem;
  }
  .contact-thanks .button {
    text-align: center;
    display: block;
    background-color: #00B972;
    max-width: 100%;
    width: 100%;
    color: white;
    border: none;
    padding: 1.6rem 8rem;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    border-radius: 0.4rem;
    margin: 2.4rem auto 0;
  }
}



/* ==========================================================================
  シンプルレイアウト
========================================================================== */
.simple {
  height: 100%;
  position: relative;
  background-image:
      url('../images/contact/form_background_blue.svg'),
      url('../images/contact/form_background_gray.svg');

  background-repeat:
      no-repeat,
      no-repeat;

  background-position:
      right bottom,
      center 176px;

  background-size:
      100% auto,
      100% auto;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family:  'Noto Sans JP', sans-serif;
}
@media (max-width: 767px) {
  .simple {
    background-image:
          url('../images/contact/form_background_blue_sp.svg'),
          url('../images/contact/form_background_gray_sp.svg');
    background-position:
          right bottom,
          center -120px;
  }
}

.simple-header {
  padding: 1.6rem 3.2rem;
}
@media (max-width: 767px) {
  .simple-header {
    padding: 2.4rem 1.6rem;
  }
}

.simple-article {
  display: flex;
  justify-content: center;
  padding: 12rem 1.6rem 24rem;
}
@media (max-width: 767px) {
  .simple-article {
    padding: 4rem 1.6rem 28.9rem;
  }
}

.simple-section {
  text-align: center;
  color: #333333;
}
.simple-section h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
.simple-section p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 4.8rem;
}
.simple-section a {
  display: block;
  background-color: #00B972;
  color: white;
  max-width: 31.2rem;
  width: 100%;
  border-radius: 4px;
  padding: 1.6rem;
  text-align: center;
  margin: 0 auto;
  line-height: 1;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .simple-section h2 {
    font-size: 3.2rem;
  }
  .simple-section p {
    text-align: left;
    margin-bottom: 4rem;
  }
  .simple-section a {
    max-width: 35.8rem;
  }
}
.simple-footer {
  /* height: 7.6rem; */
  border-top: .1rem solid #BDBDBD;
  padding: 1.5rem 0;
  margin: 0 4.8rem 6.4rem;
  bottom: 0%;
}
.simple-footer .small {
  font-size: #7C7C7C;
  font-family: 'jost', sans-serif;
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .simple-footer {
    justify-content: end;
  }
}
@media (max-width: 767px) {
  .simple-footer {
    margin: 0 1.6rem;
  }
}

/* ==========================================================================
  blockEditor
========================================================================== */
.blockEditor {
  display: grid;
  row-gap: 6.4rem;
  padding-bottom: 6.4rem;
  line-height: 1.8;
}

.blockEditor__content {
  position: relative;
  padding: 4.8rem 1.6rem;
}

.blockEditor__content::before {
  content: '';
  position: absolute;
  top: -11.2rem;
  bottom: 0;
  left: 50%;
  width: 100vw;
  translate: -50% 0;
  z-index: -1;
  background: url(../images/blockEditor/content_background_sp.svg) right top no-repeat;
}

.blockEditor__content::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 1.6rem;
  box-shadow: .5rem .6rem 3rem 0 rgba(172, 172, 172, 0.25);
  background: #fff;
}

.blockEditor__content *:first-child:not(:root) {
  margin-top: 0 !important;
}

.blockEditor__content *:last-child:not(:root) {
  margin-bottom: 0 !important;
}

.blockEditor__content .is-layout-flex {
  align-items: flex-start !important;
  gap: 4rem;
  margin-top: 1.6rem !important;
  margin-bottom: 4.8rem !important;
}

.blockEditor__content .wp-block-group + .wp-block-group {
  margin-top: 1.6rem !important;
}

.blockEditor__content .wp-block-group.has-background {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
  padding: 12rem 2.4rem;
}

.blockEditor__content .wp-block-group > .wp-block-image {
  flex: 0 1 auto;
  margin: 0 !important;
}

.blockEditor__content .wp-block-group > *:not(.wp-block-image) {
  flex: 1;
  margin: 0 !important;
}

.blockEditor__content .wp-block-group:has(.box) {
  align-items: stretch !important;
}

.blockEditor__content h2 {
  margin-bottom: 4.8rem !important;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.2;
}

.blockEditor__content h3 {
  margin-top: 6.4rem !important;
  margin-bottom: 1.6rem !important;
  padding-left: 3.2rem;
  background: url(../images/blockEditor/icon_h3.svg) left top no-repeat;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}

.blockEditor__content h2 + h3 {
  margin-top: 0 !important;
}

.blockEditor__content h4 {
  margin-top: 6.4rem !important;
  margin-bottom: 1.6rem !important;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}

.blockEditor__content h2 + h4,
.blockEditor__content h3 + h4 {
  margin-top: 0 !important;
}

.blockEditor__content h5 {
  color: #2262D3;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.6rem !important;
  margin-top: 3.2rem !important;
}

.blockEditor__content ul {
  margin-bottom: 1.6rem !important;
  margin-top: 1.6rem !important;
}

.blockEditor__content ul li {
  line-height: 1.8;
  padding-left: 2.5rem;
  position: relative;
}

.blockEditor__content ul li::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}

.blockEditor__content p {
  margin-bottom: 1.6rem !important;
  margin-top: 1.6rem !important;
}

.blockEditor__content p + p {
  margin-top: -0.8rem !important;
}

.blockEditor__content strong {
  font-weight: 700;
}

.blockEditor__content .wp-block-image img {
  margin: 0 auto;
}

.blockEditor__content .wp-block-buttons {
  margin-bottom: 3.2rem !important;
  margin-top: 3.2rem !important;
}

.blockEditor__content .wp-block-button {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}

.blockEditor__content .wp-block-button__link {
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto;
  column-gap: 1.6rem;
  background: #fff;
  border-radius: .4rem;
  color: #525252;
  border: .1rem solid currentColor;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 1.1rem 1.6rem;
}

.blockEditor__content .wp-block-button__link::after {
  content: '\e941';
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

.blockEditor__content .material-symbols-rounded {
  font-family: "Material Symbols Rounded" !important;
  font-size: 1.33333333em;
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
  margin-right: 0.25em;
  translate: 0 0.18em;
}

.blockEditor__content .wp-block-table {
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: calc(100vw - 1.6rem * 2 * 2);
}

.blockEditor__content .wp-block-table table {
  width: 100%;
  min-width: 61.2rem;
  border: 0;
  border-collapse: collapse;
}

.blockEditor__content .wp-block-table table thead {
  border: 0;
}

.blockEditor__content .wp-block-table table thead th {
  padding: 1.1rem 1.6rem;
  border: 0;
  font-weight: 700;
}

.blockEditor__content .wp-block-table table thead th:not(:empty) {
  border-bottom: .1rem solid #fff;
  background: #2A79E6;
  color: #fff;
}

.blockEditor__content .wp-block-table table thead th:not(:empty) + th:not(:empty) {
  border-left: .1rem solid #fff;
}

.blockEditor__content .wp-block-table table tbody tr:nth-child(odd) {
  background: #EFEFEF;
}

.blockEditor__content .wp-block-table table tbody td {
  padding: 1.3rem 1.6rem;
  border: 0;
  font-size: 1.4rem;
}

.blockEditor__content .wp-block-table table tbody td + td {
  border-left: .1rem solid #DCDCDC;
}

.blockEditor__content iframe {
  width: 100%;
}

.blockEditor__content iframe[src*=youtube] {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}

.blockEditor__content hr {
  margin-top: 4rem !important;
  margin-bottom: 1.6rem !important;
  border-bottom: 0;
  border-color: #2262D3;
  border-style: solid;
}

.blockEditor__content .box > .wp-block-group__inner-container {
  border: 0.1rem solid var(--color-sub);
  font-size: 1.4rem;
  height: 100%;
  padding: 1.6rem;
}

.blockEditor__content .box .wp-block-group:has(.has-x-large-font-size) {
  gap: 0 0.8rem;
  margin-bottom: 1.6rem !important;
  margin-top: 1.6rem !important;
}

.blockEditor__content .box .has-x-large-font-size {
  font-size: 3.2rem !important;
}

.blockEditor__content .box .has-x-large-font-size strong {
  font-weight: 500;
}

.blockEditor__content .box h3 {
  font-size: 2rem;
  margin-bottom: 1.6rem !important;
}

.blockEditor__content .box h4 {
  background: var(--background-light);
  color: var(--color-light);
  font-size: 1.4rem;
  margin-bottom: 0.8rem !important;
  margin-top: 0.8rem !important;
  padding: 0.4rem 0.8rem;
}

.blockEditor__content .box h4 + p {
  margin-bottom: 0.8rem !important;
  margin-top: 0.8rem !important;
}

.blockEditor__content .has-text-align-left {
  text-align: left;
}

.blockEditor__content .has-text-align-center {
  text-align: center;
}

.blockEditor__content .has-text-align-right {
  text-align: right;
}

.blockEditor__content .wp-block-group.has-background {
  margin-left: -2.4rem;
  margin-right: -2.4rem;
}

.blockEditor__content .info {
  margin-top: 6.4rem !important;
  margin-bottom: 6.4rem !important;
  padding: 2.4rem;
  border: .1rem solid #04915C;
  border-radius: .8rem;
  background: #EEFFF7;
  font-size: 1.4rem;
}

.blockEditor__content .info h2,
.blockEditor__content .info h3,
.blockEditor__content .info h4,
.blockEditor__content .info h5,
.blockEditor__content .info h6 {
  display: grid;
  align-items: center;
  min-height: 2.5rem;
  padding-left: 3.2rem;
  font-size: 1.6rem;
  background: url(../images/blockEditor/icon_info_title.svg) left top no-repeat;
}

.blockEditor__content .step {
  row-gap: .8rem;
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

.blockEditor__content .step + .step {
  margin-top: -1.6rem !important;
}

.blockEditor__content *:not(.step) + .step {
  counter-reset: step;
}

.blockEditor__content .step .wp-block-group {
  position: relative;
  padding: 2.4rem 1.6rem;
  border-radius: .8rem;
  background: #EFEFEF;
}

.blockEditor__content .step .wp-block-group::before {
  content: 'STEP';
  display: grid;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 2.4rem;
  padding-top: .8rem;
  border-radius: 6.4rem;
  background: #2262D3;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: var(--fontFamily-accent);
}

.blockEditor__content .step .wp-block-group::after {
  content: counter(step);
  counter-increment: step;
  display: grid;
  justify-content: center;
  align-items: end;
  position: absolute;
  top: 1.8rem;
  left: 1.6rem;
  width: 6.4rem;
  height: 6.4rem;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1;
  font-family: var(--fontFamily-accent);
}

.blockEditor__content .step h2,
.blockEditor__content .step h3,
.blockEditor__content .step h4,
.blockEditor__content .step h5,
.blockEditor__content .step h6 {
  margin-bottom: 1.6rem !important;
  padding: 0;
  background: none;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.blockEditor__content .cta {
  position: relative;
  margin-top: 8rem !important;
  margin-bottom: 6.4rem !important;
  padding: 5.6rem 1.6rem 2.4rem;
  border-radius: 1.6rem;
  background: #2A79E6;
  color: #fff;
  text-align: center;
  z-index: var(--zIndex);
}

.blockEditor__content .cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/blockEditor/cta_background_sp.png) left bottom no-repeat;
  mix-blend-mode: color-burn;
  z-index: -1;
}

.blockEditor__content .cta h2,
.blockEditor__content .cta h3,
.blockEditor__content .cta h4,
.blockEditor__content .cta h5,
.blockEditor__content .cta h6 {
  margin-bottom: 2.4rem !important;
  padding: 0;
  background: none;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.blockEditor__content .cta p {
  text-align: center;
}

.blockEditor__content .cta .wp-block-image {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.blockEditor__content .cta .wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/common/downloadbutton.svg) 1.9rem center no-repeat #00B972;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  border: none;
  border-radius: 100px !important;
  padding: 24px 24px 24px 56px;
  max-width: 333px;
  width: 100%;
  margin: 0 auto;
}

.blockEditor__content .cta .wp-block-button__link::after {
  display: none;
}

@media screen and (max-width: 767px){
  .blockEditor__content .pc-only {
    display: none;
  }
}

@media screen and (max-width: 1199px){
  .blockEditor__content .is-layout-flex {
    flex-direction: column;
  }
  .blockEditor__content .is-layout-flex > * {
    width: 100%;
  }
}

@media screen and (min-width: 768px){
  .blockEditor__content .wp-block-group.has-background {
    padding: 12rem 4rem;
  }

  .blockEditor__content .wp-block-group.has-background {
    margin-left: min(-4rem, 50% - 50vw + 4rem);
    margin-right: min(-4rem, 50% - 50vw + 4rem);
    padding: 12rem max(4rem, 50vw - 50% - 4rem);
  }
  .blockEditor__content::before {
    top: 4.8rem;
    background: url(../images/blockEditor/content_background_pc1.svg) right top no-repeat, url(../images/blockEditor/content_background_pc2.svg) left 104.3rem no-repeat;
  }
  .blockEditor__content .sp-only {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .blockEditor {
    row-gap: 8rem;
    max-width: 112.6rem;
    margin: 0 auto;
  }

  .blockEditor__content {
    padding: 8rem;
  }

  .blockEditor__content::after {
    border-radius: 2.4rem;
  }

  .blockEditor__content .wp-block-group + .wp-block-group {
    margin-top: 0 !important;
  }

  .blockEditor__content p + p {
    margin-top: 0 !important;
  }

  .blockEditor__content .wp-block-image {
    margin-bottom: 2.4rem !important;
    margin-top: 2.4rem !important;
  }

  .blockEditor__content .is-layout-flex {
    column-gap: 6rem;
  }

  .blockEditor__content .box .wp-block-group:has(.has-x-large-font-size) {
    align-items: baseline !important;
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .blockEditor__content h2 {
    font-size: 4rem;
  }

  .blockEditor__content h3 {
    background-size: 2.1rem;
    font-size: 3.2rem;
  }

  .blockEditor__content h4 {
    font-size: 2.4rem;
  }

  .blockEditor__content h5 {
    font-size: 2rem;
  }

  .blockEditor__content hr {
    margin-bottom: 2.4rem !important;
  }

  .blockEditor__content .wp-block-table {
    margin-top: 5.6rem;
    margin-bottom: 5.6rem;
  }

  .blockEditor__content .wp-block-table table tbody td {
    font-size: 1.6rem;
  }

  .blockEditor__content .info h2,
  .blockEditor__content .info h3,
  .blockEditor__content .info h4,
  .blockEditor__content .info h5,
  .blockEditor__content .info h6 {
    font-size: 1.6rem;
  }

  .blockEditor__content .wp-block-button__link {
    display: inline-grid;
    width: auto;
  }

  .blockEditor__content .info {
    padding: 3.2rem 4rem;
  }

  .blockEditor__content .step {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
    column-gap: 2.4rem;
  }

  .blockEditor__content .step + .step {
    margin-top: -1.6rem !important;
  }

  .blockEditor__content .step .wp-block-group {
    padding: 2.4rem;
  }

  .blockEditor__content .step .wp-block-group::after {
    left: 2.4rem;
  }

  .blockEditor__content .cta h2,
  .blockEditor__content .cta h3,
  .blockEditor__content .cta h4,
  .blockEditor__content .cta h5,
  .blockEditor__content .cta h6 {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .blockEditor__content .cta {
    padding: 7.2rem 22.4rem 10rem;
    margin-top: 6.4rem !important;
    background: url(../images/blockEditor/cta_background.png) left center no-repeat #2A79E6;
  }

  .blockEditor__content .cta::before {
    background-image: url(../images/blockEditor/cta_background_pc.png);
  }

  .blockEditor__content .cta .wp-block-image {
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    width: 26rem;
    margin: 0 !important;
    overflow: hidden;
  }

  .blockEditor__content .cta .wp-block-image img {
    translate: 35% 0;
    aspect-ratio: 7 / 8;
    object-fit: cover;
    object-position: left;
  }

  .blockEditor__content .cta .wp-block-buttons {
    margin-top: 8rem !important;
  }

  .blockEditor__content .cta .wp-block-button__link {
    display: inline-flex;
    width: auto;
    padding: 2.4rem 4rem 2.4rem 5.6rem;
  }
}

/* ==========================================================================
  toc
========================================================================== */
.toc {
  padding: 1.6rem;
  border-radius: .8rem;
  background: #fff;
}

.toc__item + .toc__item {
  border-top: .1rem solid #DCDCDC;
}

.toc__link {
  display: grid;
  grid-template-columns: 1fr 1.2rem;
  column-gap: .8rem;
  align-items: center;
  padding: 1.2rem .8rem 1.2rem 0;
  font-weight: bold;
}

@media screen and (min-width: 960px) {
  .toc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.6rem;
    max-width: 112.6rem;
    margin: 0 auto;
  }

  .toc:has(.toc__item:nth-child(3)) {
    justify-content: flex-start;
  }

  .toc__item {
    width: calc(100% / 2);
  }

  .toc__item + .toc__item {
    border-top: none;
  }

  .toc__item:nth-child(2n-1):not(:first-child)::before {
    content: '';
    position: absolute;
    left: 1.6rem;
    width: calc(100% - 1.6rem * 2);
    height: .1rem;
    background: #DCDCDC;
  }

  .toc__item:not(:nth-child(2n)) {
    border-right: .1rem solid #DCDCDC;
  }

  .toc__link {
    grid-template-columns: auto 1.2rem;
    justify-content: center;
    padding: 1.2rem .8rem;
    height: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .toc:has(.toc__item:nth-child(4)) {
    justify-content: center;
  }

  .toc:has(.toc__item:nth-child(5)) {
    justify-content: flex-start;
  }

  .toc__item {
    width: calc(100% / 4);
  }

  .toc__item:nth-child(2n-1)::before {
    display: none;
  }

  .toc__item:nth-child(2n-1):not(:first-child)::before {
    display: none;
  }

  .toc__item:nth-child(4n-3):not(:first-child)::before {
    content: '';
    display: block;
    position: absolute;
    left: 1.6rem;
    width: calc(100% - 1.6rem * 2);
    height: .1rem;
    background: #DCDCDC;
  }

  .toc__item:not(:nth-child(2n)) {
    border-right: none;
  }

  .toc__item:not(:nth-child(4n)) {
    border-right: .1rem solid #DCDCDC;
  }
}
