@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --primary: #5adab4;
  --secondary: #44a488;
  --text: #212121;
  --white: #ffffff;
  --bg: #edfbf6;
  --hover: rgba(90, 218, 180, 0.7);
  --bold: 700;
  --radius: 8px;
  --content-width: 930px;
  --content-inner-width: 850px;
  --side-width: 350px;
  --header-height: 80px;
  --header-height-sp: 64px;
  --font-en: "din-2014", sans-serif;
}

/*** reset ***/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  word-break: auto-phrase;
}
a {
  color: var(--text);
  text-decoration: none;
}
a,
a::before,
a::after,
a:hover,
a:hover:before,
a:hover:after {
  transition: all 0.5s ease;
}
p + p {
  margin-top: 1em;
}
mark {
  background-color: transparent;
  color: inherit;
}
em,
small {
  font-style: inherit;
  font-size: inherit;
  font-weight: inherit;
}
strong {
  font-style: inherit;
  font-size: inherit;
  font-weight: var(--bold);
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* reset end */

/*** base ***/
html {
  scroll-padding-top: var(--header-height);
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
}
ul.list-style {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1em;
  margin-left: 0.5em;
}
section {
  padding: 80px 0;
}
.section-bg {
  background-color: var(--secondary);
}
.section-bg .section-inner {
  max-width: 1024px;
  background-color: var(--white);
  padding: 50px;
}
.section-inner {
  width: 90%;
  max-width: var(--content-inner-width);
  margin: auto;
}
.section-title {
  max-width: max-content;
  font-size: 30px;
  font-weight: var(--bold);
  line-height: 1;
  text-align: center;
  border-bottom: 6px solid var(--primary);
  padding: 20px 20px 14px;
  margin: 0 auto 40px;
}
.btn {
  display: block;
  background-color: var(--primary);
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1;
  text-align: center;
  border-radius: 30px;
  padding: 22px 48px 22px 24px;
  box-shadow: 0px 4px 0px 0px #5adab466;
  position: relative;
}
.btn:hover {
  background-color: var(--hover);
}
.btn::after {
  content: "";
  width: 28px;
  height: 28px;
  background: url(img/icon-dl.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 84px;
  margin: auto;
}
.btn:hover {
  background-color: var(--hover);
}
/* base end */

/*** header ***/
.header {
  background-color: var(--white);
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid var(--Primitive-Color-SUMI-SUMI_300, #e0e0e0);
}
.header-logo img {
  width: 120.002px;
  height: 26.107px;
}
.header-nav-item {
  display: inline-block;
}
.header-nav-item.document {
  margin-left: 16px;
}
.header-nav-item a {
  display: inline-block;
  width: 100%;
  color: var(--black);
  font-weight: var(--bold);
  padding: 16px 24px;
}
.header-nav-item.item a:hover {
  background-color: #f4f4f4;
}
.header-nav-item.document a {
  background-color: var(--primary);
  line-height: 1;
  padding: 17px 80px 17px 42px;
  border-radius: 24px;
  position: relative;
}
.header-nav-item.document a:hover {
  background-color: var(--hover);
}
.header-nav-item.document a::after {
  content: "";
  width: 28px;
  height: 28px;
  background: url(img/icon-dl.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  margin: auto;
}
.header-nav-item.document a:hover {
  background-color: var(--hover);
}
/* header end */

/* first-view */
.first-view {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(174, 237, 218, 0.2) 100%
  );
}
.fv-bg {
  background-image: url(img/first-view.png);
  background-size: 589px auto;
  background-repeat: no-repeat;
  background-position: top right;
}
.fv-inner {
  width: 92%;
  max-width: var(--content-inner-width);
  padding: 88px 0;
  margin: auto;
}
.fv-logo {
  max-width: 308px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.fv-sub-title {
  font-size: 28px;
  font-weight: var(--bold);
  word-break: auto-phrase;
}
.fv-text {
  font-size: 16px;
  max-width: 484px;
}
.fv-cta .btn {
  max-width: 400px;
  font-size: 16px;
  font-weight: var(--bold);
  text-align: left;
  border-radius: 30px;
  padding: 22px 24px;
  margin-top: 24px;
}
.fv-cta .btn::after {
  right: 24px;
}
.first-view .loop__inner img {
  height: 98px;
}
/* first-view end */

/* worry */
.section-worry {
  padding-bottom: 0;
}
.section-worry .swiper {
  overflow: visible;
}
.section-worry .swiper-slide {
  height: auto;
}
.worry-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: max-content;
  height: 118px;
  background: url(img/worry.png) no-repeat;
  background-size: 266px auto;
  font-weight: var(--bold);
  text-align: center;
  padding-left: 237px;
  margin: 0 auto 24px;
}
.worry-title span:nth-child(1) {
  display: block;
  font-size: 24px;
}
.worry-title span:nth-child(2) {
  display: block;
  font-size: 32px;
}
.worry-box {
  display: flex;
  gap: 20px;
  margin-bottom: 46px;
}
.worry-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.worry-item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid #eee;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  margin: auto;
}
.worry-item-inner {
  flex-grow: 1;
  background-color: #eee;
  border-radius: var(--radius);
  padding: 20px 10px;
}
.worry-item-caption {
  font-size: 18px;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 24px;
}
.worry-item-content {
  flex-grow: 1;
}
.worry-item-content li + li {
  margin-top: 8px;
}
.resolve-warp {
  background: linear-gradient(180deg, #edfbf6 85%, #ffffff 100%);
  padding-bottom: 80px;
}
.resolve-box {
  display: flex;
  gap: 20px;
}
.resolve-item {
  flex: 1;
}
.resolve-title {
  max-width: max-content;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: var(--bold);
  border-radius: 32px 32px 0 0;
  padding: 16px 56px;
  margin: 0 auto 20px;
  position: relative;
  top: -30px;
}
.resolve-title img {
  max-width: 200px;
  margin-right: 6px;
}
.resolve-title .small {
  display: inline-block;
  font-size: 85%;
  letter-spacing: 0.2em;
}
.resolve-item {
  background-color: var(--white);
  box-shadow: 0px 8px 16px 0px #00000029;
  border-radius: var(--radius);
  padding: 30px 16px 20px;
  margin-bottom: 24px;
  position: relative;
  min-height: 380px;
}
.resolve-item::before {
  content: "";
  display: block;
  width: 60px;
  height: 58px;
  border-radius: 30px;
  background: var(--bg) url(img/arrow.png) no-repeat center center;
  background-size: auto 30px;
  position: absolute;
  left: 0;
  right: 0;
  top: -36px;
  margin: auto;
}
.resolve-item-caption {
  color: var(--secondary);
  font-size: 16px;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 16px;
}
.resolve-item-caption::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 10px auto 0;
}
.resolve-item-content li + li {
  margin-top: 1em;
}
.resolve-item.resolve-item1 .resolve-item-caption::after {
  background-image: url(img/resolve1.png);
}
.resolve-item.resolve-item2 .resolve-item-caption::after {
  background-image: url(img/resolve2.png);
}
.resolve-item.resolve-item3 .resolve-item-caption::after {
  background-image: url(img/resolve3.png);
}
/* worry end */

/* service */
.section-service {
  padding-bottom: 0;
}
.service-head {
  background: url(img/service-bg.png) no-repeat center bottom;
  background-size: cover;
  text-align: center;
  padding-bottom: 80px;
}
.service-head strong {
  font-size: 20px;
  font-weight: var(--bold);
  word-break: auto-phrase;
}
.service-head img {
  max-width: 690px;
  margin-top: 40px;
}
.service-box {
  padding-bottom: 40px;
}
.service-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0px 4px 16px 0px #00000029;
  padding: 32px 24px 32px 266px;
  margin-top: 40px;
  position: relative;
}
.service-item::before {
  content: "";
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 32px;
  left: 24px;
}
.service-item:nth-child(1):before {
  background-image: url(img/service1.png);
}
.service-item:nth-child(2):before {
  background-image: url(img/service2.png);
}
.service-item:nth-child(3):before {
  background-image: url(img/service3.png);
}
.service-item-caption {
  font-size: 20px;
  font-weight: var(--bold);
  margin-bottom: 16px;
}
.service-item-content li + li {
  margin-top: 8px;
}
/* service end */

/* cta */
.section-cta p {
  font-size: 16px;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 10px;
}
.cta-inner {
  max-width: 400px;
  margin: auto;
}
.cta-img {
  margin-bottom: 40px;
}
/* cta end */

/* case */
.case-item {
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  box-shadow: 0px 4px 16px 0px #00000029;
  padding: 36px;
  margin-top: 40px;
}
.case-item-label {
  margin-bottom: 8px;
}
.case-item-caption {
  font-size: 20px;
  font-weight: var(--bold);
  border-bottom: 1px solid #bdbdbd;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.case-item-content {
  display: flex;
  gap: 24px;
}
.case-item .content-box,
.case-item-img {
  flex: 1;
}
.case-item .content-item {
  margin-bottom: 24px;
}
.case-item .content-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.case-item .content-title::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(img/check-w.png) no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.case-item .content-text li + li {
  margin-top: 4px;
}
.case-item-benefit {
  background-color: var(--white);
  font-weight: var(--bold);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px;
}
.benefit-title {
  display: flex;
  align-items: center;
  color: var(--secondary);
  margin-bottom: 8px;
}
.benefit-title::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(img/check.png) no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.case-item-benefit small {
  color: #616161;
  font-size: 10px;
  font-weight: normal;
}
.benefit-text li + li {
  margin-top: 4px;
}
/* case end */

/* sidebar */
.sidebar {
  background-color: var(--white);
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: var(--side-width);
  height: calc(100vh - var(--header-height));
  border-left: 2px solid #e0e0e0;
  padding: 36px 10px 36px 20px;
}
.sidebar-title {
  display: flex;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--bold);
  margin-bottom: 32px;
}
.sidebar-title-img {
  width: 84px;
}
.sidebar-form {
  margin: 0 4px;
}
/* sidebar end */

/* パソコンレイアウト　1600px以上 */
@media (min-width: 1600px) {
  .fv-bg {
    background-image: url(img/first-view-lage.png);
    background-size: 753px auto;
  }
}

/* パソコンレイアウト　1280px以上 */
@media (min-width: 1280px) {
  .tb {
    display: none;
  }
  .wrapper {
    width: 100%;
    /* margin-right: var(--side-width); */
  }
  .wrapper main {
    width: calc(100% - var(--side-width));
  }
  .fv-cta {
    display: none;
  }
  .sidebar-form {
    height: 92%;
    overflow-y: scroll;
  }
  .inc-footer {
    margin-right: var(--side-width);
  }
}

/* タブレットレイアウト　1279〜930px */
@media (max-width: 1279px) {
  .pc {
    display: none;
  }
  .sidebar {
    width: 90%;
    height: auto;
    max-width: var(--side-width);
    border: none;
    margin: auto;
    position: static;
  }
  .section-title {
    font-size: 18px;
  }
}
@media (min-width: 931px) {
  .sp {
    display: none;
  }
  .wrapper {
    padding-top: var(--header-height);
  }
  .header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
  .fv-title-tb {
    display: none;
  }
  .service-item-content {
    font-size: 16px;
  }
}

/* スマホレイアウト　930px以下 */
@media (max-width: 930px) {
  /* sp-menu */
  .sp-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
  }
  .sp-menu-bar,
  .sp-menu-bar::before,
  .sp-menu-bar::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    margin: 2px 0;
    transition: all 0.5s ease;
  }
  .sp-menu-bar {
    position: relative;
  }
  .sp-menu-bar::before {
    position: absolute;
    top: -8px;
  }
  .sp-menu-bar::after {
    position: absolute;
    bottom: -8px;
  }
  .sp-menu.active .sp-menu-bar {
    height: 0;
  }
  .sp-menu.active .sp-menu-bar::before {
    transform: rotate(45deg);
    top: -3px;
  }
  .sp-menu.active .sp-menu-bar::after {
    transform: rotate(-45deg);
    bottom: -3px;
  }
  /*** end sp-menu ***/

  section {
    padding: 60px 0;
  }
  .header {
    width: 100%;
    height: var(--header-height-sp);
    padding: 0 3%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
  .header-logo img {
    height: 30px;
  }
  .header-nav {
    width: 100%;
    background-color: var(--white);
    font-size: 16px;
    padding-bottom: 40px;
    position: absolute;
    top: var(--header-height-sp);
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
  }
  .header-nav.active {
    opacity: 1;
    pointer-events: all;
  }
  .header-nav-item,
  .header-nav-item.document {
    display: block;
    margin: 0;
    padding: 0 5%;
  }
  .header-nav-item a {
    display: block;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .header-nav-item.item a {
    border-bottom: 1px dotted #f4f4f4;
    padding-left: 56px;
    position: relative;
  }
  .header-nav-item.item a::before {
    content: "";
    display: block;
    width: 24px;
    height: 25px;
    background: url(img/sp-nav-arrow.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .header-nav-item.document a {
    max-width: 300px;
    text-align: center;
    margin: 40px auto 0;
    padding-top: 22px;
    padding-bottom: 22px;
    border-radius: 30px;
    box-shadow: 0 4px 0 #5adab466;
  }
  .fv-inner {
    padding-top: calc(var(--header-height-sp) + 24px);
    padding-bottom: 40px;
  }
  .fv-bg {
    background: none;
  }
  .fv-logo {
    max-width: 280px;
  }
  .fv-title {
    text-align: center;
  }
  .fv-title-pc {
    display: none;
  }
  .fv-sub-title {
    font-size: 20px;
    text-align: center;
  }
  .fv-text {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
  .fv-img {
    max-width: 600px;
    margin: 16px auto 32px;
  }
  .fv-cta .btn {
    margin: auto;
  }
  .worry-title {
    width: 248px;
    background: url(img/worry-sp.png) no-repeat center bottom;
    background-size: auto 110px;
    display: block;
    padding: 0 0 160px;
  }
  .worry-title span:nth-child(1),
  .worry-title span:nth-child(2) {
    font-size: 18px;
  }
  .service-head strong {
    font-size: 16px;
  }
  .service-item-caption {
    font-size: 16px;
  }
  .case-item-caption {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .fv-title-sp {
    display: none;
  }
  .resolve-warp-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .btn::after {
    right: 56px;
  }
  .fv-title-tb {
    display: none;
  }
  .section-worry {
    width: 100%;
    overflow: hidden;
  }
  .section-worry .section-inner {
    width: 80%;
  }
  .section-worry .swiper-button-next {
    width: auto;
    right: -16px;
  }
  .section-worry .swiper-button-next::after {
    content: "";
    width: 38px;
    height: 38px;
    background: url(img/slider-arrow-r.png) no-repeat;
    background-size: contain;
  }
  .section-worry .swiper-button-prev {
    width: auto;
    left: -16px;
  }
  .section-worry .swiper-button-prev::after {
    content: "";
    width: 38px;
    height: 38px;
    background: url(img/slider-arrow-l.png) no-repeat;
    background-size: contain;
  }
  .worry-box,
  .resolve-warp {
    display: none;
  }
  .resolve-warp-sp {
    position: relative;
    z-index: 1;
  }
  .resolve-warp-sp::after {
    content: "";
    display: block;
    width: 100%;
    height: var(--item-height);
    background: linear-gradient(180deg, #edfbf6 85%, #ffffff 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    padding-top: 30px;
  }
  .swiper .worry-item {
    margin-bottom: 106px;
  }
  .resolve-title {
    font-size: 16px;
    padding: 16px;
    margin-bottom: 0;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
  }
  .resolve-title img {
    max-width: 153px;
  }
  .service-head p:last-of-type {
    text-align: left;
  }
  .service-item {
    padding: 24px 5%;
  }
  .service-item::before {
    display: block;
    position: static;
    margin: 0 auto 36px;
  }
  .service-item:first-of-type:before {
    margin-bottom: 0;
  }
  .case-item {
    padding: 24px 5%;
  }
  .case-item-content {
    flex-direction: column-reverse;
  }
  .case-item-benefit {
    padding: 20px 5%;
  }
}
html {
  scroll-behavior: smooth;
}
.swiper-slide-next,
.swiper-slide-prev {
  visibility: hidden;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  margin-top: 30px;
  position: relative;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
}
.swiper-pagination-bullet-active {
  background: var(--Primitive-Color-WAKATAKE-WAKATAKE_200, #5adab4) !important;
}