* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

@media (max-width: 567px) {
  img {
    display: block;
    width: 100%;
    height: auto;
  }
}

header {
  position: relative;
  background-color: #ffffff;
  z-index: 3;
}
header .logo {
  position: relative;
  width: 223px;
  padding: 18px 20px;
  z-index: 1001;
}
@media (max-width: 567px) {
  header nav {
    display: none;
  }
}
header nav .nav-list {
  display: flex;
  align-items: center;
  padding: 12px 0;
  background-color: #232323;
}
@media (max-width: 567px) {
  header nav .nav-list {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 100px 20px 0;
    flex-direction: column;
  }
}
header nav .nav-list .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.2857142857%;
}
@media (max-width: 567px) {
  header nav .nav-list .nav-item {
    width: 100%;
    padding: 10px 0;
  }
}
header nav .nav-list .nav-item a {
  transition: 0.3s ease all;
}
header nav .nav-list .nav-item a:hover {
  opacity: 0.7;
}
header nav .nav-list .nav-item a span {
  font-family: "Hiragino UD Sans Std", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 2;
  color: #ffffff;
}
header nav .nav-list .nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 567px) {
  header nav .nav-list .nav-item::after {
    content: none;
  }
}
header nav .nav-list .nav-item:last-child::after {
  content: none;
}
header .hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1000;
}
@media (min-width: 568px) {
  header .hamburger {
    display: none;
  }
}
header .hamburger span {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #232323;
  transition: 0.3s;
}
header .hamburger span:nth-child(1) {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .hamburger span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 3px;
}
header .hamburger span:nth-child(3) {
  position: absolute;
  left: 0;
  bottom: 3px;
}
header .hamburger.open span {
  background-color: #ffffff;
}
header .hamburger.open span:nth-child(1) {
  display: none;
}
header .hamburger.open span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 13px;
  transform: rotate(-45deg);
}
header .hamburger.open span:nth-child(3) {
  position: absolute;
  left: 0;
  top: 13px;
  transform: rotate(45deg);
}

footer {
  padding: 60px 0;
  text-align: center;
  background-color: #232323;
}
footer .footer-logo {
  width: 315px;
  margin: 0 auto;
}

.container {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 567px) {
  .container {
    width: 100%;
  }
}

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

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

body.home .ttl-under-line {
  text-align: center;
}
body.home .ttl-under-line span {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.7;
  color: #232323;
}
@media (max-width: 567px) {
  body.home .ttl-under-line span {
    font-size: 5.5vw;
  }
}
body.home .ttl-under-line span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  background-image: linear-gradient(to right, #232323, #232323 7px, transparent 7px, transparent);
  background-size: 14px 100%;
  background-position: center;
}
body.home .row-cta {
  text-align: center;
}
body.home .row-cta a {
  transition: 0.3s ease all;
}
body.home .row-cta a:hover {
  opacity: 0.7;
}
body.home .row-cta a .cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .row-cta a .cta-btn .icon {
  position: relative;
  display: inline-block;
  z-index: 0;
}
body.home .row-cta a .cta-btn .icon img {
  display: block;
}
body.home .row-cta a .cta-btn .text {
  position: relative;
  display: inline-block;
  z-index: 1;
}
body.home .row-cta a .cta-btn .click {
  position: absolute;
  right: 10px;
  bottom: -40px;
}
@media (max-width: 567px) {
  body.home .row-cta a .cta-btn .click {
    width: 7vw;
    bottom: -10px;
  }
}
body.home .row-cta a .cta-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: -1;
}
@media (max-width: 567px) {
  body.home .row-cta a .cta-btn::after {
    top: 2px;
  }
}
body.home #main-visual {
  position: relative;
}
body.home #main-visual .mv-main {
  display: block;
}
body.home #main-visual .mv-cta {
  position: absolute;
  right: 30px;
  top: 420px;
  width: 320px;
  height: 320px;
  transition: 0.3s ease all;
}
body.home #main-visual .mv-cta:hover {
  opacity: 0.7;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta {
    top: 29vw;
    width: 22.22vw;
    height: 22.22vw;
  }
}
body.home #main-visual .mv-cta a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(56deg, #8c0000 0%, #ff5100 100%);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a {
    width: 22.22vw;
    height: 22.22vw;
  }
}
body.home #main-visual .mv-cta a .now {
  position: relative;
  display: block;
  margin: 0 0 10px;
  text-align: center;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .now {
    margin: 0 0 1vw;
    font-size: 2.5vw;
  }
}
body.home #main-visual .mv-cta a .now::before, body.home #main-visual .mv-cta a .now::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 100%;
  margin: 5px 0 0;
  background-color: #ffffff;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .now::before, body.home #main-visual .mv-cta a .now::after {
    margin: 0;
  }
}
body.home #main-visual .mv-cta a .now::before {
  left: -15px;
  transform: translateY(-50%) rotate(-30deg);
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .now::before {
    left: -1.5vw;
  }
}
body.home #main-visual .mv-cta a .now::after {
  right: -15px;
  transform: translateY(-50%) rotate(30deg);
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .now::after {
    right: -1.5vw;
  }
}
body.home #main-visual .mv-cta a .free {
  display: block;
  margin: 0 0 10px;
  font-size: 65px;
  font-weight: 900;
  transform: skewX(-5deg);
  line-height: 1;
  color: #ffff00;
  text-shadow: 4px 4px 0px #800007;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .free {
    margin: 1.5vw;
    font-size: 3.5vw;
    text-shadow: 2px 2px 0px #800007;
  }
}
body.home #main-visual .mv-cta a .free span {
  font-size: 95px;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .free span {
    font-size: 4.5vw;
  }
}
body.home #main-visual .mv-cta a .download {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #ffff00;
  transform: skewX(-5deg);
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .download {
    margin: 0 0 1vw;
    font-size: 2vw;
  }
}
body.home #main-visual .mv-cta a .cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home #main-visual .mv-cta a .cta .txt {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .cta .txt {
    font-size: 1.8vw;
  }
}
body.home #main-visual .mv-cta a .cta .ico {
  width: 24px;
  height: 24px;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-cta a .cta .ico {
    width: 1.8vw;
    height: 1.8vw;
  }
}
body.home #main-visual .mv-lead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home #main-visual .mv-lead .mv-lead-wrapper {
  position: relative;
  margin-top: -150px;
  z-index: 2;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-wrapper {
    margin-top: 0;
    padding: 0 20px;
  }
}
body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-ttl {
  margin: 0 0 70px;
  text-align: center;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-ttl {
    margin: 0 0 50px;
  }
}
body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main {
  position: relative;
  margin: 0 0 55px;
  text-align: center;
}
body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-list {
    flex-direction: column;
  }
}
body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-list .mv-lead-main-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 370px;
  height: 150px;
  margin: 0 0 290px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  background-color: #ffffff;
  border: 3px solid #232323;
  border-radius: 10px;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-list .mv-lead-main-item {
    width: 100%;
    margin: 0 0 20px;
    height: 100px;
    font-size: 4vw;
  }
}
body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-list:nth-child(2) .mv-lead-main-item {
  margin: 0;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-list:nth-child(2) .mv-lead-main-item {
    margin: 0 0 20px;
  }
}
body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-fig {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-wrapper .mv-lead-main .mv-lead-main-fig {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    margin: 30px 0 0;
  }
}
body.home #main-visual .mv-lead .mv-lead-margin {
  position: absolute;
  left: 0;
  top: -40px;
  opacity: 0.8;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-margin {
    top: 0;
  }
}
body.home #main-visual .mv-lead .mv-lead-margin::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 670px;
  background: linear-gradient(180deg, rgb(255, 242, 63) 0%, rgba(255, 242, 63, 0.5) 50%, rgba(255, 226, 0, 0) 100%);
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-margin::before {
    width: 37.5vw;
    height: 140vw;
    opacity: 0.7;
  }
}
body.home #main-visual .mv-lead .mv-lead-margin::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 670px;
  background: linear-gradient(180deg, rgb(242, 150, 0) 0%, rgb(242, 150, 0) 65%, rgba(255, 226, 0, 0) 100%);
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-margin::after {
    width: 37.5vw;
    height: 140vw;
    opacity: 0.7;
  }
}
body.home #main-visual .mv-lead .mv-lead-margin.right {
  left: unset;
  right: 540px;
  opacity: 0.7;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead .mv-lead-margin.right {
    right: 37.5vw;
  }
}
body.home #main-visual .mv-lead .mv-lead-margin.right::before {
  background: linear-gradient(90deg, rgb(255, 242, 63) 0%, rgba(255, 242, 63, 0.5) 50%, rgba(255, 226, 0, 0) 100%);
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  z-index: 2;
}
body.home #main-visual .mv-lead .mv-lead-margin.right::after {
  background: linear-gradient(90deg, rgb(242, 150, 0) 0%, rgb(242, 150, 0) 65%, rgba(255, 226, 0, 0) 100%);
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
}
body.home #main-visual .mv-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: -90px;
  width: 100%;
  height: 245px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead::before {
    top: 0;
    height: 17vw;
  }
}
body.home #main-visual .mv-lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #main-visual .mv-lead::after {
    height: 17vw;
  }
}
body.home #whatis {
  position: relative;
}
@media (max-width: 567px) {
  body.home #whatis {
    padding: 50px 0;
  }
}
body.home #whatis .whatis-wrapper {
  position: relative;
  padding: 0 0 90px;
  background-color: #fef2e5;
  overflow: hidden;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper {
    margin: 0 0 50px;
    padding: 0 20px;
  }
}
body.home #whatis .whatis-wrapper .logo {
  position: relative;
  margin: 0 0 40px;
  text-align: center;
  z-index: 2;
}
body.home #whatis .whatis-wrapper .logo img {
  display: inline-block;
  width: 186px;
  margin: 0 auto;
}
body.home #whatis .whatis-wrapper .whatis-ttl {
  position: relative;
  margin: 0 0 40px;
  text-align: center;
  z-index: 2;
}
body.home #whatis .whatis-wrapper .whatis-ttl span {
  display: inline-block;
  padding: 0 0 14px;
  font-family: "Hiragino UD Sans Std", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 98px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  background-color: #232323;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper .whatis-ttl span {
    padding: 10px;
    font-size: 10vw;
  }
}
body.home #whatis .whatis-wrapper .whatis-ttl-sub {
  position: relative;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 900;
  line-height: 1.5;
  color: #232323;
  z-index: 2;
}
body.home #whatis .whatis-wrapper .whatis-ttl-sub .ttl-sub-01 {
  font-size: 48px;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper .whatis-ttl-sub .ttl-sub-01 {
    font-size: 4.2vw;
  }
}
body.home #whatis .whatis-wrapper .whatis-ttl-sub .ttl-sub-02 {
  font-size: 75px;
  color: #f67b00;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper .whatis-ttl-sub .ttl-sub-02 {
    font-size: 6.8vw;
  }
}
body.home #whatis .whatis-wrapper .whatis-ttl-sub .ttl-sub-03 {
  display: inline-block;
  font-size: 60px;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper .whatis-ttl-sub .ttl-sub-03 {
    font-size: 5vw;
  }
}
body.home #whatis .whatis-wrapper .whatis-txt {
  position: relative;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 2;
  color: #232323;
  z-index: 2;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper .whatis-txt {
    font-size: 3.5vw;
  }
}
body.home #whatis .whatis-wrapper .whatis-txt span {
  font-weight: 900;
}
body.home #whatis .whatis-wrapper .whatis-txt span.focus {
  position: relative;
  display: inline-block;
  font-size: 34px;
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper .whatis-txt span.focus {
    font-size: 6vw;
  }
}
body.home #whatis .whatis-wrapper .whatis-txt span.focus::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  height: 8px;
  background-color: #f67b00;
  z-index: -1;
}
@media (max-width: 567px) {
  body.home #whatis .whatis-wrapper .whatis-txt span.focus::after {
    bottom: 0;
  }
}
body.home #whatis .whatis-wrapper .mask {
  position: absolute;
  left: -15px;
  top: -160px;
  width: 1470px;
  height: 1047px;
  background: linear-gradient(0deg, #fff23f 0%, #f29600 100%);
  opacity: 0.3;
  z-index: 0;
}
body.home #whatis .whatis-wrapper .mask .mask01 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 825px;
  height: 825px;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  opacity: 0.1;
}
body.home #whatis .whatis-wrapper .mask .mask02 {
  position: absolute;
  left: 0;
  top: 0;
  width: 660px;
  height: 660px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  opacity: 0.1;
}
body.home #whatis .whatis-wrapper .mask .mask03 {
  position: absolute;
  right: 0;
  top: 0;
  width: 490px;
  height: 490px;
  background-color: rgba(255, 242, 63, 0.9411764706);
  background: linear-gradient(rgba(253, 235, 209, 0.9411764706), rgba(253, 235, 209, 0.9411764706));
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  opacity: 0.1;
}
body.home #whatis .whatis-wrapper .mask .mask04 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  height: 230px;
  background-color: rgba(255, 242, 63, 0.9411764706);
  background: linear-gradient(rgba(253, 235, 209, 0.9411764706), rgba(253, 235, 209, 0.9411764706));
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  opacity: 0.1;
}
body.home #whatis .whatis-wrapper .mask .mask04 {
  position: absolute;
  left: 0;
  top: 0;
  width: 230px;
  height: 230px;
  background-color: rgba(255, 242, 63, 0.9411764706);
  background: linear-gradient(rgba(253, 235, 209, 0.9411764706), rgba(253, 235, 209, 0.9411764706));
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  opacity: 0.1;
}
body.home #whatis .whatis-wrapper::before, body.home #whatis .whatis-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 220px;
  background-color: #ffffff;
  z-index: 1;
}
body.home #whatis .whatis-wrapper::before {
  left: 0;
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
}
body.home #whatis .whatis-wrapper::after {
  right: 0;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}
body.home #whatis .row-cta {
  padding: 18px 0 24px;
}
@media (max-width: 567px) {
  body.home #whatis .row-cta {
    padding: 0 20px;
  }
}
body.home #whatis .row-cta a {
  display: inline-block;
  width: 980px;
  margin: 0 auto 50px;
}
@media (max-width: 567px) {
  body.home #whatis .row-cta a {
    width: 100%;
    margin: 0 0 20px;
  }
}
body.home #whatis .row-cta a .cta-btn {
  height: 128px;
  background: linear-gradient(90deg, #ed8e03 0%, #eb5d03 100%);
  border-radius: 12px;
}
@media (max-width: 567px) {
  body.home #whatis .row-cta a .cta-btn {
    height: 60px;
  }
}
@media (max-width: 567px) {
  body.home #whatis .row-cta a .cta-btn .icon {
    width: 4.8vw;
  }
}
body.home #whatis .row-cta a .cta-btn .text {
  margin: 0 0 0 20px;
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 567px) {
  body.home #whatis .row-cta a .cta-btn .text {
    margin: 0 0 0 5px;
    font-size: 4.8vw;
  }
}
body.home #whatis .row-cta a .cta-btn::after {
  background: linear-gradient(90deg, #f59a1d 0%, #ee8500 100%);
}
body.home #whatis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #whatis::before {
    height: 17vw;
  }
}
body.home #points {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper {
    padding: 0 20px;
  }
}
body.home #points .points-wrapper .points-ttl {
  margin: 0 0 100px;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-ttl {
    margin: 0 0 50px;
  }
}
body.home #points .points-wrapper .points-ttl span {
  font-size: 50px;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-ttl span {
    width: 100%;
    font-size: 4.6vw;
  }
}
body.home #points .points-wrapper .points-list {
  width: 980px;
  margin: 0 auto;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list {
    width: 100%;
  }
}
body.home #points .points-wrapper .points-list .points-item {
  position: relative;
  margin: 0 0 64px;
  padding: 40px 80px;
  background-color: #ffffff;
  border-radius: 0 0 0 80px;
  box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.4);
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item {
    margin: 0 0 8vw;
    padding: 20px;
    border-radius: 0 0 0 20px;
  }
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl {
  margin: 0 0 20px;
  margin-left: -20px;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item .points-item-ttl {
    margin: 0 0 2vw;
  }
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line {
  position: relative;
  display: block;
  margin: 0 0 14px;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line {
    margin: 0 0 1vw;
  }
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line .txt {
  position: relative;
  display: inline-block;
  padding: 0 30px 0 15px;
  font-style: italic;
  font-size: 52px;
  line-height: 1.35;
  color: #ffffff;
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line .txt {
    font-size: 4vw;
  }
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line .txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
  z-index: -1;
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line .txt::after {
  content: "";
  position: absolute;
  left: -11px;
  top: 0;
  width: calc(100% + 22px);
  height: 100%;
  background-color: #ffffff;
  z-index: -2;
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 35px);
  height: 3px;
  background-color: #f67b00;
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line.no-orange::after {
  content: none;
}
body.home #points .points-wrapper .points-list .points-item .points-item-ttl .line.right {
  text-align: right;
}
body.home #points .points-wrapper .points-list .points-item .points-item-txt {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item .points-item-txt {
    font-size: 3vw;
  }
}
body.home #points .points-wrapper .points-list .points-item .points-item-txt span {
  display: inline-block;
  line-height: 1.2;
  padding: 0 0 4px;
  background-color: #f67b00;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item .points-item-txt span {
    padding: 0;
  }
}
body.home #points .points-wrapper .points-list .points-item .points-item-num {
  position: absolute;
  right: 22px;
  top: -48px;
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item .points-item-num {
    right: 2vw;
    top: -4.5vw;
  }
}
@media (max-width: 567px) {
  body.home #points .points-wrapper .points-list .points-item .points-item-num {
    width: 10vw;
  }
}
body.home #points .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
body.home #points .mask .mask01 {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 850px;
  height: 260px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
body.home #points .mask .mask02 {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 850px;
  height: 260px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
body.home #points .mask .mask03 {
  content: "";
  position: absolute;
  left: 0;
  top: 645px;
  width: 100%;
  height: 975px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
body.home #points .mask .mask04 {
  content: "";
  position: absolute;
  left: 0;
  top: 135px;
  width: 100%;
  height: 975px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  opacity: 0.7;
}
body.home #points .mask .mask05 {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  height: 380px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  opacity: 0.7;
}
body.home #points .mask .mask06 {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 540px;
  height: 570px;
  background-color: #e6e6e6;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
body.home #points::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
}
body.home #flow {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
}
body.home #flow .flow-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper {
    padding: 0 20px;
  }
}
body.home #flow .flow-wrapper .flow-ttl {
  margin: 0 0 80px;
  text-align: center;
}
body.home #flow .flow-wrapper .flow-ttl span {
  display: inline-block;
  font-size: 75px;
  font-weight: 900;
  line-height: 1;
  color: #232323;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-ttl span {
    font-size: 10vw;
  }
}
body.home #flow .flow-wrapper .flow-head .flow-head-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin: 0 0 75px;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-head .flow-head-list {
    flex-direction: column;
    margin: 0 0 50px;
  }
}
body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item {
  position: relative;
  width: 194px;
  padding: 50px 10px 20px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.4);
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    width: 100%;
  }
}
body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-num {
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #232323;
  border: 3px solid #ffffff;
  border-radius: 50%;
}
body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-txt {
  min-height: 80px;
  margin: 0 0 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #232323;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-txt {
    width: 200px;
    min-height: auto;
  }
}
body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-ico {
  text-align: center;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-ico {
    width: 150px;
  }
}
body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-arrow-wrapper {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 31px;
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.4));
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-arrow-wrapper {
    display: none;
  }
}
body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item .flow-head-item-arrow-wrapper .flow-head-item-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #232323;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
body.home #flow .flow-wrapper .flow-head .flow-head-list .flow-head-item img {
  display: inline;
  width: auto;
}
body.home #flow .flow-wrapper .flow-lead {
  margin: 0 0 60px;
}
body.home #flow .flow-wrapper .flow-lead .txt {
  display: none;
}
body.home #flow .flow-wrapper .flow-lead .fig {
  display: block;
  text-align: center;
}
body.home #flow .flow-wrapper .flow-main {
  position: relative;
  width: 1153px;
  margin: 0 auto;
  padding: 50px 75px 75px;
  background-color: #ffffff;
  clip-path: polygon(40px 0, calc(100% - 40px) 0, 100% 40px, 100% calc(100% - 40px), calc(100% - 40px) 100%, 40px 100%, 0 calc(100% - 40px), 0 40px);
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main {
    width: 100%;
    padding: 40px 20px 20px;
    clip-path: none;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-ttl span {
  width: 100%;
  margin: 0 0 60px;
  padding: 0 0 20px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-ttl span {
    margin: 0 0 20px;
    font-size: 5.5vw;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list {
    gap: 20px;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item {
  display: flex;
  width: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item {
    flex-direction: column;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-fig {
  width: 414px;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-fig {
    width: 100%;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 414px);
  padding: 35px 0 0;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info {
    width: 100%;
    padding: 20px;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl {
  margin: 0 0 14px;
  text-align: center;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl {
    margin: 1vw;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl .case {
  display: inline-block;
  margin: 0 0 20px;
  padding: 0 14px 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.6px;
  color: #232323;
  border-bottom: 2px solid #232323;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl .case {
    margin: 0 0 1vw;
    padding: 0 0 1vw;
    font-size: 4.5vw;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl .main {
  display: block;
  font-size: 39px;
  font-weight: 900;
  line-height: 1;
  color: #232323;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl .main {
    font-size: 7vw;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl .sub {
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-ttl .sub {
    font-size: 4.5vw;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-txt {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-txt {
    font-size: 4vw;
  }
}
body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-txt span {
  display: block;
  margin: 0 0 6px;
  font-size: 29px;
  font-weight: 700;
  color: #f67b00;
}
@media (max-width: 567px) {
  body.home #flow .flow-wrapper .flow-main .flow-main-list .flow-main-item .flow-main-item-info .flow-main-item-info-txt span {
    font-size: 4vw;
  }
}
body.home #flow .flow-film {
  position: relative;
  margin: 0 0 60px;
  margin-top: -70px;
  z-index: 0;
}
@media (max-width: 567px) {
  body.home #flow .flow-film {
    margin: 0 0 5vw;
  }
}
body.home #flow .row-cta {
  position: relative;
  z-index: 1;
  width: 980px;
  margin: 0 auto 50px;
}
@media (max-width: 567px) {
  body.home #flow .row-cta {
    width: 100%;
    padding: 0 20px;
  }
}
body.home #flow .row-cta .cta-btn {
  height: 128px;
  background: #000000;
  border-radius: 12px;
}
@media (max-width: 567px) {
  body.home #flow .row-cta .cta-btn {
    height: 60px;
  }
}
@media (max-width: 567px) {
  body.home #flow .row-cta .cta-btn .icon {
    width: 4.8vw;
  }
}
body.home #flow .row-cta .cta-btn .text {
  margin: 0 0 0 20px;
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 567px) {
  body.home #flow .row-cta .cta-btn .text {
    margin: 0 0 0 5px;
    font-size: 4vw;
  }
}
body.home #flow .row-cta .cta-btn::after {
  background: #ffffff;
}
body.home #flow .decoration {
  position: absolute;
  width: 1553px;
  left: 50%;
  top: 330px;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 567px) {
  body.home #flow .decoration {
    width: 100%;
    top: 32vw;
  }
}
body.home #flow .mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
body.home #flow .mask .mask01 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fff23f 0%, #f29600 100%);
}
body.home #flow .mask .mask02 {
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 1167px;
  height: 1375px;
  background-color: #ffffff;
  opacity: 0.1;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
body.home #flow .mask .mask03 {
  position: absolute;
  right: -24px;
  top: -24px;
  width: 935px;
  height: 1100px;
  background-color: #ffffff;
  opacity: 0.1;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
body.home #flow .mask .mask04 {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 690px;
  height: 815px;
  background-color: #f29600;
  opacity: 0.5;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
body.home #flow .mask .mask05 {
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 350px;
  height: 410px;
  background-color: #f29600;
  opacity: 0.5;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}
body.home #flow .mask .mask06 {
  position: absolute;
  right: -24px;
  top: -24px;
  width: 350px;
  height: 410px;
  background-color: #f29600;
  opacity: 0.5;
  clip-path: polygon(100% 100%, 100% 0, 0 0);
}
body.home #flow .mask .mask07 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
body.home #liver {
  position: relative;
}
body.home #liver .liver-list {
  position: relative;
  z-index: 1;
}
body.home #liver .liver-list .liver-item {
  position: relative;
}
body.home #liver .liver-list .liver-item .liver-item-photo {
  display: block;
}
body.home #liver .liver-list .liver-item .liver-item-infos {
  position: absolute;
  left: 0;
  top: 0;
  width: 742px;
  height: 100%;
  padding: 90px 110px 0 60px;
  background: url(../img/liver-bg.png) no-repeat;
  background-position: left top;
  background-size: cover;
}
@media (max-width: 567px) {
  body.home #liver .liver-list .liver-item .liver-item-infos {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    background: url(../img/liver-bg-sp.png) repeat;
    background-size: cover;
  }
}
body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-name-mark {
  text-align: center;
}
body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-name-mark span {
  display: inline-block;
  margin: 0 0 60px;
  padding: 0 0 12px;
  font-style: italic;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #232323;
  border-bottom: 3px solid #232323;
}
@media (max-width: 567px) {
  body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-name-mark span {
    margin: 0 0 3.5vw;
    font-size: 3.5vw;
  }
}
body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-name {
  text-align: center;
  margin: 0 0 50px;
}
@media (max-width: 567px) {
  body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-name {
    margin: 0 0 5vw;
  }
}
body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-name span {
  display: inline-block;
  font-size: 126px;
  font-weight: 900;
  line-height: 1;
  color: #232323;
  text-shadow: 4px 4px 0px #ffffff;
}
@media (max-width: 567px) {
  body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-name span {
    font-size: 10vw;
  }
}
body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-detail {
  padding: 24px 60px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25;
  color: #232323;
  background-color: #fbddb2;
}
@media (max-width: 567px) {
  body.home #liver .liver-list .liver-item .liver-item-infos .liver-item-infos-wrapper .liver-detail {
    padding: 24px;
    font-size: 3vw;
  }
}
body.home #liver .liver-list .liver-item:nth-child(2) .liver-item-infos {
  left: unset;
  right: 0;
  filter: flipH;
  transform: scaleX(-1);
}
body.home #liver .liver-list .liver-item:nth-child(2) .liver-item-infos .liver-item-infos-wrapper {
  transform: scaleX(-1);
}
@media (max-width: 567px) {
  body.home #liver .liver-list .liver-item:nth-child(3) .liver-item-infos {
    padding-bottom: 60px;
  }
}
body.home #liver .liver-list::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #liver .liver-list::after {
    height: 17vw;
  }
}
body.home #liver .liver-lead {
  position: relative;
  padding: 60px 0 200px;
  text-align: center;
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #liver .liver-lead {
    padding: 40px 20px;
  }
}
body.home #liver .liver-ttl {
  position: relative;
  background-color: #ffffff;
  z-index: 1;
}
body.home #liver .liver-team {
  position: relative;
  padding: 50px 0 250px;
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #liver .liver-team {
    padding: 20px 20px 100px;
  }
}
body.home #liver .liver-team .liver-team-poster {
  margin: 0 0 20px;
  text-align: center;
}
body.home #liver .liver-team .liver-team-txt {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 2.2;
}
@media (max-width: 567px) {
  body.home #liver .liver-team .liver-team-txt {
    font-size: 2.8vw;
  }
}
body.home #liver .liver-team .liver-team-txt span {
  display: inline-block;
  padding: 0 8px;
  line-height: 1.5;
  background-color: #f67b00;
}
body.home #liver .liver-team .liver-team-sign {
  position: absolute;
  right: -50px;
  bottom: -60px;
  z-index: 1;
}
body.home #liver .liver-team .decoration {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.2;
}
body.home #liver .liver-team::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
@media (max-width: 567px) {
  body.home #liver .liver-team::after {
    height: 17vw;
  }
}
body.home #liver .mask {
  position: absolute;
  left: 0;
  bottom: -300px;
  width: 100%;
  height: 2030px;
  background-color: #f2f2f2;
  z-index: -1;
  opacity: 1;
}
body.home #liver .mask .mask01 {
  position: absolute;
  right: 0;
  bottom: 165px;
  width: 100%;
  height: 975px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 100%);
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
}
body.home #liver .mask .mask02 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 870px;
  height: 260px;
  background-color: #e6e6e6;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}
body.home #liver .mask .mask03 {
  position: absolute;
  right: 0;
  top: 0;
  width: 845px;
  height: 245px;
  background-color: #e6e6e6;
  clip-path: polygon(100% 100%, 100% 0, 0 0);
}
@media (max-width: 567px) {
  body.home #liver .mask .mask03 {
    height: 17vw;
  }
}
body.home #liver .mask .mask04 {
  position: absolute;
  left: 0;
  top: 140px;
  width: 100%;
  height: 975px;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 100%);
  clip-path: polygon(0 100%, 100% 50%, 0 0);
}
body.home #liver .mask .mask05 {
  position: absolute;
  left: 0;
  top: 650px;
  width: 100%;
  height: 975px;
  background: #e6e6e6;
  clip-path: polygon(0 100%, 100% 50%, 0 0);
  opacity: 0.7;
}
body.home #liver .mask .mask06 {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  height: 380px;
  background: #e6e6e6;
  clip-path: polygon(0 100%, 100% 0, 0 0);
  opacity: 0.5;
}
body.home #liver .mask .mask07 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 540px;
  height: 570px;
  background: #e6e6e6;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  opacity: 0.8;
}
body.home #liver .mask .mask08 {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 1px);
  height: 230px;
  background: #ffffff;
  clip-path: polygon(100% 0, 100% 0px, 50% 100%, 0 0px, 0 0);
}
body.home #compare {
  position: relative;
  padding: 120px 0 90px;
}
body.home #compare .compare-wrapper {
  position: relative;
  width: 1041px;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #compare .compare-wrapper {
    width: 100%;
    padding: 0 20px;
  }
}
body.home #compare .compare-wrapper .compare-ttl {
  position: relative;
  margin: 0 0 20px;
}
body.home #compare .compare-wrapper .compare-ttl span {
  width: 100%;
}
body.home #compare .compare-wrapper .compare-ttl .ballon {
  position: absolute;
  left: -44px;
  top: -44px;
  transform: unset;
  width: 88px;
  height: 88px;
}
@media (max-width: 567px) {
  body.home #compare .compare-wrapper .compare-ttl .ballon {
    left: -10px;
    top: -7vw;
    width: 10vw;
    height: 10vw;
  }
}
body.home #compare .compare-wrapper .compare-ttl .ballon::after {
  content: none;
}
body.home #compare .compare-wrapper .compare-main {
  display: block;
  text-align: center;
}
@media (max-width: 567px) {
  body.home #compare .compare-wrapper .compare-main {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 567px) {
  body.home #compare .compare-wrapper .compare-main img {
    display: inline;
    width: auto;
    max-width: none;
  }
}
body.home #compare .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1010px;
  z-index: -1;
}
body.home #compare .mask .mask01 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #fff23f 0%, #f29600 100%);
}
body.home #compare .mask .mask02 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  height: 260px;
  background-color: #f2f2f2;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  opacity: 0.5;
}
body.home #compare .mask .mask03 {
  position: absolute;
  right: 0;
  top: 0;
  width: 910px;
  height: 910px;
  background-color: #fff23f;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.5;
}
body.home #compare .mask .mask04 {
  position: absolute;
  left: 0;
  top: 0;
  width: 320px;
  height: 320px;
  background-color: #f29600;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
body.home #compare .mask .mask05 {
  position: absolute;
  right: 0;
  top: 0;
  width: 430px;
  height: 1470px;
  background-color: #f2f2f2;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.7;
}
body.home #compare .mask .mask06 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 630px;
  background-color: #f2f2f2;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  opacity: 0.7;
}
body.home #compare .mask .mask07 {
  position: absolute;
  right: 0;
  top: 0;
  width: 430px;
  height: 430px;
  background-color: #e7581b;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.7;
}
body.home #compare::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
@media (max-width: 567px) {
  body.home #compare::before {
    height: 17vw;
  }
}
body.home #compare::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
@media (max-width: 567px) {
  body.home #compare::after {
    height: 17vw;
  }
}
body.home #faq {
  position: relative;
  padding: 36px 0 80px;
}
body.home #faq .faq-wrapper {
  position: relative;
  width: 1041px;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper {
    width: 100%;
    padding: 0 20px;
  }
}
body.home #faq .faq-wrapper .faq-ttl {
  margin: 0 0 80px;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .faq-ttl {
    margin: 0 0 8vw;
  }
}
body.home #faq .faq-wrapper .faq-ttl span {
  width: 100%;
}
body.home #faq .faq-wrapper .faq-list .faq-item .q {
  position: relative;
  margin: 0 0 50px;
  padding: 12px 0;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
  background-color: #232323;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .faq-list .faq-item .q {
    margin: 0 0 8.8vw;
    padding: 2vw 0;
    font-size: 3.3vw;
  }
}
body.home #faq .faq-wrapper .faq-list .faq-item .q .ballon {
  position: absolute;
  left: 20px;
  top: -44px;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .faq-list .faq-item .q .ballon {
    left: 3px;
    top: -5vw;
    width: 10vw;
    height: 10vw;
  }
}
body.home #faq .faq-wrapper .faq-list .faq-item .a {
  position: relative;
  margin: 0 0 80px;
  padding: 0 90px 0 130px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  color: #232323;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .faq-list .faq-item .a {
    margin: 0 0 8.8vw;
    padding: 0 0 0 11.5vw;
    font-size: 3.3vw;
  }
}
body.home #faq .faq-wrapper .faq-list .faq-item .a .ballon {
  position: absolute;
  left: 20px;
  top: 0;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .faq-list .faq-item .a .ballon {
    left: 3px;
    top: -2vw;
    width: 10vw;
    height: 10vw;
  }
}
body.home #faq .faq-wrapper .row-cta {
  width: 979px;
  margin: 0 auto 80px;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .row-cta {
    width: 100%;
    margin: 0 0 40px;
  }
}
body.home #faq .faq-wrapper .row-cta a .cta-btn {
  height: 128px;
  background: linear-gradient(90deg, #ed8e03 0%, #eb5d03 100%);
  border-radius: 12px;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .row-cta a .cta-btn {
    height: 60px;
  }
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .row-cta a .cta-btn .icon {
    width: 4.8vw;
  }
}
body.home #faq .faq-wrapper .row-cta a .cta-btn .text {
  margin: 0 0 0 20px;
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .row-cta a .cta-btn .text {
    margin: 0 0 0 5px;
    font-size: 4.8vw;
  }
}
body.home #faq .faq-wrapper .row-cta a .cta-btn::after {
  background: linear-gradient(90deg, #f59a1d 0%, #ee8500 100%);
}
body.home #faq .faq-wrapper .data-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 40px;
  border-left: 8px solid #f67b00;
  border-right: 8px solid #f67b00;
  border-bottom: 8px solid #f67b00;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .data-list {
    border-width: 3px;
  }
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .data-list {
    padding: 20px;
  }
}
body.home #faq .faq-wrapper .data-list .data-list-ttl {
  position: absolute;
  left: 50%;
  top: -23px;
  transform: translateX(-50%);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: #232323;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .data-list .data-list-ttl {
    top: -2.5vw;
    font-size: 5vw;
  }
}
body.home #faq .faq-wrapper .data-list .data-list-txt {
  font-size: 36px;
  font-weight: 400;
  line-height: 2;
  color: #232323;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .data-list .data-list-txt {
    font-size: 3.5vw;
  }
}
body.home #faq .faq-wrapper .data-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50% - 220px);
  height: 8px;
  background-color: #f67b00;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .data-list::before {
    width: calc(50% - 23vw);
    height: 3px;
  }
}
body.home #faq .faq-wrapper .data-list::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc(50% - 220px);
  height: 8px;
  background-color: #f67b00;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 567px) {
  body.home #faq .faq-wrapper .data-list::after {
    width: calc(50% - 23vw);
    height: 3px;
  }
}
body.home #faq .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}
body.home #faq .mask .mask01 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f2f2;
}
body.home #faq .mask .mask02 {
  position: absolute;
  left: 0;
  bottom: 180px;
  width: 100%;
  height: 975px;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
body.home #faq .mask .mask03 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 870px;
  height: 310px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
body.home #faq .mask .mask04 {
  position: absolute;
  right: 0;
  top: 0;
  width: 860px;
  height: 300px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
body.home #faq .mask .mask05 {
  position: absolute;
  left: 0;
  top: 160px;
  width: 100%;
  height: 975px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 0 100%, 100% 52%);
  opacity: 0.5;
}
body.home #faq .mask .mask06 {
  position: absolute;
  left: 0;
  top: 750px;
  width: 100%;
  height: 975px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 0 100%, 100% 52%);
  opacity: 0.7;
}
body.home #faq .mask .mask07 {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  height: 440px;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
body.home #faq .mask .mask08 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 540px;
  height: 670px;
  background-color: #e6e6e6;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}
body.home #faq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}
@media (max-width: 567px) {
  body.home #faq::before {
    height: 17vw;
  }
}

body.page-contact main {
  width: 640px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 567px) {
  body.page-contact main {
    width: 100%;
    padding: 50px 20px 100px;
  }
}
body.page-contact main h1 {
  margin: 0 0 50px;
  text-align: center;
  font-size: 50px;
}
@media (max-width: 567px) {
  body.page-contact main h1 {
    font-size: 30px;
  }
}
body.page-contact main article .form-field {
  margin-bottom: 30px;
}
@media (max-width: 567px) {
  body.page-contact main article .form-field {
    margin-bottom: 25px;
  }
}
body.page-contact main article .form-field label {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
  color: #232323;
}
@media (max-width: 567px) {
  body.page-contact main article .form-field label {
    font-size: 16px;
  }
}
body.page-contact main article .form-field .form-control,
body.page-contact main article .form-field .wpcf7-text,
body.page-contact main article .form-field .wpcf7-email,
body.page-contact main article .form-field .wpcf7-tel,
body.page-contact main article .form-field .wpcf7-select,
body.page-contact main article .form-field .wpcf7-textarea {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #232323;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 567px) {
  body.page-contact main article .form-field .form-control,
  body.page-contact main article .form-field .wpcf7-text,
  body.page-contact main article .form-field .wpcf7-email,
  body.page-contact main article .form-field .wpcf7-tel,
  body.page-contact main article .form-field .wpcf7-select,
  body.page-contact main article .form-field .wpcf7-textarea {
    padding: 10px 12px;
    font-size: 15px;
  }
}
body.page-contact main article .form-field .form-control:focus,
body.page-contact main article .form-field .wpcf7-text:focus,
body.page-contact main article .form-field .wpcf7-email:focus,
body.page-contact main article .form-field .wpcf7-tel:focus,
body.page-contact main article .form-field .wpcf7-select:focus,
body.page-contact main article .form-field .wpcf7-textarea:focus {
  border-color: #f67b00;
  box-shadow: 0 0 0 3px rgba(246, 123, 0, 0.1);
}
body.page-contact main article .form-field .form-control::placeholder,
body.page-contact main article .form-field .wpcf7-text::placeholder,
body.page-contact main article .form-field .wpcf7-email::placeholder,
body.page-contact main article .form-field .wpcf7-tel::placeholder,
body.page-contact main article .form-field .wpcf7-select::placeholder,
body.page-contact main article .form-field .wpcf7-textarea::placeholder {
  color: #999;
  opacity: 1;
}
body.page-contact main article .form-field .form-control.wpcf7-not-valid,
body.page-contact main article .form-field .wpcf7-text.wpcf7-not-valid,
body.page-contact main article .form-field .wpcf7-email.wpcf7-not-valid,
body.page-contact main article .form-field .wpcf7-tel.wpcf7-not-valid,
body.page-contact main article .form-field .wpcf7-select.wpcf7-not-valid,
body.page-contact main article .form-field .wpcf7-textarea.wpcf7-not-valid {
  border-color: #dc3545;
}
body.page-contact main article .form-field .wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}
body.page-contact main article .form-field .wpcf7-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
body.page-contact main article .consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 567px) {
  body.page-contact main article .consent-field {
    gap: 10px;
  }
}
body.page-contact main article .consent-field .wpcf7-acceptance {
  margin-top: 3px;
  flex-shrink: 0;
}
body.page-contact main article .consent-field label {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  cursor: pointer;
}
@media (max-width: 567px) {
  body.page-contact main article .consent-field label {
    font-size: 13px;
  }
}
body.page-contact main article .consent-field label a {
  color: #f67b00;
  text-decoration: underline;
}
body.page-contact main article .consent-field label a:hover {
  text-decoration: none;
}
body.page-contact main article .consent-field input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #f67b00;
  cursor: pointer;
}
body.page-contact main article .form-submit {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 567px) {
  body.page-contact main article .form-submit {
    margin-top: 30px;
  }
}
body.page-contact main article .wpcf7-submit,
body.page-contact main article .submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 60px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #f67b00;
  border: none;
  outline: none;
  border-radius: 30px;
  transition: 0.3s ease all;
}
body.page-contact main article .wpcf7-submit:hover,
body.page-contact main article .submit-button:hover {
  opacity: 0.7;
}
body.page-contact main article .wpcf7-submit,
body.page-contact main article .submit-button {
  cursor: pointer;
}
@media (max-width: 567px) {
  body.page-contact main article .wpcf7-submit,
  body.page-contact main article .submit-button {
    height: 50px;
    font-size: 16px;
  }
}
body.page-contact main article .wpcf7-submit:disabled,
body.page-contact main article .submit-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 1;
}
body.page-contact main article .wpcf7-submit:disabled:hover,
body.page-contact main article .submit-button:disabled:hover {
  opacity: 1;
}
body.page-contact main article .wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #dc3545;
}
body.page-contact main article .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
}
body.page-contact main article .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
body.page-contact main article .wpcf7-response-output.wpcf7-validation-errors, body.page-contact main article .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
body.page-contact main article .wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #f67b00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.page-contact main article label {
  display: block;
  margin: 0 0 20px;
  font-size: 20px;
}
body.page-contact main article .wpcf7-text,
body.page-contact main article .wpcf7-textarea {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  outline: none;
  border: 1px solid #f67b00;
  border-radius: 4px;
}

/*# sourceMappingURL=styles.css.map */
