@charset "UTF-8";
:root {
  --font-main: "Noto Sans JP", sans-serif;
  --lp-01: #212121;
  --lp-02: #a4a4a4;
  --lp-03: #44a488;
  --lp-04: #5adab4;
  --lp-04-rgb: #c7eee1;
  --lp-05: #fac800;
  --lp-05-rgb: #f5e795;
  --WAKATAKE_20: #edfbf6;
  --WAKATAKE_400: #44a488;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
  text-decoration: none;
  border: 0;
  outline: 0;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  color: var(--lp-01);
  overflow-x: hidden;
  height: 100%;
  line-height: 1.5;
}

img {
  width: 100%;
}

ul {
  list-style-type: none;
}

ol,
menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  display: block;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

p {
  font-family: var(--font-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.64px;
}

b {
  font-weight: 700;
}

header a,
section a {
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--lp-01);
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 16px;
  }
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.heading h2 {
  display: inline-flex;
  padding: 20px 20px 14px;
  flex-direction: column;
  align-items: center;
  border-bottom: 6px solid var(--lp-04);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .heading h2 {
    font-size: 20px;
  }
}

/* btn */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
  gap: 16px;
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  margin: 0 auto;
}

.btn__text {
  color: var(--lp-01);
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
}

.btn__img {
  display: flex;
  width: 29px;
  height: 25px;
  justify-content: center;
  align-items: center;
}

.btn--yellow {
  background: var(--lp-05);
  border-bottom: 5px solid var(--lp-05-rgb);
}

.btn--yellow:hover {
  margin-top: 3px;
  border-bottom: 2px solid var(--lp-05-rgb);
}

.btn--green {
  background: var(--lp-04);
  border-bottom: 5px solid var(--lp-04-rgb);
}

.btn--green:hover {
  margin-top: 3px;
  border-bottom: 2px solid var(--lp-04-rgb);
}

.btn--white {
  position: relative;
  background-color: #fff;
}

.btn--border-green {
  border: 2px solid var(--e-dash-primary, #5adab4);
  z-index: 1;
}

.btn--border-green::after {
  position: absolute;
  content: "";
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  z-index: 0;
  bottom: -6.5px;
  border-bottom: 5px solid rgba(90, 218, 180, 0.4);
}

.btn--border-green:hover::after {
  border-bottom: 2px solid rgba(90, 218, 180, 0.4);
  bottom: -2.5px;
}

.btn--gray {
  background-color: #e0e0e0;
  position: relative;
}

.btn--gray::after {
  position: absolute;
  content: "";
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  z-index: 0;
  bottom: -6.5px;
  border-bottom: 5px solid #fafafa;
}

.btn--l {
  display: flex;
  width: 300px;
  padding: 20px 24px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .btn--l {
    width: 100%;
    justify-content: center;
  }
}

.btn--l .btn__text {
  font-size: 16px;
  letter-spacing: 0.64px;
}

.btn--l.btn--green svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn--l.btn--yellow svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn--s {
  width: 200px;
  padding: 14.5px 26px;
  gap: 10px;
  line-height: 1;
}

.btn--s .btn__text {
  font-size: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn--s.btn--green {
  border-bottom: 0;
}

.btn--s.btn--yellow {
  border-bottom: 0;
}

.btn--l.btn--green svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn--l.btn--yellow svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media screen and (min-width: 1200px) {
  .btn--l {
    width: 400px;
    padding: 16px 40px;
  }
  .btn--l .btn__text {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
/* header */
header {
  width: 100%;
  position: fixed;
  background: #fff;
  z-index: 10000;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner__logo {
  width: 130px;
  height: auto;
}

.header-inner nav {
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  align-items: center;
}

.header-inner__nav-list li {
  position: relative;
}

/* .pcがついているli以外に適応 */
.header-inner__nav-list li:not(.pc) {
  height: 60px;
  line-height: 60px;
  padding-left: 48px;
}

.header-inner__nav-list li a {
  color: #333333;
}

.header-inner__nav-list li a:hover {
  color: #888888;
  transition: all 0.5s ease;
}

.header-inner__humberger-icon {
  width: 40px;
  height: 40px;
  top: 15px;
  right: 15px;
  z-index: 1000;
  background: url(img/icon-menu-sp.png) no-repeat;
  background-size: 100%;
  cursor: pointer;
  display: block;
}

.header-inner__humberger-icon.close {
  background-image: url(img/icon-menu-close.png);
}

@media screen and (max-width: 1211px) {
  .header-inner nav.open {
    width: 100%;
    padding: 80px 10% 65px;
    box-shadow: 0 1px 20px #888;
    transition: width 0.3s ease;
  }
  .header-inner__nav-list li:not(.pc) {
    position: relative;
    height: 80px;
    line-height: 80px;
    padding-left: 54.09px;
    border-bottom: 2px solid #f4f4f4;
  }
  .header-inner__nav-list li:not(.pc)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%);
    width: 10.09px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(img/icon-arrow-01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}
@media screen and (max-width: 1211px) {
  .header-inner {
    padding: 20px 15px;
    height: 64px;
  }
  .header-inner nav {
    width: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 999;
  }
  .header-inner__nav-list li::before {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    left: 0;
    background: url(img/icon-list-arrow-01.png) no-repeat;
    background-size: 100%;
    margin: auto 0;
  }
  .header-inner__btn-list--sp {
    margin-top: 60px;
    gap: 20px;
    display: grid;
    place-items: center;
  }
  .header-inner__nav-list li.pc {
    display: none !important;
  }
}
@media screen and (min-width: 1211px) {
  .header-inner {
    max-width: 1440px;
    height: 80px;
    margin: 0 auto;
    padding: 16px 40px;
  }
  .header-inner__nav-list {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .header-inner__nav-list li.pc:nth-of-type(4) {
    margin: 0 10px 0 0;
  }
  .header-inner__nav-list li.pc:nth-of-type(6) {
    margin: 0 0 0 28px;
  }
  .header-inner__nav-list li:nth-of-type(3) {
    margin-right: 40px;
  }
  .header-inner__nav-list li::before {
    width: 2.5vw;
    height: 2.5vw;
  }
  .header-inner__humberger-icon {
    display: none;
  }
  .header-inner__btn-list--sp {
    display: none;
  }
}
/* メインビジュアル */
.mv {
  position: relative;
  overflow-x: visible;
  background: url(img/mv-bg.png) no-repeat, linear-gradient(to top, rgb(241, 252, 249) 0%, rgb(255, 255, 255) 70%);
  background-size: auto 100%, cover;
  background-position: calc(50% + 242.5px + 200px) center, top left;
}
@media (max-width: 1200px) {
  .mv {
    background-image: linear-gradient(to top, rgb(241, 252, 249) 0%, rgb(255, 255, 255) 70%);
    background-size: cover;
    background-position: top left;
  }
}
.mv .mv__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1440px;
  margin: 80px auto 0;
  height: 600px;
  padding-right: 500px;
}
@media (max-width: 1200px) {
  .mv .mv__inner {
    flex-direction: column;
    align-items: center;
    margin-top: 88px;
    padding: 0 16px 34px;
    height: auto;
  }
}
.mv .mv__content {
  margin: 87.5px 0 0 120px;
  max-width: 514px;
}
@media (max-width: 1200px) {
  .mv .mv__content {
    margin: 0;
    max-width: 560px;
  }
}
.mv .mv__lead {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .mv .mv__lead {
    font-size: 16px;
    text-align: center;
  }
}
.mv .mv__logo,
.mv .mv__description {
  margin-top: 24px;
  font-weight: normal;
}
@media (max-width: 1200px) {
  .mv .mv__logo,
  .mv .mv__description {
    margin-top: 16px;
  }
}
.mv .mv__logo {
  max-width: 484px;
}
@media (max-width: 1200px) {
  .mv .mv__logo {
    width: 90%;
    margin: 16px auto;
  }
}
.mv .mv__button-list {
  margin-top: 40px;
  display: flex;
  flex-flow: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1200px) {
  .mv .mv__button-list {
    margin-top: 16px;
    align-items: normal;
  }
}
@media (max-width: 1200px) {
  .mv .mv__button-list.sp {
    display: flex !important;
    flex-flow: column;
    gap: 14px;
    width: 100%;
    max-width: 560px;
  }
}
@media (max-width: 1200px) {
  .mv .mv__image {
    margin-top: 16px;
  }
}
.mv .mv__pc {
  display: none !important;
}
.mv .mv__sp {
  display: flex !important;
}
@media screen and (min-width: 1201px) {
  .mv .mv__pc {
    display: flex !important;
  }
  .mv .mv__sp {
    display: none !important;
  }
}

.logo-slider {
  margin: 40px 0;
}

.worries {
  position: relative;
}
.worries::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 156px solid transparent;
  border-right: 156px solid transparent;
  border-top: 100px solid #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .worries::after {
    border-left: 62px solid transparent;
    border-right: 62px solid transparent;
    border-top: 40px solid #fff;
    bottom: -25px;
  }
}
.worries .worries__inner {
  max-width: 1064px;
  margin: 0 auto;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}
.worries .worries__label {
  color: var(--WAKATAKE_400);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .worries .worries__label {
    font-size: 18px;
  }
}
.worries .worries__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .worries .worries__title {
    font-size: 24px;
  }
}
.worries .worries__image {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .worries .worries__list {
    margin-top: 24px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .worries .worries__person {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .worries .worries__person:nth-child(2) {
    flex-direction: row-reverse;
  }
  .worries .worries__person:nth-child(2) .worries__issues li::before {
    left: auto;
    right: -10px;
    border-right: none;
    border-left: 20px solid #eeeeee;
  }
  .worries .worries__person .worries__person-img {
    max-width: 108px;
  }
  .worries .worries__person .worries__issues {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .worries .worries__person .worries__issues li {
    max-width: 340px;
    min-height: 66px;
    background-color: #eeeeee;
    border-radius: 8px;
    font-size: 14px;
    line-height: 140%;
    padding: 16px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
  }
  .worries .worries__person .worries__issues li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 20px solid #eeeeee;
  }
}

.solution {
  background-color: var(--WAKATAKE_20);
}
@media screen and (max-width: 767px) {
  .solution {
    padding: 80px 16px;
  }
}
.solution .solution__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .solution .solution__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.solution .solution__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.solution .solution__title img {
  max-width: 312px;
  width: 100%;
  height: auto;
  flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .solution .solution__title img {
    max-width: 234.67px;
  }
}
@media screen and (max-width: 767px) {
  .solution .solution__title span {
    font-size: 21px;
  }
}
.solution .solution__lead {
  font-weight: 700;
  font-size: 28px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .solution .solution__lead {
    font-size: 16px;
    margin-top: 50px;
  }
}
.solution .solution__description {
  line-height: 1.6;
  margin-top: 32px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .solution .solution__description {
    font-size: 16px;
    margin-top: 40px;
  }
}
.solution .solution__image {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .solution .solution__image {
    max-width: 343px;
    margin: 33px auto 0;
  }
}
.solution .solution__arrow {
  max-width: 240px;
  margin: 16px 0;
}
@media screen and (max-width: 767px) {
  .solution .solution__arrow {
    margin: 24px 0;
  }
}
.solution .solution__services {
  border: 3px solid var(--lp-04);
  border-radius: 6px;
  padding: 28px 24px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .solution .solution__services {
    padding: 32px 24px;
  }
}
.solution .solution__service-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .solution .solution__service-list {
    flex-direction: column;
    gap: 8px 0 20px;
  }
}
.solution .solution__service-list .solution__service-item {
  max-width: 380px;
  width: 100%;
  height: 192px;
  background-color: var(--WAKATAKE_20);
  border-radius: 8px;
  position: relative;
  overflow: visible;
  padding: 33px 18px 16px;
}
@media screen and (max-width: 767px) {
  .solution .solution__service-list .solution__service-item {
    height: auto;
    max-width: 100%;
  }
}
.solution .solution__service-list .solution__service-item .solution__service-title {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  background-color: var(--lp-04);
  border-radius: 20px;
  padding: 4px 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.solution .solution__service-list .solution__service-item .solution__service-subtitle img {
  max-width: 156.44px;
}
.solution .solution__service-list .solution__service-item .solution__service-details {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .solution .solution__service-list .solution__service-item .solution__service-details {
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
  }
}
.solution .solution__service-list .solution__service-item .solution__service-details .solution__service-image {
  width: 135px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.solution .solution__service-list .solution__service-item .solution__service-details .solution__service-points {
  text-align: initial;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .solution .solution__service-list .solution__service-item .solution__service-details .solution__service-points {
    margin-top: 8px;
  }
}
.solution .solution__service-list .solution__service-item .solution__service-details .solution__service-points li {
  position: relative;
  padding-left: 1em;
}
.solution .solution__service-list .solution__service-item .solution__service-details .solution__service-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.3em;
  font-size: 1.5em;
  color: var(--lp-01);
}
.solution .solution__service-list .solution__service-item:nth-of-type(3) {
  background-color: #fef8df;
}
@media screen and (max-width: 767px) {
  .solution .solution__service-list .solution__service-item:nth-of-type(3) {
    margin-top: 10px;
  }
}
.solution .solution__service-list .solution__service-item:nth-of-type(3) .solution__service-title {
  background-color: var(--lp-05);
}
.solution .solution__service-list .solution__service-item:nth-of-type(3) .solution__service-subtitle {
  font-size: 14px;
  font-weight: 700;
}
.solution .solution__service-list .solution__service-item:nth-of-type(3) .solution__service-details {
  justify-content: center;
  margin-top: 26px;
}
.solution .solution__service-list .solution__service-item:nth-of-type(3) .solution__service-details .solution__service-image {
  width: 72.89px;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .solution .solution__service-list .solution__service-item:nth-of-type(3) .solution__service-details .solution__service-image {
    margin-right: 0;
  }
}
.solution .solution__service-list .solution__plus-icon {
  width: 32px;
}

.features {
  background-color: var(--WAKATAKE_20);
}
.features .features__inner {
  max-width: 1016px;
  margin: 0 auto;
}
.features .features__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 72px 40px;
  margin-top: 72px;
}
@media (max-width: 1028px) {
  .features .features__items {
    position: relative;
  }
  .features .features__items::after {
    content: "";
    flex: 0 0 312px;
    max-width: 100%;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .features .features__items {
    gap: 56px;
  }
  .features .features__items::after {
    display: none;
  }
}
.features .features__items li {
  max-width: 312px;
  background-color: #fff;
  border: 1px solid #fff;
  position: relative;
  padding: 32px 24px;
}
@media screen and (max-width: 767px) {
  .features .features__items li {
    max-width: 100%;
  }
}
.features .features__items li::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  width: 122px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}
.features .features__items li:nth-child(1)::before {
  background-image: url(img/features-point1.png);
}
.features .features__items li:nth-child(2)::before {
  background-image: url(img/features-point2.png);
}
.features .features__items li:nth-child(3)::before {
  background-image: url(img/features-point3.png);
}
.features .features__items li:nth-child(4)::before {
  background-image: url(img/features-point4.png);
}
.features .features__items li:nth-child(5)::before {
  background-image: url(img/features-point5.png);
}
.features .features__items li img {
  height: 80px;
  width: auto;
}
.features .features__items li h4 {
  font-size: 18px;
  margin-top: 16px;
}
.features .features__items li p {
  margin-top: 16px;
  font-size: 14px;
}

.contact {
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 16px;
  }
}
.contact .contact__inner {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .contact .contact__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.contact .contact__items {
  margin: 40px auto 0;
  max-width: 880px;
  display: flex;
  justify-content: space-evenly;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact .contact__items {
    flex-direction: column;
    gap: 48px;
  }
}
.contact .contact__items::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--lp-02);
  transform: translate(-50%);
}
@media screen and (max-width: 767px) {
  .contact .contact__items::before {
    display: none;
  }
}
.contact .contact__items .contact__item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact .contact__items .contact__item {
    margin: 0 auto;
    width: 100%;
    max-width: 560px;
  }
}
.contact .contact__items .contact__item .contact__label {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding-bottom: 16px;
}

.support-case {
  background: url(img/support-case-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
@media (min-width: 1440px) {
  .support-case .section-container {
    width: 1260px;
    margin: 0 auto;
    display: flex;
  }
}
@media (min-width: 1440px) {
  .support-case .section-container .support-case .section-container {
    margin-left: calc((100vw - 1024px) / 4);
  }
}
@media (min-width: 1920px) {
  .support-case .section-container .support-case .section-container {
    width: 1440px;
    margin-left: auto;
  }
}
.support-case .support-case__inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
}
.support-case .support-case__read {
  max-width: 442px;
}
.support-case .support-case__title {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 64px;
  line-height: 1.4;
  white-space: nowrap;
}
.support-case .support-case__text {
  color: #f4f4f4;
  font-size: 18px;
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
.support-case .support-case__button {
  max-width: 240px;
}
.support-case .support-case__button a {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #a4a4a4;
  border-radius: 50px;
  padding: 20px 24px;
  color: #505050;
  line-height: 1;
  margin-top: 28px;
  background: url(img/icon-arrow-right.svg) no-repeat calc(100% - 25px) center/8px 14px #fff;
}
.support-case .support-case__slider {
  max-width: 816px;
}

.support-case .section-left {
  position: relative;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .support-case .section-left {
    width: 768px;
    margin: 0 auto;
  }
}
@media (min-width: 888px) {
  .support-case .section-left {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .support-case .section-left {
    width: 1024px;
    min-width: 400px;
  }
}
.support-case .section-left-title {
  color: #212121;
  margin-bottom: 28px;
}

.support-case .section-left-title-slug {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  display: block;
}

@media (min-width: 1440px) {
  .support-case .section-left-title-slug {
    font-size: 28px;
  }
}
.support-case .section-left-title-ja {
  font-size: 31px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  margin: 15px 0;
  color: #fff;
  white-space: nowrap;
}

@media (min-width: 414px) {
  .support-case .section-left-title-ja {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .support-case .section-left-title-ja {
    font-size: 54px;
  }
}
.support-case .section-left-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.support-case .section-inner {
  position: relative;
  margin: 0 auto;
}

.support-case .section-inner-btn {
  margin: 30px auto 0;
}

@media (min-width: 1440px) {
  .support-case .section-inner-btn {
    position: absolute;
    left: -400px;
    top: 278px;
  }
}
@media (min-width: 888px) {
  .support-case .splide {
    width: 768px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .support-case .splide {
    width: 1064px;
  }
}
.support-case .splide__track {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

@media (min-width: 1440px) {
  .support-case .splide__track {
    padding: 20px !important;
  }
}
.support-case .splide__slide {
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  border: none;
}

.support-case .splide__slide a {
  padding-bottom: 40px;
  flex-direction: column;
  width: 100%;
  color: #505050;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.support-case .splide__slide a:hover,
.support-case .splide__slide a:active,
.support-case .splide__slide a:focus {
  color: #505050;
}

.support-case .splide__slide img:not(.post-pdf-icon) {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: calc((100vw - 10rem) * 0.525) !important;
}

@media (min-width: 768px) and (max-width: 888px) {
  .support-case .splide__slide img:not(.post-pdf-icon) {
    height: calc((100vw - 10rem - 30px) / 2 * 0.525) !important;
  }
}
@media (min-width: 888px) {
  .support-case .splide__slide img:not(.post-pdf-icon) {
    height: calc((768px - 10rem - 30px) / 2 * 0.525) !important;
  }
}
@media (min-width: 1440px) {
  .support-case .splide__slide img:not(.post-pdf-icon) {
    height: 168.7px !important;
  }
}
.support-case .splide__slide .news-item-right {
  padding: 20px 15px;
}

.support-case .splide__slide::after {
  content: "";
  display: block;
  width: 17px;
  height: 20px;
  position: absolute;
  right: 5px;
  bottom: 8px;
  background: #fff;
  mask: url(img/icon-arrow-right01.svg) no-repeat right center/contain;
  -webkit-mask: url(img/icon-arrow-right01.svg) no-repeat right center/contain;
}

.support-case .splide__slide::before {
  content: "";
  display: block;
  width: 50px;
  height: 80px;
  position: absolute;
  right: -15px;
  bottom: -30px;
  transform: rotate(45deg);
  background: #5adab4;
}

.support-case .splide__slide-right {
  background: #fff;
}

.support-case .splide__slide .news-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.support-case .splide__slide .news-description {
  font-size: 16px;
  font-weight: 400;
  height: 110px;
  padding-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  border-top: 1px solid #f4f4f4;
}

.support-case .splide__slide .news-description .post-pdf-icon {
  display: inline-block;
  width: 16px !important;
  height: auto !important;
  margin-right: 10px;
  margin-bottom: 2px;
}

.support-case .splide__slide .news-description br {
  display: none;
}

.support-case .splide__arrow {
  width: 40px;
  height: 40px;
}

.support-case .splide__arrow svg {
  display: none;
}

.support-case .splide__arrow--prev {
  background: #fff;
  opacity: 1;
  background-image: url(img/slider-arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

@media (min-width: 888px) {
  .support-case .splide__arrow--prev {
    left: -40px;
  }
}
@media (min-width: 1440px) and (max-width: 1699.9999px) {
  .support-case .splide__arrow--prev {
    left: 100px;
    bottom: -70px;
    top: unset;
  }
}
@media (min-width: 1700px) {
  .support-case .splide__arrow--prev {
    left: -40px;
  }
}
.support-case .splide__arrow--next {
  background: #fff;
  opacity: 1;
  background-image: url(img/slider-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

@media (min-width: 888px) {
  .support-case .splide__arrow--next {
    right: -40px;
  }
}
@media (min-width: 1440px) and (max-width: 1699.9999px) {
  .support-case .splide__arrow--next {
    bottom: -70px;
    top: unset;
    left: unset;
    right: 620px;
  }
}
@media (min-width: 1700px) {
  .support-case .splide__arrow--next {
    right: -40px;
  }
}
.support-case .splide__pagination {
  position: static;
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1440px) and (max-width: 1699.9999px) {
  .support-case .splide__pagination {
    position: absolute;
    margin-left: 0;
    left: -520px;
    bottom: -40px;
    top: unset;
    width: auto;
  }
}
.support-case .splide__pagination__page {
  opacity: 1;
  width: 12px !important;
  height: 12px !important;
  border-radius: 10px;
  background: #fff !important;
}

.support-case .splide__pagination__page.is-active {
  transform: scale(1.5);
  transform-origin: center;
  background: #5adab4 !important;
  opacity: 1;
  border: 2px solid #fff !important;
}

.support-case .splide:not(.is-active) {
  visibility: visible;
  width: 100%;
  left: 0;
}

@media (min-width: 1440px) {
  .support-case .splide:not(.is-active) {
    width: calc(100% + 40px);
    left: -20px;
  }
}
.support-case .splide:not(.is-active) .splide__track {
  padding: 20px;
}

@media (min-width: 1440px) {
  .support-case .splide:not(.is-active) .splide__track {
    padding: 20px;
  }
}
.support-case .splide:not(.is-active) .splide__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .support-case .splide:not(.is-active) .splide__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .support-case .splide:not(.is-active) .splide__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.support-case .splide:not(.is-active) .splide__slide {
  margin: 0;
}

.support-case .link-btn-01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0 0 0 25px;
  width: 220px;
  height: 60px;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid #a4a4a4;
  background: url(img/icon-arrow-right.svg) no-repeat calc(100% - 25px) center/8px 14px #fff;
  transition: all 0.2s ease-in-out;
}

.support-case .link-btn-01:hover,
.link-btn-01:active,
.link-btn-01:focus {
  color: #505050;
}

.support-case .link-btn-01:hover {
  padding-right: 15px;
  color: #5adab4;
  border-color: #5adab4;
  box-shadow: 0 0 0 2px #5adab4 inset;
  background: url(img/icon-arrow-right_hover.svg) no-repeat calc(100% - 15px) center/16px 16px #fff;
}

.voice {
  background-color: var(--WAKATAKE_20);
  padding: 80px 0 133px;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 60px 16px;
  }
}
.voice .voice__inner {
  max-width: 998px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .voice .voice__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.voice .voice__tdescription {
  margin: 40px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
.voice .voice__list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .voice .voice__list {
    flex-direction: column;
  }
}
.voice .voice__list .voice__item {
  max-width: 306px;
  padding: 32px 24px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .voice .voice__list .voice__item {
    max-width: 100%;
    padding: 32px 42.5px;
  }
}
.voice .voice__list .voice__item .voice__image {
  max-width: 80px;
  margin: 0 auto;
  display: block;
}
.voice .voice__list .voice__item .voice__company {
  font-size: 18px;
  font-weight: 700;
  color: var(--WAKATAKE_400);
  margin-top: 16px;
}
.voice .voice__list .voice__item .voice__comment,
.voice .voice__list .voice__item .voice__author {
  margin-top: 16px;
  font-size: 14px;
}
.voice .voice__list .voice__item .voice__author {
  margin-top: 24px;
}

.resources {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .resources {
    padding: 60px 16px;
  }
}
.resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(img/resources-bg-pc.png) no-repeat center;
  background-size: cover;
  opacity: 0.4;
  z-index: 1;
}
.resources .resources__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
  z-index: 2;
}
.resources .resources__inner::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -10%;
  width: 283.77px;
  height: 307.29px;
  background-image: url(img/resources-inner-bg.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .resources .resources__inner::before {
    top: 0;
    left: -5%;
    width: 161.96px;
    height: 171.29px;
    align-items: center;
  }
}
.resources .resources__list {
  background-color: #fff;
  border-radius: 6px;
  border: 2px solid var(--lp-04);
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .resources .resources__list {
    flex-direction: column;
    align-items: center;
    padding: 80px 21px;
  }
}
.resources .resources__list::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: calc(100% - 160px);
  background-color: var(--lp-02);
  transform: translate(-50%);
}
@media screen and (max-width: 767px) {
  .resources .resources__list::before {
    width: calc(100% - 42px);
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translateY(-50% -50%);
  }
}
.resources .resources__item {
  text-align: center;
  max-width: 400px;
}
.resources .resources__item .resources__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
}
.resources .resources__item .resources__image {
  margin-top: 40px;
}
.resources .resources__item .resources__description {
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .resources .resources__item .resources__description {
    font-size: 14px;
  }
}
.resources .resources__item .btn--gray {
  pointer-events: none;
}
.resources .resources__item .btn--gray .btn__text {
  color: #fafafa;
}
.resources .resources__item-02 .resources__description {
  margin-top: 8.5px;
}

/* footer */
.footer {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 12px;
}

.footer-logo {
  width: 200px;
  margin: 27px auto 37px;
}

.footer .copy {
  font-size: 11px;
  color: #a4a4a4;
}

.footer-nav {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #333333;
}

.footer-nav li {
  margin: 0 10px;
}

.footer-nav a:hover {
  color: #888888;
  transition: all 0.5s ease;
}

.polisy {
  margin-top: 33px;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .footer {
    padding: 50px 0;
  }
  .footer-logo {
    margin-top: 0;
  }
  .footer-nav a {
    line-height: 8vw;
  }
}
/* link-top */
.link-top a {
  display: block;
  position: fixed;
  width: 120px;
  height: 120px;
  right: 10%;
  bottom: 20px;
}

@media screen and (max-width: 768px) {
  .link-top a {
    width: 120px;
    height: 120px;
    right: 5%;
    bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .link-top a {
    width: 120px;
    height: 120px;
    right: 5%;
    bottom: 10px;
  }
}
.logo-slider {
  margin: 0 !important;
}/*# sourceMappingURL=style.css.map */