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

select::-ms-expand {
  display: none;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

*:focus {
  outline: none;
}

body,
html,
div,
p,
span,
blockquote,
u,
s,
i,
b,
table,
tr,
th,
td,
ul,
ol,
dl,
li,
dt,
dd,
strong,
h1,
h2,
h3,
h4,
h5,
em,
header,
footer,
nav,
aside,
section,
input,
select,
option,
textarea,
button {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: justify;
  text-justify: inter-ideograph;
  color: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: source-han-sans-japanese, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #000;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

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

a {
  text-decoration: none;
  transition-property: all;
  transition: 0.3s linear;
}

a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

.ttl {
  text-align: center;
  font-weight: 900;
  line-height: 1.3;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .ttl {
    font-size: 2rem;
  }
}

.sub_ttl {
  color: #FF0096;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.button_yellow {
  display: block;
  padding: 10px 10px;
  width: min(100%,250px);
  text-align: center;
  font-size: 20px;
  color: #000;
  background: #FFDC00;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .button_yellow {
    padding: 8px 10px;
  }
}

.button_center {
  margin: 80px auto 0;
}

.sec_bubble {
  position: relative;
}

.sec_bubble_img {
  position: absolute;
  top: -14.5vw;
  width: 100vw;
  height: 15vw;
  animation-timing-function: ease-in-out;
}

@keyframes sec_bubble {
  0% {
    top: -14.5vw;
    transform: scale(1);
  }
  50% {
    top: -16.5vw;
    transform: scale(1.3);
  }
  100% {
    top: -14.5vw;
    transform: scale(1);
  }
}

.sec_bubble_img {
  animation-name: sec_bubble;
  animation-iteration-count: infinite;
  animation-duration: 3s;
}

.sec_padi {
  padding: 80px 0 100px;
}

@media (max-width: 768px) {
  .sec_padi {
    padding: 40px 0;
  }
}

.sec_bubble_padi {
  padding: 30px 0 23vw;
}

@media (max-width: 768px) {
  .sec_bubble_padi {
    padding: 50px 0 39vw;
  }
}

.sec_bubble_padi_top {
  padding: 30px 0 100px;
}

.sec_bubble_padi_bottom {
  padding: 80px 0 23vw;
}

@media (max-width: 768px) {
  .sec_bubble_padi_bottom {
    padding-bottom: 39vw;
  }
}

.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FF0096;
  z-index: 100;
}

@media (max-width: 1090px) {
  .g_nav {
    display: none !important;
  }
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.pager li {
  margin: 0 5px;
}

.pager a {
  padding: 10px 15px;
  color: #fff;
  border-radius: 10px;
}

.pager a:hover {
  color: #FF0096;
  background: #fff;
  opacity: 1;
}

@media (max-width: 428px) {
  .pager a {
    padding: 5px 10px;
  }
}

.pager .current a {
  color: #FF0096;
  background: #fff;
}

.top-info {
  padding: 80px 0 100px;
}

.top-info_subttl {
  margin-bottom: 40px;
}

.top-info_tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 5px 0 10px;
  color: #FF0096;
  font-size: 4rem;
  font-weight: bold;
}

.top-info_tel::before {
  content: '';
  display: block;
  margin-top: 5px;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-image: url(../img/tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .top-info_tel {
    font-size: min(9vw,3rem);
  }
}

.top-info_text {
  text-align: center;
}

.top-info_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 20px 0;
  color: #FF0096;
  font-size: 3.5rem;
  font-weight: bold;
}

.top-info_contact::before {
  content: '';
  display: block;
  margin-top: 5px;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-image: url(../img/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .top-info_contact {
    font-size: min(6vw,3rem);
  }
  .top-info_contact::before {
    width: 30px;
    height: 30px;
  }
}

header {
  padding: 30px 0;
}

.header_logo {
  width: 130px;
}

.header_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

nav {
  position: fixed;
  top: 30px;
  right: 3vw;
  padding: 80px 40px 40px 50px;
  width: 100%;
  max-width: 300px;
  border: 1px solid #fff;
  transform: translateX(500px);
  transition: all .4s ease-in-out;
  z-index: 10;
}

nav .menu_logo {
  display: block;
  margin: 0 auto;
  width: 150px;
}

nav img {
  opacity: 0;
}

nav ul {
  margin-top: 30px;
}

nav ul li {
  position: relative;
  padding-left: 20px;
  opacity: 0;
  color: #fff;
}

nav ul li::before {
  content: '+';
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) translateX(-10px);
  -webkit-transform: translateY(-50%) translateX(-10px);
  margin-right: 10px;
  color: #fff;
  font-weight: 900;
}

nav ul li::after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  background: #fff;
  transition: all .4s ease-in;
}

nav ul li:hover::after {
  width: 100%;
}

nav ul li:nth-child(n+2) {
  margin-top: 15px;
}

nav ul a {
  display: block;
  color: #fff;
}

nav ul a:hover {
  opacity: 1;
}

@media (max-width: 500px) {
  nav {
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    max-width: initial;
  }
  nav img {
    display: block;
    margin: 0 auto;
    width: 200px;
  }
}

nav.active {
  transform: translate(0);
}

nav.active img {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

nav.active li {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

nav.active li:nth-child(1) {
  animation-delay: 0.4s;
}

nav.active li:nth-child(2) {
  animation-delay: 0.5s;
}

nav.active li:nth-child(3) {
  animation-delay: 0.6s;
}

nav.active li:nth-child(4) {
  animation-delay: 0.7s;
}

nav.active li:nth-child(5) {
  animation-delay: 0.8s;
}

nav.active li:nth-child(6) {
  animation-delay: 0.9s;
}

nav.active li:nth-child(7) {
  animation-delay: 1s;
}

nav.active li:nth-child(8) {
  animation-delay: 1.1s;
}

nav.active li:nth-child(9) {
  animation-delay: 1.2s;
}

.header_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.header_menu li {
  padding-left: 15px;
}

.header_menu a {
  display: block;
}

@media (max-width: 768px) {
  .header_menu {
    width: 100%;
  }
  .header_menu li {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .header_menu li a {
    padding: 10px 0;
  }
}

.header_bars {
  position: relative;
  transition: 0.6s;
}

.header_bars span {
  display: block;
  margin: 6px auto;
  width: 30px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: all .6s;
}

.header_bars:hover {
  cursor: pointer;
}

.header_bars::after {
  content: 'menu';
  display: block;
  margin-top: -3px;
  font-size: 10px;
  color: #000;
  text-transform: uppercase;
  transition: all .6s;
}

.header_bars_span {
  position: fixed;
  top: 50px;
  right: 5vw;
  z-index: 11;
}

@media (max-width: 500px) {
  .header_bars_span {
    top: 30px;
    right: 8vw;
  }
}

.header_bars.active::after {
  content: 'close';
}

.header_bars.active span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}

.header_bars.active span:nth-child(2) {
  opacity: 0;
}

.header_bars.active span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

.button_header {
  display: block;
  margin-top: 45px;
  padding: 10px;
  width: 100%;
  text-align: center;
  color: #000;
  background: #FFDC00;
  border-radius: 5px;
}

.footer_menu span {
  background: #fff;
}

.footer_menu::after {
  color: #fff;
}

footer iframe {
  width: 100%;
}

footer .copyright {
  margin-top: -6px;
  padding: 10px 0;
}

@media (max-width: 768px) {
  footer .copyright {
    font-size: 10px;
  }
}

.footer_menu_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.totop {
  display: table;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.totop img {
  width: 25px;
}

.totop:hover {
  cursor: pointer;
}

.searchform {
  position: relative;
  width: 327px;
}

.searchform input {
  width: 100%;
  padding: 12px 59px 12px 12px;
  border: 1px solid #000;
}

.searchform button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: #000;
  border: 1px solid #000;
}

.searchform button:hover {
  cursor: pointer;
}

.searchform button img {
  width: 25px;
}

.breadcrumb {
  padding: 6px 0;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.breadcrumb ul li::after {
  content: "»";
  margin: 0 10px;
}

.breadcrumb ul li:last-child::after {
  display: none;
}

article .single_thumbnail {
  margin: 30px 0;
  width: 100%;
}

article figcaption {
  text-align: center;
}

article h1 {
  font-size: 2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  article h1 {
    font-size: 25px;
  }
}

article h2 {
  margin-top: 60px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  background: #FF0096;
}

article h3 {
  margin-top: 60px;
  padding: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}

article h4 {
  margin-top: 40px;
  font-weight: 700;
}

article p {
  margin: 30px 0;
  line-height: 2;
}

article a {
  text-decoration: underline;
}

article a:hover {
  text-decoration: none;
}

article .wp-block-table {
  margin-right: 10px;
  margin-left: 10px;
}

article table {
  min-width: 100%;
  border-bottom: 2px solid #dfdfdf;
}

article table tr:nth-child(odd) {
  background: #dfdfdf;
}

article table th, article table td {
  padding: 10px;
}

article table th {
  font-weight: 700;
  color: #fff;
  background: #acacac;
}

article strong {
  font-weight: 700;
  font-style: normal;
}

article em {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(transparent 60%, #acacac 60%);
}

article ul, article ol {
  margin-top: 30px;
  padding: 15px 10px 15px 40px;
  background: #dfdfdf;
}

article ul li, article ol li {
  padding-top: 10px;
}

article ul li:first-child, article ol li:first-child {
  padding-top: 0;
}

article ul {
  list-style-type: disc;
}

article ol {
  list-style-type: decimal;
}

article dl {
  margin-top: 30px;
}

article dl dt {
  padding-top: 10px;
}

article dl dt:first-child {
  padding-top: 0;
}

article dl dd {
  padding: 3px 0 3px 20px;
}

article input[type="text"],
article input[type="tel"],
article input[type="email"],
article textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #acacac;
}

article input[type="submit"] {
  display: table;
  margin: 0 auto;
  padding: 5px 40px;
  color: #000;
  background: #acacac;
  border: 2px solid #acacac;
}

article input[type="submit"]:hover {
  color: #000;
  background: #fff;
}

article input[type="submit"]:active {
  color: #000;
  background: #fff;
}

article blockquote {
  position: relative;
  margin-top: 30px;
  padding: 40px;
  background: #dfdfdf;
}

article blockquote p:first-child {
  margin-top: 0;
}

article blockquote::before, article blockquote::after {
  display: block;
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

article blockquote::before {
  top: 10px;
  left: 10px;
  background-image: url("../img/icon_quote1.svg");
}

article blockquote::after {
  right: 10px;
  bottom: 10px;
  background-image: url("../img/icon_quote2.svg");
}

article blockquote cite {
  padding-top: 20px;
  font-style: normal;
  font-size: 0.8rem;
  color: #acacac;
}

.toc {
  display: table;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #acacac;
}

.toc_title {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
}

.toc_list {
  counter-reset: dt;
}

.toc_list dt, .toc_list dd {
  text-decoration: underline;
}

.toc_list dt:hover, .toc_list dd:hover {
  cursor: pointer;
  text-decoration: none;
}

.toc_list dt {
  counter-increment: dt;
  counter-reset: dd;
  padding: 20px 0 0 20px;
}

.toc_list dt::before {
  content: counter(dt) ". ";
  margin-left: -20px;
}

.toc_list dd {
  counter-increment: dd;
  padding-left: 47px;
}

.toc_list dd::before {
  content: counter(dt) "-" counter(dd) ". ";
  margin-left: -34px;
}

.company {
  padding: 80px 0;
}

.company_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.company_bill {
  width: 40%;
}

@media (max-width: 768px) {
  .company_bill {
    margin: 0 auto 30px;
    width: min(300px,100%);
  }
}

.company_content {
  width: 55%;
}

.company_content img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .company_content {
    width: 100%;
  }
}

.company_logo {
  width: min(80%,350px);
}

@media (max-width: 768px) {
  .company_logo {
    width: min(80%,200px);
  }
}

.company_logo_wrap {
  display: block;
  margin: 0 auto;
  width: min(80%,350px);
}

@media (max-width: 768px) {
  .company_logo_wrap {
    width: min(80%,200px);
  }
}

.company_content_wrap {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .company_content_wrap {
    margin-top: 20px;
  }
}

.company_name {
  font-size: 1.5rem;
  font-weight: 900;
}

.company_info {
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

@media (max-width: 768px) {
  .company_info {
    padding: 10px 0 20px;
  }
}

.company_access {
  padding-top: 20px;
}

.notfound {
  padding: 100px 0;
}

.notfound h1 {
  text-align: center;
  color: #FF0096;
  font-size: 4rem;
  font-weight: 900;
}

.nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 20px 20px;
  background: #f9eaf3;
}

.nav_list li {
  display: table;
  margin: 0 20px;
}

.nav_list a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

.nav_list a::before {
  content: '+';
  margin-right: 10px;
  color: #000;
  font-weight: bold;
}

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

.nav_list_ham_wrap {
  display: none;
}

@media (max-width: 768px) {
  .nav_list_ham_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.nav_list_ham span {
  background: #000;
}

.nav_list_ham::after {
  color: #000;
}

.nav_list_footer {
  background: #FF0096;
}

.nav_list_footer a {
  color: #fff;
}

.nav_list_footer a::before {
  color: #fff;
}

.main_vis {
  padding-top: 0px;
  overflow: hidden;
}

.main_vis h2 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  transition: .4s;
  transition-delay: .6s;
  opacity: 0;
}

.main_vis h2 span {
  font-size: 4rem;
}

.main_vis h2.active {
  opacity: 1;
}

.main_vis h1 {
  margin-bottom: 20px;
  color: #FF0096;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 768px) {
  .main_vis {
    padding-top: 10px;
  }
  .main_vis h2 {
    font-size: 25px;
  }
  .main_vis h2 span {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .main_vis h1 {
    margin-bottom: 10px;
    font-size: clamp(18px, 4vw, 30px);
  }
}

.main_vis_wrap {
  position: relative;
}

.main_vis_content {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 4;
}

@media (max-width: 768px) {
  .main_vis_content {
    top: min(34vw,200px);
    left: 51%;
    -webkit-transform: translateY(-55%) translateX(-50%);
  }
}

.main_vis_content_main {
  opacity: 0;
  transition: .6s;
  transition-delay: 3.1s;
}

.main_vis_content_main.active {
  opacity: 1;
}

.main_vis_spray {
  position: absolute;
  top: -105px;
  left: -300px;
  width: 120px;
  height: 120px;
  opacity: 0;
  animation-delay: 1.2s;
  animation-timing-function: cubic-bezier(0.78, 0.09, 0.21, 0.8);
  z-index: 3;
}

.main_vis_spray img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 429px) {
  .main_vis_spray {
    top: -16vw;
    left: -100px;
    width: 70px;
    height: 70px;
  }
}

.main_vis_spray.active {
  left: -190px;
  opacity: 1;
  transform: rotate(0);
  animation-name: spray;
  animation-duration: 1.2s;
}

@media (max-width: 429px) {
  .main_vis_spray.active {
    left: -90px;
    animation-name: spray-sp;
    transform: rotate(0deg);
  }
}

.main_vis_bubble {
  display: block;
  position: absolute;
  top: 30px;
  left: calc(50% - 225px);
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
  width: 50px;
  height: 50px;
  transition: 0.6s cubic-bezier(0.78, 0.09, 0.21, 0.8);
  transition-delay: 1.8s;
  transform-origin: top left;
  opacity: 0;
  z-index: 2;
}

@media (max-width: 429px) {
  .main_vis_bubble {
    left: calc(50% - 130px);
  }
}

.main_vis_bubble.active {
  top: 30px;
  transform: translate(0, -50%) scale(9, 7);
  opacity: 1;
}

@media (max-width: 429px) {
  .main_vis_bubble.active {
    top: 25px;
    left: calc(50% - 125px);
    transform: translate(0, -50%) scale(5.2, 4);
  }
}

.main_vis_logo {
  display: block;
  margin-bottom: 20px;
  width: clamp(200px, 50vw, 300px);
}

.main_vis_button {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .main_vis_button {
    font-size: 16px;
    padding: 10px;
  }
}

.main_vis_img {
  display: block;
  margin: 0 auto;
  padding-top: 300px;
  width: 100%;
  max-width: 750px;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.6s cubic-bezier(0.78, 0.09, 0.21, 0.8);
}

@media (max-width: 429px) {
  .main_vis_img {
    padding-top: 210px;
  }
}

.main_vis_img.active {
  transform: translateY(0);
  opacity: 1;
}

.top-news_ttl {
  margin-top: 50px;
}

.top-news_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

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

.top-news_archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.top-news_archive::after {
  content: '';
  display: block;
  margin: 3px 0 0 5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: all .3s linear;
}

.top-news_archive:hover::after {
  transform: translateX(5px) rotate(45deg);
}

@media (max-width: 768px) {
  .top-news_archive {
    justify-content: center;
    padding: 10px 0 20px;
  }
}

.top-news_wrap {
  flex: 1;
  height: 100%;
  padding: 20px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.top-news_wrap::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .top-news_wrap {
    padding: 20px 0;
  }
}

.top-news_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 15px 20px;
  color: #000;
  line-height: 1.3;
  border-top: 1px dashed #000;
}

.top-news_item time {
  margin-right: 20px;
  font-size: 14px;
}

.top-news_item:first-child {
  padding-top: 0;
  border-top: none;
}

.top-news_item:last-child {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .top-news_item {
    display: block;
  }
  .top-news_item p {
    margin-top: 5px;
  }
}

.catch .ttl {
  margin: 20px 0 70px;
  color: #FF0096;
}

@media (max-width: 768px) {
  .catch .ttl {
    margin-bottom: 40px;
    font-size: 9vw;
  }
}

.catch img {
  display: block;
  margin: 60px auto 0;
  width: 100%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .catch img {
    width: 80%;
  }
}

.catch_text {
  color: #FF0096;
  font-size: 1.5rem;
  font-weight: 900;
}

.catch_text span {
  display: block;
  text-align: center;
}

.catch_text span:nth-child(n+2) {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .catch_text {
    font-size: 1.2rem;
  }
}

.answer {
  padding: 80px 0 0;
}

.answer_ttl {
  margin-top: 10px;
  font-size: 120px;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  line-height: 0.8;
  color: #fff;
}

.answer_ttl span {
  font-size: 30px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .answer_ttl {
    margin-bottom: 10px;
    font-size: clamp(3rem, 18vw, 100px);
  }
}

.answer_ttl_ja {
  font-size: 40px;
}

@media (max-width: 768px) {
  .answer_ttl_ja {
    font-size: min(10vw,40px);
  }
}

.answer_text {
  font-size: min(9vw,40px);
}

@media (max-width: 768px) {
  .answer_text {
    font-size: 2rem;
  }
}

.answer_sub {
  font-size: 1.5rem;
  text-align: center;
}

.answer_img {
  display: block;
  margin: 50px auto 0;
  width: 100%;
  max-width: 1280px;
}

.answer_logo {
  display: block;
  margin: 0 auto 20px;
  width: min(80%,400px);
}

.youtube {
  margin: 100px 0 0;
  width: 100%;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .youtube {
    margin: 70px 0 0;
  }
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.use_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.use_item:nth-child(4) {
  padding-top: 130px;
}

@media (max-width: 1036px) {
  .use_item:nth-child(4) {
    padding-top: 100px;
  }
}

.use_item:nth-child(n+5) {
  margin-top: 40px;
}

@media (max-width: 1036px) {
  .use_item {
    display: block;
  }
  .use_item:nth-child(n+5) {
    margin-top: 70px;
  }
}

.use_item_bubble {
  padding: 100px;
  color: #fff;
  font-weight: 900;
  background-image: url(../img/bubble.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .use_item_bubble {
    max-width: 450px;
    margin: 0 auto;
    padding: 8vw 19vw;
  }
}

.use_item_ttl {
  font-size: 1.5rem;
  text-align: center;
}

.use_item_num {
  text-align: center;
  font-size: 40px;
}

.use_item_num span {
  display: inline-block;
  margin-right: 5px;
  letter-spacing: -8px;
  font-size: 160px;
  line-height: 1;
}

@media (max-width: 768px) {
  .use_item_num {
    font-size: 2rem;
  }
  .use_item_num span {
    margin-right: 0;
    font-size: clamp(70px, 20vw, 150px);
    letter-spacing: 0;
  }
}

.use_item_desc {
  width: 55%;
  padding-left: 50px;
  color: #FF0096;
}

.use_item_desc dt {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.3;
}

.use_item_desc dd {
  margin-top: 20px;
}

@media (max-width: 1036px) {
  .use_item_desc {
    padding-left: 0;
    margin: 30px auto 0;
    width: 100%;
    max-width: 490px;
  }
  .use_item_desc dt {
    font-size: min(8vw,3rem);
  }
}

.use_flow {
  display: block;
  margin-top: 80px;
  width: 100%;
}

@media (max-width: 768px) {
  .use_flow {
    margin-top: 50px;
  }
}

.feature {
  background: #f9eaf3;
}

.feature_item_wrap {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .feature_item_wrap {
    margin-top: 60px;
  }
}

.feature_item {
  position: relative;
  width: calc(100% - 40px);
  border: 1px solid black;
  box-shadow: 40px 30px 0px 0px #FF0096;
  background: #fff;
}

.feature_item:nth-child(n+2) {
  margin-top: 80px;
}

.feature_item::before {
  content: '';
  display: block;
  position: absolute;
  right: -41px;
  top: -1px;
  border-top: 30px solid transparent;
  border-left: 40px solid #FF0096;
}

.feature_item::after {
  content: '';
  display: block;
  position: absolute;
  left: -1px;
  bottom: -31px;
  border-bottom: 30px solid transparent;
  border-right: 40px solid #FF0096;
}

.feature_item p {
  padding: 30px;
  color: #FF0096;
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}

.feature_item p span {
  border-bottom: 5px solid #FFDC00;
}

@media (max-width: 768px) {
  .feature_item p {
    padding: 30px 15px;
    font-size: 1.5rem;
  }
}

.review_item_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .review_item_wrap {
    margin-top: 60px;
  }
}

.review_item {
  position: relative;
  width: 46%;
}

.review_item .review_item_text {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .review_item {
    width: 100%;
  }
  .review_item:nth-child(n+2) {
    margin-top: 70px;
  }
  .review_item img {
    display: block;
    margin: 0 auto;
    width: min(100%,400px);
  }
}

.review_item_ttl {
  margin: 30px 0 15px;
  font-size: 35px;
  font-weight: 900;
}

@media (max-width: 429px) {
  .review_item_ttl {
    font-size: 28px;
  }
}

.review_item_name {
  position: absolute;
  bottom: 0;
  right: 0;
}

.review_item_name dt {
  text-align: right;
  font-weight: 700;
}

.review_item_name dd {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 900;
}

@media (max-width: 768px) {
  .review_item_name dd {
    margin-top: 5px;
    font-size: clamp(18px, 8vw, 25px);
    letter-spacing: 1px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .question .ttl {
    font-size: 2.5rem;
  }
}

.question_wrap {
  display: table;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .question_wrap {
    margin-top: 60px;
  }
}

.question_item:nth-child(n+2) {
  margin-top: 60px;
}

.question_item p {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.question_item p span {
  font-weight: 700;
  font-size: 40px;
  vertical-align: middle;
  line-height: 1.3;
}

.question_item p:nth-child(n+2) {
  margin-top: 20px;
}

.question_item p::before {
  margin: -15px 20px 0 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.question_item .question_item_q::before {
  content: 'Q.';
  color: #000;
}

.question_item .question_item_a::before {
  content: 'A.';
  margin-left: 4px;
  color: #FF0096;
}

.overview_ttl_wrap {
  margin: 100px 0 80px;
  text-align: center;
}

.overview_ttl_wrap .over_view_ttl_logo {
  display: block;
  margin: 0 auto 30px;
  width: min(80%,400px);
}

.overview_ttl_wrap .over_view_ttl_product {
  max-height: 300px;
}

@media (max-width: 768px) {
  .overview_ttl_wrap {
    margin: 60px 0;
  }
}

.top-prof_content {
  margin: 0 auto;
  padding: 0 50px;
  max-width: 900px;
  border-right: 6px solid #FF0096;
  border-left: 6px solid #FF0096;
}

.top-prof_content table {
  display: table;
  margin: 50px auto 0;
}

.top-prof_content table tr td {
  padding: 5px 10px;
}

.top-prof_content table tr td:first-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .top-prof_content table tr td {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .top-prof_content {
    padding: 0 10px;
  }
}

.overview_patent {
  display: block;
  margin: 50px auto 0;
  width: 100%;
  max-width: 500px;
}

.overview_patent_table {
  display: table;
  margin: 50px auto 0;
}

.overview_patent_table th, .overview_patent_table td {
  padding: 5px 10px;
  font-weight: bold;
}

.overview_patent_table th:first-child, .overview_patent_table td:first-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
}

.answer_sub {
  margin-bottom: 20px;
}

.contact {
  padding: 30px 0 100px;
  background: #FF0096;
}

.contact h1 {
  margin: 20px 0 80px;
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 768px) {
  .contact h1 {
    margin: 5px 0 40px;
    font-size: 2rem;
  }
}

.contact_table, .privacy_check_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.contact_table th, .privacy_check_wrap th {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 10px 10px 10px 0;
  color: #fff;
  font-weight: bold;
}

.contact_table th::before, .privacy_check_wrap th::before {
  content: '';
  display: block;
  margin: 7px 10px 0 0;
  width: 13px;
  height: 13px;
  background: #FFDC00;
}

.contact_table td, .privacy_check_wrap td {
  width: 70%;
  padding: 10px 0 10px 10px;
}

@media (max-width: 768px) {
  .contact_table tr, .privacy_check_wrap tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .contact_table th, .contact_table td, .privacy_check_wrap th, .privacy_check_wrap td {
    width: 100%;
  }
  .contact_table th, .privacy_check_wrap th {
    padding-bottom: 0;
    padding-right: 10px;
  }
  .contact_table td, .privacy_check_wrap td {
    padding-top: 5px;
    padding-left: 0;
  }
}

.contact_table textarea, .privacy_check_wrap textarea {
  height: 250px;
}

.contact_table input[type="text"],
.contact_table input[type="tel"],
.contact_table input[type="email"],
.contact_table textarea, .privacy_check_wrap input[type="text"],
.privacy_check_wrap input[type="tel"],
.privacy_check_wrap input[type="email"],
.privacy_check_wrap textarea {
  padding: 5px 10px;
  width: 100%;
  -webkit-appearance: none;
  border: none;
  border-radius: 5px;
}

.contact_table label:hover, .privacy_check_wrap label:hover {
  cursor: pointer;
}

.contact_table input[type="checkbox"] + label, .privacy_check_wrap input[type="checkbox"] + label {
  position: relative;
  padding-right: 20px;
}

.contact_table input[type="checkbox"] + label::before, .privacy_check_wrap input[type="checkbox"] + label::before {
  display: inline-block;
  content: '';
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
}

.contact_table input[type="checkbox"]:checked + label::after, .privacy_check_wrap input[type="checkbox"]:checked + label::after {
  display: block;
  position: absolute;
  content: '';
  top: -4px;
  left: 4px;
  width: 0.4em;
  height: 1em;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
}

.contact_table input[type="radio"] + label, .privacy_check_wrap input[type="radio"] + label {
  position: relative;
  padding-right: 20px;
}

.contact_table input[type="radio"] + label::before, .privacy_check_wrap input[type="radio"] + label::before {
  display: inline-block;
  content: '';
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  border-radius: 50%;
}

.contact_table input[type="radio"]:checked + label::after, .privacy_check_wrap input[type="radio"]:checked + label::after {
  display: block;
  position: absolute;
  content: '';
  top: 3px;
  left: 4px;
  width: 0.6em;
  height: 0.6em;
  background: #000;
  border-radius: 50%;
}

.confirm_table td {
  color: #fff;
}

.contact_error {
  display: none;
  padding-top: 5px;
}

.contact_error_all {
  display: none;
  margin-top: 30px;
  text-align: center;
}

.contact_submit button {
  display: table;
  margin: 80px auto 0 auto;
  padding: 10px 50px;
  width: min(100%,360px);
  color: #000;
  text-align: center;
  background: #FFDC00;
  -webkit-appearance: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact_submit button:active {
  color: #000;
  background: #fff;
}

.contact_submit a {
  display: table;
  margin: 10px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 0, 0, 0.5);
}

.privacy_wrap {
  margin: 30px auto 0;
  max-width: 800px;
}

.privacy_ttl {
  color: #fff;
  font-weight: bold;
}

.privacy_text {
  margin: 10px 0;
  color: #fff;
  font-size: 0.8rem;
}

.privacy_check_wrap {
  display: table;
  margin: 30px 0 0;
  text-align: center;
  color: #fff;
}

.privacy_check_wrap input[type="checkbox"] + label::before {
  border: 1px solid #000;
  background: #fff;
}

.privacy_check_wrap input[type="checkbox"]:checked + label::after {
  top: 3px;
  left: 6px;
  border-right: 3px solid #FF0096;
  border-bottom: 3px solid #FF0096;
}

.privacy_link {
  margin-top: 30px;
}

.privacy_link a {
  color: #0000FF;
  text-decoration: underline;
}

.news_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.news_wrap::after {
  content: '';
  display: block;
  width: 31%;
}

@media (max-width: 768px) {
  .news_wrap::after {
    width: 100%;
  }
}

.news_item {
  position: relative;
  width: 31%;
  color: #000;
  background: #f9eaf3;
  border-radius: 5px;
  cursor: pointer;
}

.news_item:nth-child(n+4) {
  margin-top: 30px;
}

.news_item:hover {
  transform: translateY(-10px);
  box-shadow: 5px 5px 15px #acacac;
  opacity: 1;
}

.news_item time {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

@media (max-width: 768px) {
  .news_item {
    width: 100%;
  }
  .news_item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.news_item_img {
  width: 100%;
  height: 200px;
  border-radius: 5px 5px 0 0;
}

.news_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.news_item_noimg {
  width: 100%;
  height: 200px;
  position: relative;
  border-radius: 5px 5px 0 0;
}

.news_item_noimg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 80%;
  border-radius: 5px 5px 0 0;
}

.new_item_content {
  position: relative;
  padding: 10px 10px 50px 10px;
  border-radius: 0 0 5px 5px;
}

.wrap {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
  max-width: 1090px;
}

.black {
  color: #000 !important;
}

.white {
  color: #fff !important;
}

.pink {
  color: #FF0096 !important;
}

.yellow {
  color: #FFDC00 !important;
}

.link {
  color: #0000FF !important;
}

.bg-black {
  background: #000 !important;
}

.bg-white {
  background: #fff !important;
}

.bg-pink {
  background: #FF0096 !important;
}

.bg-l-pink {
  background: #f9eaf3 !important;
}

.small {
  font-size: 0.8rem !important;
}

.normal {
  font-size: 1rem !important;
}

.big {
  font-size: 1.5rem !important;
}

.large {
  font-size: 2rem !important;
}

.left {
  text-align: left   !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right  !important;
}

.bold {
  font-weight: 700 !important;
}

.l-bold {
  font-weight: 900 !important;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

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

@media (min-width: 429px) {
  .middle-pc-only {
    display: block;
  }
}

@media (max-width: 428px) {
  .middle-pc-only {
    display: none;
  }
}

.middle-only {
  display: none;
}

@media (max-width: 428px) {
  .middle-only {
    display: block;
  }
}

.thanks h1 {
  color: #FF0096;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
}
/*# sourceMappingURL=style.css.map */