@charset "UTF-8";
/* CSS Document */
/*
ヘッダー
フッター
10.トップページ
*/
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-weight: 500;
  scroll-padding-top: 120px;
}
html body.hidden {
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  html {
    scroll-padding-top: 60px;
  }
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
}
.fadein.is-active {
  opacity: 1;
}
.fadein.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
.fadein.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

/*PC*/
#header *,
#header ::before,
#header ::after, #footer *,
#footer ::before,
#footer ::after, .footer-cta-area *,
.footer-cta-area ::before,
.footer-cta-area ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
#header p, #footer p, .footer-cta-area p {
  margin: 0;
}
#header h1,
#header h2,
#header h3, #footer h1,
#footer h2,
#footer h3, .footer-cta-area h1,
.footer-cta-area h2,
.footer-cta-area h3 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
#header ul,
#header ol, #footer ul,
#footer ol, .footer-cta-area ul,
.footer-cta-area ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header li, #footer li, .footer-cta-area li {
  list-style: none;
}
#header .sp, #footer .sp, .footer-cta-area .sp {
  display: none;
}
#header a, #footer a, .footer-cta-area a {
  background-color: transparent;
  color: inherit;
}
#header button, #footer button, .footer-cta-area button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
#header button,
#header [type=button],
#header [type=reset],
#header [type=submit], #footer button,
#footer [type=button],
#footer [type=reset],
#footer [type=submit], .footer-cta-area button,
.footer-cta-area [type=button],
.footer-cta-area [type=reset],
.footer-cta-area [type=submit] {
  cursor: pointer;
}
#header button:disabled,
#header [type=button]:disabled,
#header [type=reset]:disabled,
#header [type=submit]:disabled, #footer button:disabled,
#footer [type=button]:disabled,
#footer [type=reset]:disabled,
#footer [type=submit]:disabled, .footer-cta-area button:disabled,
.footer-cta-area [type=button]:disabled,
.footer-cta-area [type=reset]:disabled,
.footer-cta-area [type=submit]:disabled {
  cursor: default;
}

#header {
  width: 900px;
  height: 70px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  transition: background-color 0.3s ease;
}
#header .header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  margin: 10px 10px 0 0;
  transition: background-color 0.3s ease;
}
#header .header-wrapper .cta__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 60px;
  border-radius: 100px;
  border: solid 1px transparent;
  position: relative;
  overflow: hidden;
  background: linear-gradient(99deg, #f19661 6%, #e33c61 95%);
  box-shadow: 2px 3px 15px 0 rgba(0, 0, 0, 0.25);
}
#header .header-wrapper .cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(99deg, #fff 6%, #fff 95%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
#header .header-wrapper .cta__btn .cta__text {
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}
#header .header-wrapper .cta__btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 13px;
  background: url(../images/lp/arrow_white.png) no-repeat;
  background-size: contain;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.4s ease;
}
#header .header-wrapper .cta__btn:hover {
  border: solid 1px #FB4848;
}
#header .header-wrapper .cta__btn:hover::after {
  opacity: 1;
}
#header .header-wrapper .cta__btn:hover .cta__text {
  color: #FB4848;
}
#header .header-wrapper .cta__btn:hover:before {
  background: url(../images/lp/entry_after.png) no-repeat;
  background-size: contain;
}
#header .header-wrapper .header_hamburger {
  display: none;
}
#header .filter {
  display: none;
}

#footer {
  padding-top: 0px;
  position: relative;
}
#footer .sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 900px;
  margin: 0 auto;
  height: 40px;
  background-color: #707070;
}
#footer .sm p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  margin-bottom: 3px;
}

.footer-cta-area {
  display: none !important;
}

/*SMP*/
@media only screen and (max-width: 1279px) {
  #header .sp, #footer .sp, .footer-cta-area .sp {
    display: block;
  }
  #header {
    width: 100%;
    height: 60px;
  }
  #header .header-wrapper {
    width: 100%;
    height: 60px;
    justify-content: end;
    display: flex;
    align-items: center;
    margin: 0;
    z-index: 9999999;
  }
  #header .header-wrapper .header_hamburger {
    display: block;
    z-index: 200;
    width: 70px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #header .header-wrapper .header_hamburger .hamburger {
    width: 45px;
    height: 45px;
    border-radius: 2.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
  }
  #header .header-wrapper .header_hamburger .hamburger .hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 1px;
    margin: 3.2px;
    background-color: #3c3c3c;
  }
  #header .header-wrapper .header_hamburger .hamburger.is-open {
    background-color: transparent;
  }
  #header .header-wrapper .header_hamburger .hamburger.is-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
    background-color: #214353;
  }
  #header .header-wrapper .header_hamburger .hamburger.is-open .hamburger-line:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -3px);
    background-color: #214353;
  }
  #header .header-wrapper .cta {
    display: none;
  }
  #header .filter {
    opacity: 0;
    display: none;
    opacity: 1;
    width: 100%;
    height: 100dvh;
    background-color: #EDF5F5;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    overflow: scroll;
    transition: all 0.3s ease;
  }
  #header .filter .nav {
    width: 350px;
    padding: 100px 0 0 45px;
    margin: 0 auto;
  }
  #header .filter .nav ul li {
    margin-bottom: 20px;
  }
  #header .filter .nav ul li a {
    display: inline-block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    padding-left: 35px;
    position: relative;
  }
  #header .filter .nav ul li a:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/lp/anker_smp.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  #header .filter .cta {
    width: 275px;
    margin: 30px auto;
    padding: 0;
  }
  #header .filter .cta__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 275px;
    height: 50px;
    background-image: linear-gradient(99deg, #f19661 6%, #e33c61 95%);
    box-shadow: 2px 3px 15px 0 rgba(0, 0, 0, 0.25);
    border-radius: 100px;
  }
  #header .filter .cta__text {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.08em;
  }
  #header .filter.is-open {
    display: block;
    opacity: 1;
    transition: all 0.3s ease;
  }
  #footer {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin-bottom: 60px;
  }
  #footer .sm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    background-color: #707070;
  }
  #footer .sm p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
    color: #fff;
  }
  #footer .go-top {
    padding: 0 5px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 50px;
    right: 5px;
  }
  #footer .go-top img {
    width: 40px;
    height: 40px;
  }
  .footer-cta-area {
    display: flex !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    z-index: 20;
    position: fixed;
    left: 0;
    bottom: 0;
    opacity: 0;
    background-color: #fff;
    transform: translateY(90px);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .footer-cta-area .footer-cta {
    width: 100%;
    transition: all 0.3s ease;
  }
  .footer-cta-area .footer-cta__contact a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 325px;
    margin: 0 auto;
    height: 45px;
    border-radius: 100px;
    background-image: linear-gradient(97deg, #f19661 6%, #e33c61 96%);
  }
  .footer-cta-area .footer-cta__contact a p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.13;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
  }
  .footer-cta-area.footer-cta-scrolled {
    opacity: 1;
    transform: translateY(0);
  }
}
/*トップページ*/
/*SMP*/
#top *,
#top ::before,
#top ::after {
  box-sizing: border-box;
}
#top p {
  margin: 0;
}
#top h1,
#top h2,
#top h3,
#top h4,
#top h5,
#top h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
#top ul,
#top li {
  list-style: none;
}
#top .sp {
  display: block;
}
#top a {
  background-color: transparent;
  color: inherit;
}
#top .fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
}
#top .fadein.is-active {
  opacity: 1;
}
#top .mv {
  margin-bottom: 0;
  padding: 0 0 0;
}
#top .mv__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
#top .mv__wrapper .mv__img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto -8px;
  justify-self: end;
  position: relative;
}
#top .mv__wrapper .mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .mv__wrapper .mv__img .btn {
  width: 315px;
  position: absolute;
  top: 27px;
  left: -24px;
}
#top .mv__wrapper .mv__img .btn ul {
  display: flex;
  flex-wrap: wrap;
}
#top .mv__wrapper .mv__img .btn ul li {
  display: flex;
  align-items: center;
  height: 22.5px;
  padding: 0 10px 0 8px;
  border-radius: 2.5px;
  background-color: #fa6f77;
  margin: 0 5px 5px 0;
}
#top .mv__wrapper .mv__img .btn ul li span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: inherit;
  color: #fff;
}
#top .mv__bottom .cta {
  margin-top: -85px;
  position: relative;
  z-index: 20;
}
#top .mv__bottom .cta__btn {
  display: block;
  width: 275px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  box-shadow: 2px 3px 15px 0 rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(99deg, #f19661 6%, #e33c61 95%);
}
#top .mv__bottom .cta__btn .cta__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
}
#top .concept {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 115px 0 45px;
  overflow: hidden;
  position: relative;
}
#top .concept__wrapper {
  width: 360px;
  margin: 0 auto;
  position: relative;
}
#top .concept__wrapper .inner {
  position: relative;
}
#top .concept__wrapper .inner h2 {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  text-align: right;
}
#top .concept__wrapper .inner h2 span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
  position: relative;
}
#top .concept__wrapper .inner h2 span:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
}
#top .concept__wrapper .inner h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 157px;
  height: 53px;
  background: url(../images/lp/concept.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -37px;
  right: 25px;
}
#top .concept__wrapper .inner h3 {
  text-align: center;
  background-color: #fff;
  padding-top: 30px;
  position: relative;
  margin: 10px 0 22px;
}
#top .concept__wrapper .inner h3 .bb {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fa6f77;
  position: relative;
}
#top .concept__wrapper .inner h3 .bb:before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fa6f77, #fa6f77 2px, transparent 3px, transparent 2px) repeat-x bottom left/7px 1px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
#top .concept__wrapper .inner h3 .bb:first-child {
  margin-bottom: 5px;
}
#top .concept__wrapper .inner .desc {
  margin-bottom: 26px;
  position: relative;
}
#top .concept__wrapper .inner .desc p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #1c1c1c;
}
#top .concept__wrapper .inner .desc:before, #top .concept__wrapper .inner .desc:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  z-index: -1;
}
#top .concept__wrapper .inner .desc:before {
  background: url(../images/lp/circle01.png) no-repeat;
  background-size: contain;
  width: 77px;
  height: 77px;
  top: -28px;
  left: -36px;
}
#top .concept__wrapper .inner .desc:after {
  background: url(../images/lp/circle02.png) no-repeat;
  background-size: contain;
  width: 101px;
  height: 101px;
  top: 31px;
  right: -36px;
}
#top .concept__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  width: 175px;
  height: 114px;
  background: url(../images/lp/top_4.jpg) no-repeat;
  background-size: cover;
  top: -69px;
  left: -20px;
  z-index: -10;
}
#top .concept__content ul .item {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 275px;
  margin: 0 auto 25px;
  position: relative;
}
#top .concept__content ul .item__img {
  width: 265px;
  height: 164.05px;
  margin-bottom: 56px;
}
#top .concept__content ul .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .concept__content ul .item__title {
  position: absolute;
  top: 148px;
  left: 0;
  height: 63.5px;
}
#top .concept__content ul .item__title .bg {
  display: inline-block;
  height: 30px;
  line-height: 29px;
  padding: 0 10px;
  border-radius: 1px 2.5px 2.5px 1px;
  background-image: linear-gradient(99deg, #f496f7, #fdb36a 100%, #fcffce);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}
#top .concept__content ul .item__title .bg:first-child {
  margin-bottom: 3.5px;
}
#top .concept__content ul .item__text {
  width: 250px;
}
#top .concept__content ul .item__text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .concept__content ul .item:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/lp/point01.png) no-repeat;
  background-size: contain;
  width: 80px;
  height: 44px;
  top: 108px;
  left: -29px;
  z-index: 10;
}
#top .concept__content ul .item:nth-child(2):before {
  background: url(../images/lp/point02.png) no-repeat;
  background-size: contain;
}
#top .concept__content ul .item:last-child {
  margin-bottom: 0;
}
#top .concept__content ul .item:last-child:before {
  background: url(../images/lp/point03.png) no-repeat;
  background-size: contain;
}
#top .card__wrapper .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 332px;
  height: 90px;
  margin: 0 auto;
  background-image: linear-gradient(105deg, #fcffce, #fffbea 48%, #fde6c5);
  position: relative;
  z-index: 10;
}
#top .card__wrapper .inner span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24.5px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.02em;
  text-align: center;
  color: #1c1c1c;
}
#top .card__wrapper .inner span.small {
  font-size: 13px;
}
#top .card__wrapper .content {
  width: 95%;
  max-width: 377px;
  margin: 0 auto;
  padding: 60px 0 35px;
  background-image: linear-gradient(140deg, #fa8087, #ff9960 100%);
  position: relative;
  top: -43px;
}
#top .card__wrapper .content__wrapper {
  width: 320px;
  margin: 0 auto;
}
#top .card__wrapper .content__wrapper .address {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 20px;
}
#top .card__wrapper .content__wrapper h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 17.5px;
  letter-spacing: 0.03em;
  color: #fff853;
  padding-left: 14px;
  position: relative;
  margin-bottom: 5px;
}
#top .card__wrapper .content__wrapper h3:before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 17.5px;
  background-color: #fff853;
  border-radius: 2.5px;
  position: absolute;
  top: 1px;
  left: 0;
}
#top .card__wrapper .content__wrapper ul {
  margin-bottom: 20px;
}
#top .card__wrapper .content__wrapper ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
#top .card__wrapper .content__wrapper .map {
  width: 310px;
  height: 215px;
  margin: 0 auto;
}
#top .card__wrapper .content__wrapper .map iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#top .charm__wrapper .inner h2 {
  width: 375px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 11px;
}
#top .charm__wrapper .inner h2 span:first-child, #top .charm__wrapper .inner h2 span:nth-child(3) {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #222;
}
#top .charm__wrapper .inner h2 span:nth-child(2) {
  -webkit-text-stroke: 1px #fb4848;
  font-family: "Playwrite CA", cursive;
  font-size: 45px;
  font-weight: normal;
  letter-spacing: 0.07em;
  color: #fa6f77;
  padding: 0 10px 0 4.5px;
  position: relative;
}
#top .charm__wrapper .inner h2 span:nth-child(2):before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/lp/3line.png) no-repeat;
  background-size: contain;
  width: 13px;
  height: 16px;
  position: absolute;
  top: 6px;
  left: -3px;
}
#top .charm__wrapper .inner h2 span:last-child {
  text-shadow: 0 0 6px #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #222;
  padding-left: 4.5px;
}
#top .charm__wrapper .inner h2:before, #top .charm__wrapper .inner h2:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/lp/diamond.png) no-repeat;
  width: 81px;
  height: 12px;
  background-size: contain;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
#top .charm__wrapper .inner h2:before {
  left: -10px;
}
#top .charm__wrapper .inner h2:after {
  right: -5px;
}
#top .charm__wrapper .inner .desc p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #1c1c1c;
}
#top .charm__wrapper .inner .content {
  padding: 55px 0 45px;
  background-image: linear-gradient(146deg, #fcffce, #fdf8e2 48%, #fde6c5);
  position: relative;
}
#top .charm__wrapper .inner .content:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 77px;
  background-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  left: 0;
}
#top .charm__wrapper .inner .content__list .item {
  width: 350px;
  margin: 0 auto 45px;
  border-radius: 0 10px 10px 0;
  box-shadow: 2px 3px 3px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 0px 0 20px 33px;
  position: relative;
}
#top .charm__wrapper .inner .content__list .item__title {
  display: inline-block;
  height: 39px;
  padding: 7px 25px 10px 20px;
  border-radius: 25px 50px 50px 0;
  background-color: #fa8087;
  position: relative;
  top: -20px;
  left: -33px;
}
#top .charm__wrapper .inner .content__list .item__title .num {
  -webkit-text-stroke: 1px #fff;
  font-family: "Playwrite CA", cursive;
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.12em;
  color: #fff;
}
#top .charm__wrapper .inner .content__list .item__title .text {
  -webkit-text-stroke: 1px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #fff;
}
#top .charm__wrapper .inner .content__list .item__list li {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.42;
  letter-spacing: 0.03em;
  color: #1c1c1c;
  margin-bottom: 5px;
  position: relative;
}
#top .charm__wrapper .inner .content__list .item__list li:last-child {
  margin-bottom: 0;
}
#top .charm__wrapper .inner .content__list .item__list li:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/lp/check.png) no-repeat;
  background-size: contain;
  width: 13px;
  height: 10px;
  top: 5px;
  left: -20px;
}
#top .charm__wrapper .inner .content__list .item:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/lp/point1_pc.png) no-repeat;
  background-size: contain;
  width: 120px;
  height: 110px;
  position: absolute;
  top: -20px;
  right: 10px;
}
#top .charm__wrapper .inner .content__list .item:nth-child(2):before {
  background: url(../images/lp/point2_pc.png) no-repeat;
  background-size: contain;
}
#top .charm__wrapper .inner .content__list .item:last-child {
  margin-bottom: 0;
}
#top .charm__wrapper .inner .content__list .item:last-child:before {
  background: url(../images/lp/point3_pc.png) no-repeat;
  background-size: contain;
}
#top .work {
  padding: 85px 0 20px;
  overflow: hidden;
  position: relative;
}
#top .work__wrapper {
  width: 350px;
  margin: 0 auto;
  position: relative;
}
#top .work__wrapper .inner {
  position: relative;
}
#top .work__wrapper .inner h2 {
  margin-bottom: 30px;
  position: relative;
  width: 350px;
  margin: 0 auto 30px;
  padding-left: 42px;
  text-align: left;
}
#top .work__wrapper .inner h2 span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
  position: relative;
}
#top .work__wrapper .inner h2 span:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
}
#top .work__wrapper .inner h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 211px;
  height: 53px;
  background: url(../images/lp/work.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -37px;
  left: 0px;
}
#top .work__wrapper .inner .copy {
  text-align: center;
  margin-bottom: 20px;
}
#top .work__wrapper .inner .copy .bb {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fa6f77;
  position: relative;
}
#top .work__wrapper .inner .copy .bb:before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fa6f77, #fa6f77 2px, transparent 3px, transparent 2px) repeat-x bottom left/7px 1px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
#top .work__wrapper .inner .copy .bb:first-child {
  margin-bottom: 5px;
}
#top .work__wrapper .inner .desc {
  width: 305px;
  margin: 0 auto;
  margin-bottom: 30px;
}
#top .work__wrapper .inner .desc p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .work__content h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 305px;
  height: 33px;
  margin: 0 auto 25px;
  border-radius: 2.5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.07;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
  position: relative;
}
#top .work__content h3.care {
  background-image: linear-gradient(96deg, #f496f7, #fdb36a 100%, #fcffce);
}
#top .work__content h3.nurse {
  background-image: linear-gradient(96deg, #8ae5e5 2%, #cde685 100%);
}
#top .work__content h3:before, #top .work__content h3:after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
#top .work__content h3:before {
  left: 15px;
}
#top .work__content h3:after {
  right: 15px;
}
#top .work__content ul .item {
  display: block;
  width: 250px;
  margin: 0 auto 25px;
}
#top .work__content ul .item__img {
  width: 250px;
  height: 155px;
  margin-bottom: 15px;
}
#top .work__content ul .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .work__content ul .item__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  color: #1c1c1c;
  margin-bottom: 21px;
  position: relative;
}
#top .work__content ul .item__title:before, #top .work__content ul .item__title:after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  bottom: -13px;
}
#top .work__content ul .item__title:before {
  background-color: #f496f7;
  left: calc(50% - 6px);
  transform: translateX(-50%);
}
#top .work__content ul .item__title:after {
  background-color: #fdb36a;
  right: calc(50% - 6px);
  transform: translateX(-50%);
}
#top .work__content ul .item__title.care:before {
  background-color: #f496f7;
}
#top .work__content ul .item__title.care:after {
  background-color: #fdb36a;
}
#top .work__content ul .item__title.nurse:before {
  background-color: #8ae5e5;
}
#top .work__content ul .item__title.nurse:after {
  background-color: #cde685;
}
#top .work__content ul .item__text {
  width: 250px;
}
#top .work__content ul .item__text p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .work::before {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  width: 100%;
  height: 470px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 760px) {
  #top .work::before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    width: 100%;
    max-width: 1260px;
    height: 762px;
    top: 0px;
    left: 0;
    z-index: -5;
  }
}
#top .voice__wrapper {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ffe6de calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #ffe6de calc(100% - 1px));
  background-size: 25px 25px;
  background-repeat: repeat;
  background-position: center center;
  padding: 60px 0 75px;
}
#top .voice__wrapper .inner h2 {
  text-align: center;
  position: relative;
  z-index: 10;
  top: 8px;
}
#top .voice__wrapper .inner h2 .en {
  display: block;
  font-family: "Playwrite CA", cursive;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: #f1fa63;
  margin-bottom: 3px;
}
#top .voice__wrapper .inner h2 .ja {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 21px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
}
#top .voice__wrapper .inner .content {
  width: 375px;
  margin: 6px auto 0;
  background-image: linear-gradient(to bottom, #fb8381, #ff9960);
  position: relative;
  padding-bottom: 30px;
}
#top .voice__wrapper .inner .content .from {
  text-align: center;
  margin: 4px 0 15px;
  padding-top: 6px;
}
#top .voice__wrapper .inner .content .from span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07m;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 10;
}
#top .voice__wrapper .inner .content .from span:before, #top .voice__wrapper .inner .content .from span:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#top .voice__wrapper .inner .content .from span:before {
  left: -30px;
}
#top .voice__wrapper .inner .content .from span:after {
  right: -30px;
}
#top .voice__wrapper .inner .content .person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 260px;
  position: relative;
  z-index: 10;
  margin: 0 0 20px 38px;
}
#top .voice__wrapper .inner .content .person .img {
  width: 120px;
  height: 120px;
}
#top .voice__wrapper .inner .content .person .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
#top .voice__wrapper .inner .content .person .text .position {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03;
  color: #fff;
  margin-bottom: 5px;
}
#top .voice__wrapper .inner .content .person .text .name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.06;
  letter-spacing: 0.08em;
  color: #fff;
}
#top .voice__wrapper .inner .content .message {
  width: 325px;
  margin: 0 auto;
  padding: 20px;
  background-image: linear-gradient(124deg, #fcffce, #fdf8e2 48%, #fde6c5);
}
#top .voice__wrapper .inner .content .message p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .voice__wrapper .inner .content:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/lp/circle.png) no-repeat;
  background-size: contain;
  width: 235px;
  height: 168px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
#top .voice__wrapper .inner .chara {
  padding-top: 113px;
  position: relative;
}
#top .voice__wrapper .inner .chara .copy {
  text-align: center;
  position: relative;
  line-height: 29px;
  margin-bottom: 42px;
}
#top .voice__wrapper .inner .chara .copy span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fb4848;
  position: relative;
}
#top .voice__wrapper .inner .chara .copy span:before, #top .voice__wrapper .inner .chara .copy span:after {
  content: "";
  display: block;
  position: absolute;
  width: 19px;
  height: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#top .voice__wrapper .inner .chara .copy span:before {
  background: url(../images/lp/slash_left.png) no-repeat;
  background-size: cover;
  left: -28px;
}
#top .voice__wrapper .inner .chara .copy span:after {
  background: url(../images/lp/slash_right.png) no-repeat;
  background-size: cover;
  right: -28px;
}
#top .voice__wrapper .inner .chara .copy:before {
  content: "";
  display: block;
  position: absolute;
  width: 275px;
  height: 7.5px;
  background: url(../images/lp/slash_bottom.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}
#top .voice__wrapper .inner .chara .profile {
  width: 190px;
  margin: 0 auto;
  position: relative;
}
#top .voice__wrapper .inner .chara .profile .name {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fb4848;
  position: relative;
  margin-bottom: 5px;
}
#top .voice__wrapper .inner .chara .profile .name .small {
  font-size: 11px;
}
#top .voice__wrapper .inner .chara .profile .name:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../images/lp/arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
#top .voice__wrapper .inner .chara .profile .text {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .voice__wrapper .inner .chara .profile:before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
}
#top .voice__wrapper .inner .chara .profile.kanta {
  margin-bottom: 15px;
}
#top .voice__wrapper .inner .chara .profile.kanta .name {
  padding-left: 20px;
}
#top .voice__wrapper .inner .chara .profile.kanta:before {
  width: 62px;
  height: 201px;
  background: url(../images/lp/top17.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: -75px;
}
#top .voice__wrapper .inner .chara .profile.yagi .name {
  text-align: right;
  padding-right: 20px;
}
#top .voice__wrapper .inner .chara .profile.yagi .name:before {
  background: url(../images/lp/arrow02.png) no-repeat;
  background-size: contain;
  left: inherit;
  right: 0px;
}
#top .voice__wrapper .inner .chara .profile.yagi .text {
  text-align: right;
}
#top .voice__wrapper .inner .chara .profile.yagi:before {
  width: 90px;
  height: 120px;
  background: url(../images/lp/top18.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -58px;
  right: -100px;
}
#top .voice__wrapper .inner .chara:before, #top .voice__wrapper .inner .chara:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
}
#top .voice__wrapper .inner .chara:before {
  width: 95px;
  height: 88px;
  background: url(../images/lp/bubble01.png) no-repeat;
  background-size: contain;
  top: 30px;
  right: calc(50% + 20px);
}
#top .voice__wrapper .inner .chara:after {
  width: 106px;
  height: 75px;
  background: url(../images/lp/bubble02.png) no-repeat;
  background-size: contain;
  top: 50px;
  left: calc(50% - 3px);
}
#top .sns {
  padding: 40px 0;
  background-image: linear-gradient(151deg, #fa8087 1%, #ff9960);
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
}
#top .sns__wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#top .sns__wrapper h2 {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-top: 5px;
}
#top .sns__wrapper h2 .yellow {
  font-size: 25px;
  font-weight: bold;
  color: #fff853;
}
#top .sns__wrapper h2:before, #top .sns__wrapper h2:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/lp/dott_sq.png) no-repeat;
  background-size: contain;
  width: 35px;
  height: 45px;
  top: 10px;
}
#top .sns__wrapper h2:before {
  left: 0;
}
#top .sns__wrapper h2:after {
  right: 0;
}
#top .sns__wrapper .TikTok {
  width: 100%;
  position: relative;
  overflow: visible;
}
#top .sns__wrapper .TikTok__list {
  display: flex;
  height: 438px;
}
#top .sns__wrapper .TikTok__item {
  transform-origin: center center;
  transition: opacity 0.3s ease;
}
#top .sns__wrapper .TikTok .swiper-slide {
  width: 247px !important;
  height: 438px !important;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
#top .sns__wrapper .TikTok .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#top .sns__wrapper .TikTok .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
#top .sns__wrapper .TikTok .swiper-slide-active {
  opacity: 1 !important;
}
#top .sns__wrapper .TikTok .swiper-slide-active img, #top .sns__wrapper .TikTok .swiper-slide-active video {
  transform: scale(1);
}
#top .sns__wrapper .TikTok .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.6;
}
#top .sns__wrapper .TikTok .swiper-slide:not(.swiper-slide-active) img, #top .sns__wrapper .TikTok .swiper-slide:not(.swiper-slide-active) video {
  transform: scale(0.65);
}
#top .sns__wrapper .TikTok .swiper-button-prev,
#top .sns__wrapper .TikTok .swiper-button-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
#top .sns__wrapper .TikTok .swiper-button-prev:hover,
#top .sns__wrapper .TikTok .swiper-button-next:hover {
  color: white;
}
#top .sns__wrapper .TikTok .swiper-button-prev.swiper-button-disabled,
#top .sns__wrapper .TikTok .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
#top .sns__wrapper .TikTok .swiper-button-prev::after,
#top .sns__wrapper .TikTok .swiper-button-next::after {
  display: none;
}
#top .sns__wrapper .TikTok .swiper-button-prev {
  left: calc(50% - 145px);
  transform: translateX(-50%);
  background: url(../images/lp/slide_arrow_left.png) no-repeat;
  background-size: contain;
}
#top .sns__wrapper .TikTok .swiper-button-next {
  right: calc(50% - 185px);
  transform: translateX(-50%);
  background: url(../images/lp/slide_arrow_right.png) no-repeat;
  background-size: contain;
}
#top .sns__wrapper .swiper-pagination {
  display: flex;
  width: 30px;
  height: auto;
  margin: 20px auto 0;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
#top .sns__wrapper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  margin: 0 2.5px;
  opacity: 1;
  transition: background-color 0.3s ease;
  border-radius: 0px !important;
}
#top .sns__wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1c1c1c;
}
#top .sns__wrapper .sns_btn {
  width: 350px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
}
#top .sns__wrapper .sns_btn img {
  width: 172px;
  height: 70px;
  object-fit: cover;
}
#top .jobs__wrapper {
  background-color: #edf5f5;
  padding: 88px 0 65px;
  position: relative;
}
#top .jobs__wrapper .inner h2 {
  text-align: center;
  margin-bottom: 30px;
}
#top .jobs__wrapper .inner h2 span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #222;
  position: relative;
}
#top .jobs__wrapper .inner h2 span:before, #top .jobs__wrapper .inner h2 span:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#top .jobs__wrapper .inner h2 span:before {
  left: -34px;
}
#top .jobs__wrapper .inner h2 span:after {
  right: -34px;
}
#top .jobs__wrapper .inner .desc p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
  text-align: center;
  margin-bottom: 30px;
}
#top .jobs__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  width: 328.15px;
  height: 53.55px;
  background: url(../images/lp/jobs.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
}
#top .jobs__list {
  width: 350px;
  margin: 0 auto;
}
#top .jobs__item {
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 25px 22.5px 0;
  border-radius: 10px;
  position: relative;
  transition: height 0.3s ease;
  margin-bottom: 46px;
}
#top .jobs__item.collapsed {
  height: 323px !important;
}
#top .jobs__item.collapsed .job-details {
  overflow: hidden;
  height: 250px;
}
#top .jobs__item.collapsed .btn {
  bottom: 6px;
  letter-spacing: 0.1em;
}
#top .jobs__item.collapsed .btn:before {
  display: block;
}
#top .jobs__item h3 {
  text-align: center;
  margin-bottom: 10px;
}
#top .jobs__item h3 span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 0.1em;
  color: #222;
  position: relative;
}
#top .jobs__item h3 span:before, #top .jobs__item h3 span:after {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 11px;
  background-image: linear-gradient(to bottom, #f7a5fa, #fdb36a);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  rotate: 45deg;
}
#top .jobs__item h3 span:before {
  left: -28px;
}
#top .jobs__item h3 span:after {
  right: -20px;
}
#top .jobs__item .job-details {
  display: grid;
  grid-template-columns: 30% 70%;
}
#top .jobs__item .job-details .detail-label {
  padding: 15px 0;
  border-bottom: solid 1px #E3E3E3;
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .jobs__item .job-details .detail-content {
  padding: 15px 0;
  border-bottom: solid 1px #E3E3E3;
}
#top .jobs__item .job-details .detail-content p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: nomal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .jobs__item .btn {
  width: 195px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #fa6f77;
  color: #fff;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  position: relative;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: bold;
}
#top .jobs__item .btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 20px;
  background: url(../images/lp/more.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: none;
}
#top .jobs__item .btn:hover:before {
  background: url(../images/lp/more_red.png) no-repeat;
  background-size: cover;
}
#top .jobs__item:last-child {
  margin-bottom: 0;
}
#top .qa {
  padding: 0 0 72px;
}
#top .qa__wrapper {
  padding: 84px 0 0;
  position: relative;
}
#top .qa__wrapper .inner h2 {
  margin-bottom: 30px;
  position: relative;
  width: 344px;
  margin: 0 auto 30px;
  padding-left: 85px;
}
#top .qa__wrapper .inner h2 span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
  position: relative;
}
#top .qa__wrapper .inner h2 span:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
}
#top .qa__wrapper .inner h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 79px;
  height: 53px;
  background: url(../images/lp/faq.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -37px;
  left: 40px;
}
#top .qa__list {
  width: 344px;
  margin: 0 auto;
}
#top .qa__list dt {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Playwrite CA", cursive;
  font-size: 15px;
  text-align: left;
  color: #fff;
}
#top .qa__list dt .q {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 37.5px;
  height: 37.5px;
  border-radius: 5px;
  background-image: linear-gradient(139deg, #F496F7, #FDB36A);
}
#top .qa__list dt p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 0.03em;
  color: #fa6f77;
  margin-left: 18px;
}
#top .qa__list dd {
  margin-bottom: 25px;
}
#top .qa__list dd p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13.5px;
  font-weight: normal;
  line-height: 1.41;
  letter-spacing: 0.03em;
  color: #1c1c1c;
  padding-left: 18px;
}
#top .qa__list dd:last-child {
  margin-bottom: 0;
}
#top .company {
  padding: 84px 0 45px;
}
#top .company__wrapper {
  padding: 0;
  position: relative;
}
#top .company__wrapper .inner h2 {
  margin-bottom: 30px;
  position: relative;
  width: 344px;
  margin: 0 auto 30px;
  padding-left: 85px;
}
#top .company__wrapper .inner h2 span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
  position: relative;
}
#top .company__wrapper .inner h2 span:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
}
#top .company__wrapper .inner h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 193px;
  height: 53px;
  background: url(../images/lp/company.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -37px;
  left: 40px;
}
#top .company__list {
  width: 317px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 34% 66%;
}
#top .company__list dt {
  margin-bottom: 10px;
}
#top .company__list dt p {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  color: #1c1c1c;
  padding-left: 17px;
  position: relative;
}
#top .company__list dt p:before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 15px;
  border-radius: 1.5px;
  background-color: #fa6f77;
  position: absolute;
  top: 2px;
  left: 0;
}
#top .company__list dd {
  margin-bottom: 20px;
}
#top .company__list dd p, #top .company__list dd a {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
}
#top .company__list dd ul li {
  margin-bottom: 20px;
}
#top .company__list dd ul li .name {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
  margin-bottom: 10px;
}
#top .company__list dd ul li .img {
  width: 190px;
  height: 126px;
  margin-bottom: 10px;
}
#top .company__list dd ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .company__list dd ul li .address {
  text-shadow: 0 0 6px #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #1c1c1c;
  margin-bottom: 10px;
}
#top .company__list dd ul li .map {
  width: 190px;
  height: 126px;
  margin-bottom: 10px;
}
#top .company__list dd ul li .map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .company__list dd ul li:last-child {
  margin-bottom: 0;
}
#top .company__list dd:last-child {
  margin-bottom: 0;
}
#top .accept_btn p a img {
  margin-bottom: 2px;
}

/*PC*/
@media only screen and (min-width: 1025px) {
  #top *,
  #top ::before,
  #top ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
  }
  #top p {
    margin: 0;
  }
  #top h1,
  #top h2,
  #top h3,
  #top h4,
  #top h5,
  #top h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
  }
  #top li {
    list-style: none;
  }
  #top .sp {
    display: none;
  }
  #top a {
    background-color: transparent;
    color: inherit;
  }
  #top .fadein {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  #top .fadein.is-active {
    opacity: 1;
  }
  #top .sp {
    display: none !important;
  }
  #top .mv {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  #top .mv__wrapper .mv__img {
    max-width: 900px;
  }
  #top .mv__wrapper .mv__img .btn {
    width: 500px;
    top: 62px;
    left: -80px;
  }
  #top .mv__wrapper .mv__img .btn ul li {
    height: 32px;
    padding: 0 16px 0 12px;
    border-radius: 5px;
    margin: 0 10px 10px 0;
  }
  #top .mv__wrapper .mv__img .btn ul li span {
    font-size: 17px;
  }
  #top .mv__wrapper .mv__img .mv-copy {
    width: 570px;
    padding-left: 10px;
    bottom: 120px;
    left: -93px;
  }
  #top .mv__wrapper .mv__img .mv-copy__text .inn {
    height: 66px;
    font-size: 40px;
    line-height: 1.4;
    padding: 0 20px;
  }
  #top .mv__wrapper .mv__img .mv-copy__text .inn:after {
    height: 61px;
  }
  #top .mv__wrapper .mv__img .mv-copy .cta__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 217px;
    height: 43px;
    border-radius: 2.5px;
    background-color: #278f49;
    border: solid 1px transparent;
    padding-left: 18px;
    position: relative;
    transition: all 0.4s ease;
  }
  #top .mv__wrapper .mv__img .mv-copy .cta__btn:before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    background: url(../images/lp/mail_white.png) no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    transition: all 0.4s ease;
  }
  #top .mv__wrapper .mv__img .mv-copy .cta__text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 1.3px;
    text-align: left;
    color: #fff;
    transition: all 0.4s ease;
    margin: 0 0 1px 2px;
  }
  #top .mv__bottom .cta {
    margin-top: -138px;
  }
  #top .mv__bottom .cta__btn {
    width: 389.9px;
    height: 83px;
    position: relative;
    border: solid 1px transparent;
  }
  #top .mv__bottom .cta__btn .cta__text {
    font-size: 26px;
    line-height: 1.31;
    color: #fff;
    z-index: 1000;
    letter-spacing: 0.1em;
  }
  #top .mv__bottom .cta__btn:before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 17px;
    background: url(../images/lp/arrow_white.png) no-repeat;
    background-size: contain;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 2;
    transition: background 0.4s ease;
  }
  #top .mv__bottom .cta__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(99deg, #fff 6%, #fff 95%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }
  #top .mv__bottom .cta__btn:hover {
    border: solid 1px #FB4848;
  }
  #top .mv__bottom .cta__btn:hover .cta__text {
    color: #FB4848;
  }
  #top .mv__bottom .cta__btn:hover:before {
    background: url(../images/lp/entry_after.png) no-repeat;
    background-size: contain;
  }
  #top .mv__bottom .cta__btn:hover::after {
    opacity: 1;
  }
  #top .mv__bottom .nav {
    width: 652px;
    margin: 70px auto 0;
    position: relative;
    z-index: 20;
  }
  #top .mv__bottom .nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #top .mv__bottom .nav ul li {
    padding-left: 45px;
  }
  #top .mv__bottom .nav ul li a {
    display: inline-block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.9px;
    text-align: left;
    color: #1c1c1c;
    position: relative;
    margin: 0 40px 15px 0;
    border-bottom: solid 1px transparent;
    transition: all 0.2s ease;
  }
  #top .mv__bottom .nav ul li a:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/lp/anker_pc.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
  }
  #top .mv__bottom .nav ul li:hover {
    cursor: pointer;
  }
  #top .mv__bottom .nav ul li:hover a {
    border-bottom: solid 1px #FA6F77;
    color: #FA6F77;
  }
  #top .mv__bottom:before {
    height: 562px;
    top: inherit;
    bottom: 0;
  }
  #top .mv__bottom:after {
    height: 250px;
  }
  #top .concept {
    max-width: 900px;
    padding: 200px 0 70px;
  }
  #top .concept__wrapper {
    width: 100%;
    max-width: 900px;
  }
  #top .concept__wrapper .inner h2 {
    margin-bottom: 73px;
    padding-right: 175px;
  }
  #top .concept__wrapper .inner h2 span {
    font-size: 22px;
  }
  #top .concept__wrapper .inner h2 span:before {
    width: 40px;
    left: -55px;
  }
  #top .concept__wrapper .inner h2:before {
    width: 314px;
    height: 106px;
    top: -75px;
    right: 130px;
  }
  #top .concept__wrapper .inner h3 {
    text-align: center;
    background-color: #fff;
    position: relative;
    margin: 0 0 34px;
    padding-top: 0;
    position: relative;
  }
  #top .concept__wrapper .inner h3 .bb {
    font-size: 28px;
    line-height: 44px;
  }
  #top .concept__wrapper .inner h3 .bb:before {
    background: linear-gradient(to right, #fa6f77, #fa6f77 2px, transparent 3px, transparent 2px) repeat-x bottom left/7px 1px;
    bottom: -2px;
  }
  #top .concept__wrapper .inner h3 .bb:first-child {
    margin-bottom: 5px;
  }
  #top .concept__wrapper .inner h3:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 52px;
    background-color: #fff;
    top: -50px;
    left: 50px;
  }
  #top .concept__wrapper .inner .desc {
    margin-bottom: 40px;
  }
  #top .concept__wrapper .inner .desc p {
    font-size: 17px;
    font-weight: normal;
    line-height: 1.59;
  }
  #top .concept__wrapper .inner .desc:before {
    width: 154px;
    height: 154px;
    top: 23px;
    left: 0;
  }
  #top .concept__wrapper .inner .desc:after {
    width: 202px;
    height: 202.3px;
    top: 75px;
    right: 0;
  }
  #top .concept__wrapper:before {
    width: 390px;
    height: 254.3px;
    top: -130px;
    left: 0px;
  }
  #top .concept__content ul .item {
    width: 465px;
    margin: 0 auto 40px;
  }
  #top .concept__content ul .item__img {
    width: 450px;
    height: 278.5px;
    margin-bottom: 67.5px;
  }
  #top .concept__content ul .item__title {
    top: 258px;
    left: 0;
    height: 63.5px;
  }
  #top .concept__content ul .item__title .bg {
    height: 37px;
    line-height: 36px;
    padding: 0 15px;
    border-radius: 2px 5px 5px 2px;
    font-size: 20px;
  }
  #top .concept__content ul .item__title .bg:first-child {
    margin-bottom: 5px;
  }
  #top .concept__content ul .item__text {
    width: 420px;
  }
  #top .concept__content ul .item__text p {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .concept__content ul .item:before {
    width: 125px;
    height: 65px;
    top: 196px;
    left: -43px;
  }
  #top .card__wrapper .inner h2 {
    width: 542px;
    height: 137px;
  }
  #top .card__wrapper .inner span {
    font-size: 32px;
    line-height: 1.5;
  }
  #top .card__wrapper .inner span.small {
    font-size: 18px;
    margin-top: 7px;
  }
  #top .card__wrapper .content {
    width: 95%;
    max-width: 800px;
    padding: 99px 0 50px;
    top: -65px;
  }
  #top .card__wrapper .content__wrapper {
    width: 620px;
  }
  #top .card__wrapper .content__wrapper .address {
    font-size: 17px;
    line-height: 1.59;
    margin-bottom: 30px;
  }
  #top .card__wrapper .content__wrapper h3 {
    font-size: 20px;
    line-height: 30px;
    padding-left: 28px;
    margin-bottom: 10px;
  }
  #top .card__wrapper .content__wrapper h3:before {
    width: 8px;
    height: 30px;
    border-radius: 4px;
  }
  #top .card__wrapper .content__wrapper ul {
    margin-bottom: 30px;
  }
  #top .card__wrapper .content__wrapper ul li {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .card__wrapper .content__wrapper .map {
    width: 620px;
    height: 340px;
  }
  #top .charm__wrapper .inner h2 {
    width: 677px;
    margin: 25px auto 11px;
  }
  #top .charm__wrapper .inner h2 span:first-child, #top .charm__wrapper .inner h2 span:nth-child(3) {
    font-size: 28px;
  }
  #top .charm__wrapper .inner h2 span:nth-child(2) {
    font-family: "Playwrite CA", cursive;
    font-size: 60px;
    padding: 0 10px 0 4.5px;
  }
  #top .charm__wrapper .inner h2 span:nth-child(2):before {
    width: 19.4px;
    height: 22.9px;
    top: 6px;
    left: -6px;
  }
  #top .charm__wrapper .inner h2 span:last-child {
    font-size: 60px;
    padding-left: 4.5px;
  }
  #top .charm__wrapper .inner h2:before, #top .charm__wrapper .inner h2:after {
    width: 160px;
    height: 24px;
  }
  #top .charm__wrapper .inner h2:before {
    left: -10px;
  }
  #top .charm__wrapper .inner h2:after {
    right: -5px;
  }
  #top .charm__wrapper .inner .desc p {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .charm__wrapper .inner .content {
    padding: 67px 0 45px;
  }
  #top .charm__wrapper .inner .content:before {
    height: 154px;
  }
  #top .charm__wrapper .inner .content__list .item {
    width: 600px;
    margin: 0 auto 60px;
    border-radius: 0 40px 40px 0;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.16);
    padding: 0px 0 30px 90px;
  }
  #top .charm__wrapper .inner .content__list .item__title {
    height: 52px;
    padding: 0 50px 0 40px;
    border-radius: 50px 100px 100px 0;
    top: -26px;
    left: -90px;
  }
  #top .charm__wrapper .inner .content__list .item__title .num {
    font-size: 20px;
    line-height: 52px;
  }
  #top .charm__wrapper .inner .content__list .item__title .text {
    font-size: 22px;
    line-height: 52px;
  }
  #top .charm__wrapper .inner .content__list .item__list li {
    font-size: 17px;
    line-height: 1.53;
    margin-bottom: 8px;
  }
  #top .charm__wrapper .inner .content__list .item__list li:before {
    width: 19.2px;
    height: 13.9px;
    top: 8px;
    left: -31.4px;
  }
  #top .charm__wrapper .inner .content__list .item:before {
    width: 206px;
    height: 189px;
    top: -25px;
    right: 25px;
  }
  #top .charm__wrapper .inner .content__list .item:last-child {
    margin-bottom: 0;
  }
  #top .work {
    padding: 136px 0 30px;
  }
  #top .work__wrapper {
    width: 900px;
  }
  #top .work__wrapper .inner h2 {
    width: 900px;
    margin: 0 auto 40px;
    padding-left: 218px;
  }
  #top .work__wrapper .inner h2 span {
    font-size: 22px;
  }
  #top .work__wrapper .inner h2 span:before {
    width: 40px;
    left: -53px;
  }
  #top .work__wrapper .inner h2:before {
    width: 361px;
    height: 64px;
    top: -62px;
    left: 131px;
  }
  #top .work__wrapper .inner .copy {
    text-align: center;
    margin-bottom: 34px;
  }
  #top .work__wrapper .inner .copy .bb {
    font-size: 28px;
    line-height: 40px;
  }
  #top .work__wrapper .inner .copy .bb:before {
    background: linear-gradient(to right, #fa6f77, #fa6f77 2px, transparent 3px, transparent 2px) repeat-x bottom left/7px 1px;
    bottom: -2px;
  }
  #top .work__wrapper .inner .copy .bb:first-child {
    margin-bottom: 0px;
  }
  #top .work__wrapper .inner .desc {
    width: 583px;
    margin-bottom: 40px;
    padding-left: 40px;
  }
  #top .work__wrapper .inner .desc p {
    font-size: 17px;
    line-height: 1.59;
    text-align: center;
  }
  #top .work__content h3 {
    width: 900px;
    height: 66px;
    margin: 0 auto 40px;
    border-radius: 5px;
    font-size: 24px;
    line-height: 1.33;
  }
  #top .work__content h3:before, #top .work__content h3:after {
    width: 12px;
    height: 12px;
  }
  #top .work__content h3:before {
    left: 50px;
  }
  #top .work__content h3:after {
    right: 50px;
  }
  #top .work__content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top .work__content ul .item {
    display: block;
    width: 386px;
    margin: 0 auto 40px;
  }
  #top .work__content ul .item__img {
    width: 386px;
    height: 239px;
    margin-bottom: 20px;
  }
  #top .work__content ul .item__title {
    font-size: 20px;
    line-height: 2.1;
    margin-bottom: 28px;
  }
  #top .work__content ul .item__title:before, #top .work__content ul .item__title:after {
    width: 8px;
    height: 8px;
    bottom: -15px;
  }
  #top .work__content ul .item__title:before {
    left: calc(50% - 8px);
  }
  #top .work__content ul .item__title:after {
    right: calc(50% - 8px);
  }
  #top .work__content ul .item__text {
    width: 386px;
  }
  #top .work__content ul .item__text p {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .work::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/lp/top_3pc.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 470px;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 760px) {
  #top .work::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/lp/top_3smp.png) no-repeat;
    background-size: contain;
    width: 100%;
    max-width: 1260px;
    height: 762px;
    top: 0px;
    left: 0;
    z-index: -5;
  }
}
@media only screen and (min-width: 1025px) {
  #top .voice__wrapper {
    background-size: 50px 50px;
    padding: 60px 0 123px;
  }
  #top .voice__wrapper .inner h2 .en {
    font-size: 20px;
    margin-bottom: 9px;
  }
  #top .voice__wrapper .inner h2 .ja {
    font-size: 36px;
    line-height: 52px;
  }
  #top .voice__wrapper .inner .content {
    width: 700px;
    padding-bottom: 60px;
  }
  #top .voice__wrapper .inner .content .from {
    margin: 4px 0 15px;
  }
  #top .voice__wrapper .inner .content .from span {
    font-size: 22px;
  }
  #top .voice__wrapper .inner .content .from span:before, #top .voice__wrapper .inner .content .from span:after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
  }
  #top .voice__wrapper .inner .content .from span:before {
    left: -60px;
  }
  #top .voice__wrapper .inner .content .from span:after {
    right: -60px;
  }
  #top .voice__wrapper .inner .content .person {
    width: 440px;
    margin: 0 0 20px 124px;
  }
  #top .voice__wrapper .inner .content .person .img {
    width: 200px;
    height: 200px;
  }
  #top .voice__wrapper .inner .content .person .text .position {
    font-size: 18px;
    line-height: 2;
  }
  #top .voice__wrapper .inner .content .person .text .name {
    font-size: 26px;
    line-height: 1.38;
  }
  #top .voice__wrapper .inner .content .message {
    width: 588px;
    padding: 40px;
  }
  #top .voice__wrapper .inner .content .message p {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .voice__wrapper .inner .content:before {
    width: 469px;
    height: 337px;
    top: -140px;
    z-index: 5;
  }
  #top .voice__wrapper .inner .chara {
    padding-top: 208px;
  }
  #top .voice__wrapper .inner .chara .copy {
    line-height: 29px;
    margin-bottom: 71px;
  }
  #top .voice__wrapper .inner .chara .copy span {
    font-size: 36px;
  }
  #top .voice__wrapper .inner .chara .copy span:before, #top .voice__wrapper .inner .chara .copy span:after {
    content: "";
    display: block;
    position: absolute;
    width: 38px;
    height: 44.5px;
    top: 64%;
  }
  #top .voice__wrapper .inner .chara .copy span:before {
    left: -64px;
  }
  #top .voice__wrapper .inner .chara .copy span:after {
    right: -58px;
  }
  #top .voice__wrapper .inner .chara .copy:before {
    width: 484px;
    height: 15px;
    bottom: -18px;
  }
  #top .voice__wrapper .inner .chara .profile {
    width: 390px;
  }
  #top .voice__wrapper .inner .chara .profile .name {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  #top .voice__wrapper .inner .chara .profile .name .small {
    font-size: 18px;
  }
  #top .voice__wrapper .inner .chara .profile .name:before {
    width: 30px;
    height: 30px;
  }
  #top .voice__wrapper .inner .chara .profile .text {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .voice__wrapper .inner .chara .profile.kanta {
    margin-bottom: 40px;
  }
  #top .voice__wrapper .inner .chara .profile.kanta .name {
    padding-left: 40px;
  }
  #top .voice__wrapper .inner .chara .profile.kanta:before {
    width: 100px;
    height: 340px;
    top: -45px;
    left: -130px;
  }
  #top .voice__wrapper .inner .chara .profile.yagi .name {
    padding-right: 40px;
  }
  #top .voice__wrapper .inner .chara .profile.yagi .name:before {
    background: url(../images/lp/arrow02.png) no-repeat;
    background-size: contain;
    left: inherit;
    right: 0px;
  }
  #top .voice__wrapper .inner .chara .profile.yagi .text {
    text-align: right;
  }
  #top .voice__wrapper .inner .chara .profile.yagi:before {
    width: 180px;
    height: 240px;
    top: -90px;
    right: -200px;
  }
  #top .voice__wrapper .inner .chara:before, #top .voice__wrapper .inner .chara:after {
    content: "";
    display: block;
    position: absolute;
    position: absolute;
  }
  #top .voice__wrapper .inner .chara:before {
    width: 176px;
    height: 154px;
    top: 50px;
    right: calc(50% + 60px);
  }
  #top .voice__wrapper .inner .chara:after {
    width: 199px;
    height: 120px;
    top: 82px;
    left: calc(50% - 4px);
  }
  #top .sns {
    padding: 80px 0 60px;
    max-width: 900px;
  }
  #top .sns__wrapper {
    max-width: 900px;
  }
  #top .sns__wrapper h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  #top .sns__wrapper h2 .yellow {
    font-size: 40px;
  }
  #top .sns__wrapper h2:before, #top .sns__wrapper h2:after {
    background: url(../images/lp/dott_pc.png) no-repeat;
    background-size: contain;
    width: 130px;
    height: 70px;
  }
  #top .sns__wrapper .TikTok__list {
    height: 673px;
  }
  #top .sns__wrapper .TikTok .swiper-slide {
    width: 420px !important;
    height: 673px !important;
    padding: 0 20px;
  }
  #top .sns__wrapper .TikTok .swiper-slide-active {
    opacity: 1 !important;
  }
  #top .sns__wrapper .TikTok .swiper-slide-active img, #top .sns__wrapper .TikTok .swiper-slide-active video {
    transform: scale(1);
  }
  #top .sns__wrapper .TikTok .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
  }
  #top .sns__wrapper .TikTok .swiper-slide:not(.swiper-slide-active) img, #top .sns__wrapper .TikTok .swiper-slide:not(.swiper-slide-active) video {
    transform: scale(0.74);
  }
  #top .sns__wrapper .TikTok .swiper-button-prev,
  #top .sns__wrapper .TikTok .swiper-button-next {
    top: 47%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  #top .sns__wrapper .TikTok .swiper-button-prev {
    left: calc(50% - 235px);
  }
  #top .sns__wrapper .TikTok .swiper-button-prev:hover {
    background: url(../images/lp/slide_arrow_left_after.png) no-repeat;
    background-size: contain;
  }
  #top .sns__wrapper .TikTok .swiper-button-next {
    right: calc(50% - 285px);
  }
  #top .sns__wrapper .TikTok .swiper-button-next:hover {
    background: url(../images/lp/slide_arrow_right_after.png) no-repeat;
    background-size: contain;
  }
  #top .sns__wrapper .swiper-pagination {
    width: 69px;
    margin: 0 auto;
    bottom: -28px;
  }
  #top .sns__wrapper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 7.5px;
  }
  #top .sns__wrapper .sns_btn {
    width: 660px;
    margin: 68px auto 0;
  }
  #top .sns__wrapper .sns_btn img {
    width: 315px;
    height: 108px;
    transition: all 0.4s ease;
  }
  #top .sns__wrapper .sns_btn img:hover {
    opacity: 0.7;
  }
  #top .jobs__wrapper {
    background-color: #edf5f5;
    padding: 138px 0 88px;
  }
  #top .jobs__wrapper .inner h2 {
    margin-bottom: 30px;
  }
  #top .jobs__wrapper .inner h2 span {
    font-size: 22px;
  }
  #top .jobs__wrapper .inner h2 span:before, #top .jobs__wrapper .inner h2 span:after {
    width: 40px;
  }
  #top .jobs__wrapper .inner h2 span:before {
    left: -60px;
  }
  #top .jobs__wrapper .inner h2 span:after {
    right: -60px;
  }
  #top .jobs__wrapper .inner .desc p {
    font-size: 17px;
    line-height: 1.59;
    margin-bottom: 40px;
  }
  #top .jobs__wrapper:before {
    width: 562px;
    height: 92px;
    top: 70px;
  }
  #top .jobs__list {
    width: 740px;
  }
  #top .jobs__item {
    padding: 50px 65px 0;
    border-radius: 20px;
    margin-bottom: 71px;
  }
  #top .jobs__item.collapsed {
    height: 480px !important;
  }
  #top .jobs__item.collapsed .job-details {
    overflow: hidden;
    height: 340px;
  }
  #top .jobs__item.collapsed .btn {
    bottom: -13px;
    font-size: 20px;
  }
  #top .jobs__item.collapsed .btn:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 29px;
    top: 48%;
    right: 30px;
  }
  #top .jobs__item h3 {
    text-align: center;
    margin-bottom: 10px;
  }
  #top .jobs__item h3 span {
    font-size: 24px;
    line-height: 1.5;
  }
  #top .jobs__item h3 span:before, #top .jobs__item h3 span:after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
  }
  #top .jobs__item h3 span:before {
    left: -45px;
  }
  #top .jobs__item h3 span:after {
    right: -33px;
  }
  #top .jobs__item .job-details {
    display: grid;
    grid-template-columns: 32.5% 67.5%;
  }
  #top .jobs__item .job-details .detail-label {
    padding: 20px 0;
    font-size: 17px;
    line-height: 1.59;
  }
  #top .jobs__item .job-details .detail-content {
    padding: 20px 0;
  }
  #top .jobs__item .job-details .detail-content p {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .jobs__item .btn {
    width: 250px;
    height: 60px;
    border-radius: 100px;
    bottom: -30px;
    border: solid 1px transparent;
    transition: all 0.3s ease;
    position: relative;
    font-size: 20px;
  }
  #top .jobs__item .btn:before {
    display: none;
  }
  #top .jobs__item .btn:hover {
    cursor: pointer;
    background-color: #fff;
    border: solid 1px #FA6F77;
    color: #FA6F77;
  }
  #top .qa {
    padding: 0 0 113px;
  }
  #top .qa__wrapper {
    padding: 143px 0 0;
  }
  #top .qa__wrapper .inner h2 {
    margin-bottom: 30px;
    width: 615px;
    margin: 0 auto 30px;
    padding-left: 153px;
  }
  #top .qa__wrapper .inner h2 span {
    font-size: 22px;
  }
  #top .qa__wrapper .inner h2 span:before {
    width: 40px;
    left: -50px;
  }
  #top .qa__wrapper .inner h2:before {
    width: 135px;
    height: 91px;
    top: -72px;
    left: 63px;
  }
  #top .qa__list {
    width: 615px;
  }
  #top .qa__list dt {
    margin-bottom: 10px;
  }
  #top .qa__list dt .q {
    width: 55px;
    height: 55px;
    border-radius: 5px;
    -webkit-text-stroke: 1px #fff;
    font-family: "Playwrite CA", cursive;
    font-size: 22px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 1.54px;
    text-align: left;
    color: #fff;
  }
  #top .qa__list dt p {
    font-size: 20px;
    line-height: 1.4;
    margin-left: 18px;
  }
  #top .qa__list dd {
    margin-bottom: 25px;
  }
  #top .qa__list dd p {
    font-size: 17px;
    line-height: 1.59;
    padding-left: 30px;
  }
  #top .company {
    padding: 143px 0 50px;
  }
  #top .company__wrapper {
    padding: 0;
    position: relative;
  }
  #top .company__wrapper .inner h2 {
    width: 900px;
    margin: 0 auto 40px;
    padding-left: 123px;
  }
  #top .company__wrapper .inner h2 span {
    font-size: 22px;
  }
  #top .company__wrapper .inner h2 span:before {
    width: 40px;
    left: -54px;
  }
  #top .company__wrapper .inner h2:before {
    width: 332px;
    height: 91px;
    top: -70px;
    left: 40px;
  }
  #top .company__list {
    width: 900px;
    padding-left: 14px;
    display: grid;
    grid-template-columns: 20% 80%;
  }
  #top .company__list dt {
    margin-bottom: 30px;
  }
  #top .company__list dt p {
    font-size: 17px;
    line-height: 2.12;
    padding-left: 21px;
  }
  #top .company__list dt p:before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 23px;
    border-radius: 3px;
    top: 8px;
  }
  #top .company__list dd {
    margin-bottom: 30px;
  }
  #top .company__list dd p, #top .company__list dd a {
    font-size: 17px;
    line-height: 2.12;
  }
  #top .company__list dd ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top .company__list dd ul li {
    margin-bottom: 20px;
  }
  #top .company__list dd ul li .name {
    font-size: 17px;
    line-height: 2.12;
  }
  #top .company__list dd ul li .img {
    width: 330px;
    height: 220px;
  }
  #top .company__list dd ul li .address {
    font-size: 17px;
    line-height: 1.59;
  }
  #top .company__list dd ul li .map {
    width: 330px;
    height: 220px;
  }
  #top .company__list dd ul li:last-child {
    margin-bottom: 0;
  }
  #top .company__list dd:last-child {
    margin-bottom: 0;
  }
  #top .accept_btn p a img {
    margin-bottom: 0;
  }
}