@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

img, video, iframe {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #000;
  background-color: #fff;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
body a {
  color: #000;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

h2, h3, h4, h5, h6 {
  font-size: 16px;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  fill: transparent;
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 1.5s ease-in-out forwards;
          animation: stroke 1.5s ease-in-out forwards;
  fill: #fff;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.parallax {
  overflow: hidden;
}
.parallax img {
  -webkit-transform: translateZ(0) scale(1.2, 1.2);
          transform: translateZ(0) scale(1.2, 1.2);
}

/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_n2 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* btn 
========================================= */
.btn__01, .btn__02 {
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 768px) {
  .btn__01, .btn__02 {
    height: 56px;
    max-width: 350px;
  }
}
.btn__01 > a, .btn__01 > span, .btn__02 > a, .btn__02 > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.5em;
  font-size: 1.25em;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  height: 100%;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .btn__01 > a, .btn__01 > span, .btn__02 > a, .btn__02 > span {
    padding: 1em 1.25em;
    font-size: 1em;
  }
}
.btn__01 > a:hover, .btn__01 > span:hover, .btn__02 > a:hover, .btn__02 > span:hover {
  opacity: 0.7;
}
.btn__01.--s, .btn__02.--s {
  max-width: 200px;
  height: 48px;
}
.btn__01 > a, .btn__01 > span {
  background-color: #000;
}
.btn__02 > a, .btn__02 > span {
  background-color: #fff;
  border: 1px solid #fff;
}
/* section common
====================================== */
.section__inner {
  width: 80%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 6em 1.5em;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    width: 90%;
    padding: 4em 0;
  }
}
.section__inner.--s {
  max-width: 896px;
}
.section__inner.--l {
  width: 90%;
  max-width: 1280px;
}
@media (max-width: 768px) {
  .section__inner.--l {
    width: 90%;
  }
}
.section__title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 0.6em;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 1.5em;
  }
}
.section__lead {
  font-size: 1.25em;
  line-height: 1.4;
  text-align: center;
  color: #4B5563;
  margin-bottom: 3.2em;
}
@media (max-width: 768px) {
  .section__lead {
    font-size: 1em;
    margin-bottom: 2em;
  }
}

.lp-cases.--gray {
  background-color: #eceaea;
}
.lp-cases.--white {
  background-color: #fff;
}
.lp-cases.--black {
  background-color: #000;
}
.lp-cases.--black .lp-cases__title,
.lp-cases.--black .lp-cases__lead {
  color: #fff;
}
.lp-cases__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
@media (max-width: 768px) {
  .lp-cases__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp-cases__item {
  width: 33.3333333333%;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lp-cases__item {
    width: 100%;
  }
}
.lp-cases__item a {
  height: 100%;
  display: block;
  padding-top: 2em;
}
.lp-cases__item a.no_link {
  pointer-events: none;
}
.lp-cases__item-image {
  height: 140px;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp-cases__item-image img {
  width: 80%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-cases__item-contents {
  height: calc(100% - 170px);
  padding: 0 2em 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .lp-cases__item-contents {
    padding: 0 1em 1em;
  }
}
.lp-cases__item-title {
  min-height: 3em;
  font-size: 1.5em;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.6667em;
}
@media (max-width: 768px) {
  .lp-cases__item-title {
    font-size: 1.25em;
  }
}
.lp-cases__item-sub {
  font-size: 1.25em;
  font-weight: bold;
  color: #4B5563;
  min-height: 3.25em;
  line-height: 1.625;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .lp-cases__item-sub {
    font-size: 0.875em;
  }
}
.lp-cases__item-text {
  font-size: 1.125em;
  color: #4B5563;
  line-height: 1.625;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .lp-cases__item-text {
    font-size: 1em;
  }
}
.lp-cases__item-btn {
  display: inline-block;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  background-color: #000;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 4px;
  font-size: 1em;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: auto;
}
@media (max-width: 768px) {
  .lp-cases__item-btn {
    font-size: 0.875em;
  }
}
.lp-cases__item-btn:hover {
  opacity: 0.7;
}

.lp-cta.--gray {
  background-color: #eceaea;
}
.lp-cta.--white {
  background-color: #fff;
}
.lp-cta.--black {
  background-color: #000;
}
.lp-cta.--black .lp-cta__title, .lp-cta.--black .lp-cta__lead {
  color: #fff;
}
.lp-cta__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
}
@media (max-width: 768px) {
  .lp-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
}
@media (max-width: 768px) {
  .lp-cta__button {
    width: 100%;
  }
}
.lp-cta__button a.text-white {
  color: #fff;
}
.lp-cta__button a.text-black {
  color: #000;
}

.lp-faq.--gray {
  background-color: #eceaea;
}
.lp-faq.--gray .lp-features__item {
  background-color: #fff;
}
.lp-faq.--white {
  background-color: #fff;
}
.lp-faq.--black {
  background-color: #000;
}
.lp-faq.--black .lp-faq__title,
.lp-faq.--black .lp-faq__lead {
  color: #fff;
}
.lp-faq.--black .lp-faq__item {
  background-color: #fff;
}
.lp-faq__item {
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .lp-faq__item {
    border-radius: 8px;
  }
}
.lp-faq__item:nth-child(n+2) {
  margin-top: 1.25em;
}
.lp-faq__item.is-open .lp-faq__item__question .btn::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp-faq__item__question {
  font-size: 1.125em;
  font-weight: bold;
  background-color: #fff;
  padding: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .lp-faq__item__question {
    font-size: 1em;
    padding: 1rem;
  }
}
.lp-faq__item__question .btn {
  width: 0.875em;
  height: 0.875em;
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
}
.lp-faq__item__question .btn::before, .lp-faq__item__question .btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #9CA3AF;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lp-faq__item__question .btn::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp-faq__item__question .btn::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.lp-faq__item__answer {
  background-color: #F9FAFB;
  padding: 1.5em;
  color: #4B5563;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .lp-faq__item__answer {
    font-size: 0.875em;
    padding: 1rem;
    line-height: 1.4;
  }
}

.lp-features.--gray {
  background-color: #eceaea;
}
.lp-features.--gray .lp-features__item {
  background-color: #fff;
}
.lp-features.--white {
  background-color: #fff;
}
.lp-features.--white .lp-features__item {
  background-color: #F9FAFB;
}
.lp-features.--black {
  background-color: #000;
}
.lp-features.--black .lp-features__title,
.lp-features.--black .lp-features__lead {
  color: #fff;
}
.lp-features.--black .lp-features__item {
  background-color: #fff;
}
.lp-features__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
@media (max-width: 768px) {
  .lp-features__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp-features__item {
  width: 33.3333333333%;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  background-color: #F9FAFB;
  border-radius: 16px;
  overflow: hidden;
  padding: 2em;
}
@media (max-width: 768px) {
  .lp-features__item {
    width: 100%;
  }
}
.lp-features__item-icon {
  background-color: #000;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .lp-features__item-icon {
    width: 3em;
    height: 3em;
  }
}
.lp-features__item-icon.--center {
  margin: 0 auto 1.5em;
}
.lp-features__item-icon span {
  font-family: "dashicons";
  font-size: 1.75em;
  color: #fff;
}
@media (max-width: 768px) {
  .lp-features__item-icon img {
    width: 1.5em;
    height: 1.5em;
  }
}
.lp-features__item-title {
  font-size: 1.5em;
  font-weight: bold;
  min-height: 3em;
  margin-bottom: 0.6667em;
}
@media (max-width: 768px) {
  .lp-features__item-title {
    font-size: 1.25em;
    min-height: inherit;
  }
}
.lp-features__item-text {
  font-size: 1.125em;
  color: #4B5563;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .lp-features__item-text {
    font-size: 1em;
  }
}

.lp-features2.--gray {
  background-color: #eceaea;
}
.lp-features2.--gray .lp-features__item {
  background-color: #fff;
}
.lp-features2.--white {
  background-color: #fff;
}
.lp-features2.--white .lp-features__item {
  background-color: #F9FAFB;
}
.lp-features2.--black {
  background-color: #000;
}
.lp-features2.--black .lp-features__title,
.lp-features2.--black .lp-features__lead {
  color: #fff;
}
.lp-features2.--black .lp-features__item {
  background-color: #fff;
}
.lp-features2 .lp-features__item {
  padding: 0;
}
.lp-features2 .lp-features__item-image {
  width: 100%;
}
.lp-features2 .lp-features__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-features2 .lp-features__item-contents {
  padding: 2em;
}

.lp-flow.--gray {
  background-color: #eceaea;
}
.lp-flow.--white {
  background-color: #fff;
}
.lp-flow.--black {
  background-color: #000;
}
.lp-flow.--black .lp-flow__title,
.lp-flow.--black .lp-flow__lead {
  color: #fff;
}
.lp-flow.--black .lp-flow__item-num {
  border: 2px solid #fff;
}
.lp-flow.--black .lp-flow__item-title, .lp-flow.--black .lp-flow__item-text {
  color: #fff;
}
.lp-flow__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em 2.9%;
}
@media (max-width: 768px) {
  .lp-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp-flow__item {
  text-align: center;
  width: 20%;
}
@media (max-width: 768px) {
  .lp-flow__item {
    width: 100%;
  }
}
.lp-flow__item-num {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1em;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #6B7280;
}
.lp-flow__item-title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.8em;
}
@media (max-width: 768px) {
  .lp-flow__item-title {
    font-size: 1.25em;
  }
}
.lp-flow__item-text {
  color: #4B5563;
  line-height: 1.625;
}

.lp-introduce.--gray {
  background-color: #eceaea;
}
.lp-introduce.--white {
  background-color: #fff;
}
.lp-introduce.--black {
  background-color: #000;
}
.lp-introduce.--black .lp-introduce__title,
.lp-introduce.--black .lp-introduce__lead {
  color: #fff;
}
.lp-introduce__title {
  font-weight: inherit;
}
.lp-introduce__image img {
  margin: 0 auto;
  height: auto;
  max-width: 100%;
}
.lp-introduce__button {
  max-width: 400px;
  margin: 3em auto 0;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .lp-introduce__button {
    width: 100%;
    margin-top: 1.5em;
  }
}
.lp-introduce__button a.text-white {
  color: #fff;
}
.lp-introduce__button a.text-black {
  color: #000;
}

.lp-logos__inner {
  margin: 0 calc(50% - 50vw);
  max-width: inherit;
  width: 100vw;
  padding: 3em 0 1.5em;
}
@media (max-width: 768px) {
  .lp-logos__inner {
    padding: 1.5em 0 1em;
  }
}
.lp-logos__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp-logos__item img, .lp-logos__item object {
  display: block;
  width: auto;
  max-width: 195px;
  height: 66px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 768px) {
  .lp-logos__item img, .lp-logos__item object {
    max-width: 100px;
    height: 30px;
  }
}

.lp-mv {
  background-color: #F9FAFB;
}
.lp-mv__inner {
  padding-top: 8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .lp-mv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 8em 0 4em;
    gap: 2em;
  }
}
.lp-mv__contents {
  width: 47.1%;
}
@media (max-width: 768px) {
  .lp-mv__contents {
    width: 100%;
  }
}
.lp-mv__title {
  display: inline-block;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 0.667em;
}
.lp-mv__title.--xs {
  font-size: 2em;
}
@media (max-width: 768px) {
  .lp-mv__title.--xs {
    font-size: 1.25em;
  }
}
.lp-mv__title.--s {
  font-size: 2.5em;
}
@media (max-width: 768px) {
  .lp-mv__title.--s {
    font-size: 1.5em;
  }
}
.lp-mv__title.--m {
  font-size: 3em;
}
@media (max-width: 768px) {
  .lp-mv__title.--m {
    font-size: 1.75em;
  }
}
.lp-mv__title.--l {
  font-size: 3.5em;
}
@media (max-width: 768px) {
  .lp-mv__title.--l {
    font-size: 2em;
  }
}
.lp-mv__title.--xl {
  font-size: 4em;
}
@media (max-width: 768px) {
  .lp-mv__title.--xl {
    font-size: 2.25em;
  }
}
.lp-mv__text {
  font-size: 1.25em;
  color: #4B5563;
  line-height: 1.625;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .lp-mv__text {
    font-size: 1em;
  }
}
.lp-mv__icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .lp-mv__icons {
    margin-bottom: 1em;
  }
}
.lp-mv__icon img {
  width: 100%;
  max-height: 100px;
}
.lp-mv__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .lp-mv__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto;
  }
}
.lp-mv__button {
  position: relative;
}
@media (max-width: 768px) {
  .lp-mv__button {
    width: 100%;
    margin: 0 auto;
  }
}
.lp-mv__button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .lp-mv__button a {
    height: 60px;
  }
}
.lp-mv__button a.text-white {
  color: #fff;
}
.lp-mv__button a.text-black {
  color: #000;
}
.lp-mv__image {
  width: 47.1%;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2509803922);
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  position: relative;
}
.lp-mv__image::before {
  content: "";
  display: block;
  padding-top: 73.846%;
}
.lp-mv__image img, .lp-mv__image video, .lp-mv__image iframe, .lp-mv__image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .lp-mv__image {
    width: 100%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.lp-mv__image img {
  width: 100%;
  height: 100%;
}

.lp-mv2__inner {
  padding-top: 8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  min-height: 50vh;
}
@media (max-width: 768px) {
  .lp-mv2__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 8em 0 4em;
    gap: 2em;
  }
}
.lp-mv2__contents {
  width: 47.1%;
}
@media (max-width: 768px) {
  .lp-mv2__contents {
    width: 100%;
  }
}
.lp-mv2__logo {
  margin-bottom: 1em;
}
.lp-mv2__logo img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.lp-mv2__title {
  display: inline-block;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 0.667em;
}
.lp-mv2__title.--xs {
  font-size: 2em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--xs {
    font-size: 1.25em;
  }
}
.lp-mv2__title.--s {
  font-size: 2.5em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--s {
    font-size: 1.5em;
  }
}
.lp-mv2__title.--m {
  font-size: 3em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--m {
    font-size: 1.75em;
  }
}
.lp-mv2__title.--l {
  font-size: 3.5em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--l {
    font-size: 2em;
  }
}
.lp-mv2__title.--xl {
  font-size: 4em;
}
@media (max-width: 768px) {
  .lp-mv2__title.--xl {
    font-size: 2.25em;
  }
}
.lp-mv2__title.--white {
  color: #fff;
}
.lp-mv2__title.--black {
  color: #000;
}
.lp-mv2__text {
  font-size: 1.25em;
  color: #4B5563;
  line-height: 1.625;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .lp-mv2__text {
    font-size: 1em;
  }
}
.lp-mv2__icons {
  position: absolute;
  bottom: 2em;
  right: 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .lp-mv2__icons {
    margin-bottom: 1em;
  }
}
.lp-mv2__icon img {
  width: 100%;
  max-height: 100px;
}
.lp-mv2__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .lp-mv2__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto;
  }
}
.lp-mv2__button {
  position: relative;
  border-radius: 0;
}
@media (max-width: 768px) {
  .lp-mv2__button {
    width: 100%;
    margin: 0 auto;
  }
}
.lp-mv2__button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .lp-mv2__button a {
    height: 60px;
  }
}
.lp-mv2__button a.text-white {
  color: #fff;
}
.lp-mv2__button a.text-black {
  color: #000;
}
.lp-mv2__image {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 100vw;
  height: 100%;
}
.lp-mv2__image::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100vw;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.lp-mv2__image img {
  width: 100%;
  height: 100%;
}

.lp-plans.--gray {
  background-color: #eceaea;
}
.lp-plans.--gray .lp-plans__item {
  background-color: #fff;
}
.lp-plans.--white {
  background-color: #fff;
}
.lp-plans.--black {
  background-color: #000;
}
.lp-plans.--black .lp-plans__title,
.lp-plans.--black .lp-plans__lead {
  color: #fff;
}
.lp-plans.--black .lp-plans__item {
  background-color: #fff;
}
.lp-plans__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2em 2.9%;
}
.lp-plans__list.repeat_4 .lp-plans__item {
  width: 40%;
}
@media (max-width: 768px) {
  .lp-plans__list.repeat_4 .lp-plans__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lp-plans__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
.lp-plans__item {
  width: 31.4%;
  background-color: #fff;
  border: 2px solid #E5E7EB;
  -webkit-box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1019607843), 0px 8px 10px -6px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1019607843), 0px 8px 10px -6px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
  position: relative;
  padding: 2em;
}
@media (max-width: 768px) {
  .lp-plans__item {
    width: 100%;
  }
}
.lp-plans__item.is-recommend {
  border: 2px solid #000;
}
.lp-plans__item.is-recommend .lp-plans__item-recommend {
  display: block;
}
.lp-plans__item-recommend {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 100%;
  min-width: 80px;
  padding: 0 10px;
  white-space: nowrap;
  height: 33.6px;
  line-height: 33.6px;
  background-color: #000;
  border-radius: 50px;
  font-size: 0.875em;
  text-align: center;
  font-weight: bold;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .lp-plans__item-recommend {
    width: 100px;
    height: 28px;
    line-height: 28px;
    font-size: 0.75rem;
  }
}
.lp-plans__item-recommend > span {
  color: #fff;
}
.lp-plans__item-title {
  font-size: 1.5em;
  text-align: center;
  line-height: 1.333;
  margin: 0 auto 1rem;
}
@media (max-width: 1024px) {
  .lp-plans__item-title {
    font-size: 1.125rem;
  }
}
.lp-plans__item-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1em;
}
.lp-plans__item-note {
  font-size: 1.125em;
  color: #4B5563;
}
.lp-plans__item-text {
  color: #4B5563;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2em;
}
@media (max-width: 1024px) {
  .lp-plans__item-text {
    font-size: 0.875rem;
  }
}
.lp-plans__item-price {
  font-size: 2.25em;
  font-weight: bold;
  line-height: 1.111;
}
@media (max-width: 1024px) {
  .lp-plans__item-price {
    font-size: 2em;
  }
}
.lp-plans__item-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.lp-plans__item-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.875em;
  font-weight: 500;
  line-height: 1.4375;
}
@media (max-width: 768px) {
  .lp-plans__item-list__item {
    font-size: 0.875rem;
  }
}
.lp-plans__item-list__item:nth-child(n+2) {
  margin-top: 1em;
}
.lp-plans__item-list__item::before {
  content: "";
  display: inline-block;
  width: 20.83px;
  height: 20px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 2px;
  background: url(../img/icon_check.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lp-plans__item-list__item::before {
    width: 16px;
    height: 12px;
  }
}

.lp-plans2.--gray {
  background-color: #eceaea;
}
.lp-plans2.--gray .lp-plans2__item {
  background-color: #fff;
}
.lp-plans2.--white {
  background-color: #fff;
}
.lp-plans2.--white .lp-plans2__item-contents {
  background-color: #eceaea;
}
.lp-plans2.--black {
  background-color: #000;
}
.lp-plans2.--black .lp-plans2__title,
.lp-plans2.--black .lp-plans2__lead {
  color: #fff;
}
.lp-plans2.--image {
  position: relative;
  z-index: 0;
}
.lp-plans2.--image > img {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-plans2.--image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.lp-plans2.--image .lp-plans2__title,
.lp-plans2.--image .lp-plans2__lead {
  color: #fff;
}
.lp-plans2__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2em 2.9%;
}
@media (max-width: 768px) {
  .lp-plans2__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
.lp-plans2__item {
  width: 31.4%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .lp-plans2__item {
    width: 100%;
  }
}
.lp-plans2__item-image img {
  aspect-ratio: 16/9;
}
.lp-plans2__item-contents {
  width: 90%;
  margin: -2em auto 0;
  background-color: #fff;
  position: relative;
  padding: 2em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.lp-plans2__item-circle {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  font-size: 0.875em;
  color: #fff;
  background-color: #4B5563;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .lp-plans2__item-circle {
    width: 60px;
    height: 60px;
    font-size: 0.75rem;
  }
}
.lp-plans2__item-title-en {
  font-size: 1.25em;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media (max-width: 1024px) {
  .lp-plans2__item-title-en {
    font-size: 1em;
  }
}
.lp-plans2__item-title-jp {
  font-size: 1em;
  font-weight: normal;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .lp-plans2__item-title-jp {
    font-size: 0.875em;
  }
}
.lp-plans2__item-price {
  font-size: 1em;
  background-color: #4B5563;
  color: #fff;
  text-align: center;
  padding: 0.25em;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .lp-plans2__item-price {
    font-size: 0.875em;
  }
}
.lp-plans2__item-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.lp-plans2__item-list-title {
  display: inline-block;
  padding: 0.25em 0.5em;
  border-bottom: 1px solid #000;
  margin-bottom: 0.75em;
}
.lp-plans2__item-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 500;
  line-height: 1.4375;
}
@media (max-width: 768px) {
  .lp-plans2__item-list__item {
    font-size: 0.875rem;
  }
}
.lp-plans2__item-list__item:nth-child(n+2) {
  margin-top: 0.25em;
}
.lp-plans2__item-list__item::before {
  content: "・";
  display: inline-block;
  width: 1em;
  height: 1em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.lp-points.--white .lp-points__item {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}
.lp-points__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  position: relative;
}
.lp-points__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5em 3.333333%;
  gap: 5%;
  border-radius: 4px;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
}
.lp-points__item:nth-child(1) {
  top: 100px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(1) {
    top: 70px;
  }
}
.lp-points__item:nth-child(2) {
  top: 120px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(2) {
    top: 80px;
  }
}
.lp-points__item:nth-child(3) {
  top: 140px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(3) {
    top: 90px;
  }
}
.lp-points__item:nth-child(4) {
  top: 160px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(4) {
    top: 100px;
  }
}
.lp-points__item:nth-child(5) {
  top: 180px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(5) {
    top: 110px;
  }
}
.lp-points__item:nth-child(6) {
  top: 200px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(6) {
    top: 120px;
  }
}
.lp-points__item:nth-child(7) {
  top: 220px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(7) {
    top: 130px;
  }
}
.lp-points__item:nth-child(8) {
  top: 240px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(8) {
    top: 140px;
  }
}
.lp-points__item:nth-child(9) {
  top: 260px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(9) {
    top: 150px;
  }
}
.lp-points__item:nth-child(10) {
  top: 280px;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(10) {
    top: 160px;
  }
}
@media (max-width: 768px) {
  .lp-points__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 1.5em;
    gap: 1em;
  }
}
.lp-points__item:nth-child(n+2) {
  margin-top: 2.5em;
}
.lp-points__item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .lp-points__item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lp-points__item-image {
  width: 44.6428%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lp-points__item-image {
    width: 100%;
    position: relative;
  }
  .lp-points__item-image::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .lp-points__item-image img, .lp-points__item-image video, .lp-points__item-image iframe, .lp-points__item-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.lp-points__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-points__item-contents {
  width: 51%;
}
@media (max-width: 768px) {
  .lp-points__item-contents {
    width: 100%;
  }
}
.lp-points__item-number {
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .lp-points__item-number {
    line-height: 24px;
    font-size: 0.875em;
  }
}
.lp-points__item-number span {
  display: inline-block;
}
.lp-points__item-number span .big {
  font-size: 1.5em;
}
.lp-points__item-title {
  font-size: 2em !important;
  line-height: 1.277778 !important;
  font-weight: 500;
  margin: 0;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .lp-points__item-title {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .lp-points__item-title {
    font-size: 1.25rem !important;
    padding-bottom: 1rem;
  }
}
.lp-points__item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.lp-points__item-text {
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .lp-points__item-text {
    font-size: 0.875rem;
  }
}

.lp-reasons.--gray {
  background-color: #eceaea;
}
.lp-reasons.--gray .lp-reasons__table table {
  background-color: #fff;
}
.lp-reasons.--white {
  background-color: #fff;
}
.lp-reasons.--black {
  background-color: #000;
}
.lp-reasons.--black .lp-reasons__title,
.lp-reasons.--black .lp-reasons__lead {
  color: #fff;
}
.lp-reasons.--black .lp-reasons__table table {
  background-color: #fff;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}
.lp-reasons.--black .lp-reasons__table table th {
  background: #4B5563;
}
.lp-reasons.--black .lp-reasons__table table caption {
  color: #fff;
}
@media (max-width: 768px) {
  .lp-reasons__table {
    overflow-x: scroll;
  }
}
.lp-reasons__table table {
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2509803922);
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .lp-reasons__table table {
    min-width: 600px;
  }
}
.lp-reasons__table table th, .lp-reasons__table table td {
  padding: 0.75em 1em;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  .lp-reasons__table table th, .lp-reasons__table table td {
    font-size: 0.875em;
  }
}
.lp-reasons__table table th {
  text-align: left;
  background-color: #000;
  color: #fff;
}
.lp-reasons__table table td.heading {
  white-space: nowrap;
}
.lp-reasons__table table caption {
  margin-top: 1.5em;
  color: #4B5563;
  caption-side: bottom;
}

.lp-services.--gray {
  background-color: #eceaea;
}
.lp-services.--white {
  background-color: #fff;
}
.lp-services.--black {
  background-color: #000;
}
.lp-services.--black .lp-services__title,
.lp-services.--black .lp-services__lead {
  color: #fff;
}
.lp-services.--black .lp-services__item {
  background-color: #fff;
}
.lp-services.--black .lp-services__item-icon {
  color: #000;
}
.lp-services.--black .lp-services__item-title {
  color: #000;
}
.lp-services.--black .lp-services__item-text {
  color: #000;
}
.lp-services__list {
  display: grid;
  gap: 1.5em 2em;
  grid-template-columns: repeat(5, 1fr);
}
.lp-services__list[data-items-per-row="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.lp-services__list[data-items-per-row="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.lp-services__list[data-items-per-row="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.lp-services__list[data-items-per-row="1"] {
  grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
  .lp-services__list {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .lp-services__list {
    gap: 1em;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.lp-services__item {
  min-height: 128px;
  background-color: #000;
  border-radius: 16px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  padding: 1em;
}
.lp-services__item-title {
  font-size: 1.25em;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.lp-services__item-text {
  color: #fff;
  text-align: center;
}
.lp-services__item-icon {
  font-family: "dashicons";
  font-size: 1.75em;
  color: #fff;
}

.footer {
  background-color: #111827;
}
.footer__inner {
  padding: 4em 0;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 2em 0;
  }
}
.footer__contents {
  color: #fff;
  margin-bottom: 2em;
}
.footer__company {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.25em;
}
.footer__address {
  line-height: 1.8;
}
.footer__copy {
  color: #9CA3AF;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 0.625em;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .header {
    height: 72px;
  }
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.header__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  position: relative;
  z-index: 5;
}
.header__logo a {
  display: block;
  max-width: 200px;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 2.2222vw, 32px);
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item {
  height: 100%;
}
.header__nav-item > a {
  color: #4B5563;
  line-height: 1;
  font-weight: 500;
  padding: 1em clamp(8px, 1.111vw, 16px);
  height: 100%;
  position: relative;
}
.header__nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4B5563;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__nav-item > a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__nav-tel a {
  pointer-events: none;
}
@media (max-width: 768px) {
  .header__nav-tel a {
    display: none;
  }
}
.header__nav-tel a > .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1em;
  padding-top: 0.25em;
}
.header__nav-tel a > .tel img {
  width: 1.125em;
  height: 1.125em;
}
.header__nav-tel a > .tel .number {
  display: block;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.2;
}
.header__nav-tel a .hours {
  display: block;
  font-size: 0.75em;
  font-weight: normal;
  text-align: center;
}
.header__nav-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .header__nav-btns {
    display: none;
  }
}
.header__nav-btn.--01 > a {
  color: #fff;
}
.header__nav-btn.--02 > a {
  border: 2px solid #D1D5DB;
}
.header__nav-btn > a {
  border-radius: 50px;
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  padding: 0.75em 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  font-size: 0.875em;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-btn > a.text-white {
  color: #fff;
}
.header__nav-btn > a.text-black {
  color: #000;
}
.header__nav-btn > a:hover {
  opacity: 0.7;
}
.header__nav-btn > a > span.text {
  white-space: nowrap;
}
.header__btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 8;
  width: 30px;
  height: 16px;
}
@media (max-width: 1024px) {
  .header__btn {
    display: block;
  }
}
.header__btn .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4B5563;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__btn .bar:nth-child(1) {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__btn .bar:nth-child(3) {
  bottom: 0;
}
.header__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100vw;
  overflow: scroll;
  background-color: #fff;
}
.header__menu-inner {
  padding: calc(72px + 1em) 0 3.5em;
  max-height: 100vh;
  overflow: scroll;
}
.header__menu-list {
  margin-bottom: 2em;
}
.header__menu-item a {
  font-size: 0.875em;
  line-height: 1.8;
  color: #4B5563;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #E5E7EB;
}
.header__menu-tel {
  margin-bottom: 2em;
}
.header__menu-tel a > .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.1em;
  padding-top: 0.25em;
}
.header__menu-tel a > .tel img {
  width: 1.125em;
  height: 1.125em;
}
.header__menu-tel a > .tel .number {
  display: block;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.2;
}
.header__menu-tel a .hours {
  display: block;
  font-size: 0.75em;
  font-weight: normal;
  text-align: center;
}
.header__menu-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
.header__menu-btn {
  width: 100%;
  max-width: 350px !important;
  border-radius: 50px;
  overflow: hidden;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}
.header__menu-btn.--02 > a {
  border: 2px solid #D1D5DB;
}
.header__menu-btn > a {
  border-radius: 50px;
  overflow: hidden;
  padding: 0.75em 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  font-size: 0.875em;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-btn > a.text-white {
  color: #fff;
}
.header__menu-btn > a.text-black {
  color: #000;
}
.header__menu-btn > a:hover {
  opacity: 0.7;
}

.header.is-open {
  height: 100vh;
}

.is-open .header__inner {
  height: 72px;
}
.is-open .header__menu {
  display: block;
}
.is-open .header__btn {
  display: block;
  width: 32px;
}
.is-open .header__btn .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(30deg);
          transform: translateY(8px) rotate(30deg);
}
.is-open .header__btn .bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-30deg);
          transform: translateY(-8px) rotate(-30deg);
}