@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap");
.wp-die-message, p {
  font-size: 18px;
  line-height: 1.5;
  margin: 1em 0;
}

.wp-site-blocks {
  padding-top: 0;
  padding-bottom: var(--wp--style--root--padding-bottom);
}

.home-main {
  margin-top: 0;
}

.wp-block-group {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

#appeal {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

:root {
  --base-color:#ffffff;
  --primary-color:#29323D;
  --secondary-color:#d0ff00;
  --size-xx-large:clamp(60px, 8vw, 72px);
  --size-x-large:clamp(44px, 6.5vw, 60px);
  --size-large:clamp(32px, 5.625vw, 45px);
  --size-medium:clamp(24px, 4vw, 32px);
  --size-small:clamp(20px, 3vw, 24px);
  --size-x-small:clamp(16px, 2.5vw, 20px);
  --color-red:rgb(245, 102, 157);
  --color-blue:rgb(87, 208, 214);
  --color-green:#d0ff00;
  --color-yellow:rgb(251, 218, 72);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--primary-color);
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

a {
  color: var(--primary-color);
}

.primary-bg a {
  color: var(--base-color);
}

.no-underbar {
  color: var(--primary-color);
  text-decoration: none;
}

ul {
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}

li {
  margin-bottom: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

h1, .site-title {
  font-size: 32px;
  font-size: clamp(32px, 5.625vw, 45px);
  min-height: 0vw;
  font-weight: 900;
}

h2 {
  font-size: 24px;
  font-size: clamp(24px, 4vw, 32px);
  min-height: 0vw;
  font-weight: 900;
}

h3, .site-description, .nav-title {
  font-size: 20px;
  font-size: clamp(20px, 3vw, 24px);
  min-height: 0vw;
  font-weight: 900;
}

h4, .nav-menu {
  font-size: 16px;
  font-size: clamp(16px, 2.5vw, 20px);
  min-height: 0vw;
}

p {
  line-height: 1.8em;
}

.red {
  background-color: var(--color-red);
}

.blue {
  background-color: var(--color-blue);
}

.green {
  background-color: var(--color-green);
}

.yellow {
  background-color: var(--color-yellow);
}

hr {
  border: 5px solid var(--primary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3vh 5vw;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.marker {
  background: linear-gradient(transparent 60%, var(--secondary-color) 60%);
}

/*--------------------

header

--------------------*/
header {
  border-top: var(--primary-color) 20px solid;
  border-left: var(--secondary-color) 20px solid;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

header .logo-area {
  text-align: center;
}

header .recommend {
  width: 80px;
  font-size: 2.5em;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 900;
  text-align: center;
  padding: 1vh;
  box-sizing: content-box;
  border: 12px solid var(--primary-color);
  border-right: 12px solid var(--secondary-color);
  border-bottom: 12px solid var(--secondary-color);
  margin: 0 auto;
}

header .gloval-navigation ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  list-style-type: none;
  align-items: baseline;
}

header .gloval-navigation ul li {
  padding: 3vh 3vw;
}

header .gloval-navigation li a {
  display: block;
  text-align: center;
}

header .gloval-navigation li a::before {
  display: block;
  margin: 0 auto;
  font-size: var(--size-x-large);
  font-weight: 900;
  font-style: italic;
}

header .gloval-navigation .menu-about::before {
  content: "01";
}

header .gloval-navigation .menu-price::before {
  content: "02";
}

header .gloval-navigation .menu-service::before {
  content: "03";
}

header .charactor img {
  width: 100px;
}

/*--------------------

contact

--------------------*/
.contact .items {
  display: flex;
  align-items: center;
}

.contact h2 {
  border: 0;
  width: 35vw;
  padding-bottom: 0;
  padding-left: 0;
}

.contact nav {
  width: 65vw;
}

.contact ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1em;
}

.contact ul li {
  width: clamp(33px, 3vw, 50px);
}

.contact ul li a img {
  width: 100%;
}

/*--------------------

togglemenu

--------------------*/
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition: width 0.3s;
  z-index: 998;
}

.menu.open {
  width: 100vw;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu ul li {
  margin: 20px 0;
}

.menu ul li a {
  text-decoration: none;
}

.menu ul li a:hover {
  color: #333;
}

.menu-toggle {
  position: absolute;
  right: 10%;
  top: 15%;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
}

.menu-toggle p {
  font-size: 16px;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.menu-toggle span:first-child {
  transform-origin: center center;
}

.menu-toggle span:nth-child(2) {
  transform-origin: center center;
  margin-top: 5px;
}

.menu-toggle.open span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*--------------------

button-animation

--------------------*/
.btn {
  display: inline-block;
  padding: 1em;
  width: 100%;
  border: 6px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
  font-size: var(--size-small);
}

.btn:hover {
  background: var(--color-blue);
  color: var(--base-color);
}

.btn-group {
  width: 100%;
}

.conversion-btn-area {
  width: 100%;
  text-align: center;
}

.conversion-btn {
  background-color: var(--secondary-color);
}

/*--------------------

button-group

--------------------*/
.btn-group {
  display: flex;
  gap: 3vw;
  margin-bottom: 8vw;
}

/*--------------------

 accordion

 --------------------*/
.c-accordion {
  width: 100%;
  margin-left: auto;
  border-style: solid;
  border-width: 3px;
  border-color: var(--primary-color);
  padding: clamp(16px, 2.5vw, 20px);
  margin-bottom: 0;
}

.c-accordion_ttl {
  list-style-type: none;
  position: relative;
}

.c-accordion_ttl::before {
  content: url(assets/images/plus.svg);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(24px, 4vw, 32px);
  height: auto;
  transition: transform 0.3s ease;
}

.c-accordion[open] .c-accordion_ttl::before {
  transform: translateY(-50%) rotate(45deg);
}

.c-accordion_ttl .summary-text {
  margin-left: min(10vw, 50px);
  margin-bottom: 0.5em;
}

/*swiper*/
.swiper {
  margin-top: 5vw;
  margin-bottom: 5vw;
}

@media screen and (min-width: 768px) {
  .swiper {
    margin: 5vw;
  }
}
/* 全体のスタイル */
.swiper-wrapper {
  width: 100%;
  height: min(80vw, 500px);
}

/* 全スライド共通スタイル */
.swiper-slide {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  background-size: cover;
  padding: 20px;
}

.slide-title {
  font-size: 32px;
  font-size: clamp(32px, 5.625vw, 45px);
}

.slide01 {
  background-color: #EECB27;
  background-image: url(assets/images/card/leonard-ai-01.jpg);
}

.slide02 {
  background-color: #E13239;
  background-image: url(assets/images/card/leonard-ai-02.jpg);
}

.slide03 {
  background-color: #1F1762;
  background-image: url(assets/images/card/leonard-ai-03.jpg);
}

.slide04 {
  background-color: #BEDAE5;
  background-image: url(assets/images/card/leonard-ai-04.jpg);
}

.slide05 {
  background-color: #BEDAE5;
  background-image: url(assets/images/card/leonard-ai-05.jpg);
}

.slide06 {
  background-color: #BEDAE5;
  background-image: url(assets/images/card/leonard-ai-06.jpg);
}

.checklist {
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5em;
  font-size: var(--size-small);
}

.checklist li:before {
  content: "";
  display: inline-block;
  width: var(--size-small);
  height: var(--size-small);
  background-color: var(--primary-color);
  background-image: url(assets/images/icon/icon-check.svg);
  background-size: contain;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/*--------------------

simple Menbership

--------------------*/
.swpm-login-widget-form input {
  width: 100%;
  padding: 1em;
  max-width: 400px;
  border: 6px solid var(--primary-color);
}

.swpm-login-submit .swpm-login-form-submit {
  width: 100%;
  padding: 1em;
  background-color: var(--secondary-color);
  max-width: 400px;
  border: 6px solid var(--primary-color);
  transition: 0.3s;
  font-size: var(--size-small);
}

.swpm-login-submit .swpm-login-form-submit:hover {
  background-color: var(--color-blue);
  color: var(--base-color);
}

#swpm-rememberme {
  width: auto;
}

.stripe-button-el {
  width: 100%;
  padding: 1em;
  background-color: var(--secondary-color);
  background-image: none;
  max-width: 400px;
  border: 6px solid var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
  font-size: var(--size-small);
}

.stripe-button-el span {
  width: 100%;
  background-color: var(--secondary-color);
  max-width: 400px;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
  font-size: var(--size-small);
}

.stripe-button-el:hover {
  background-color: var(--color-blue);
  color: var(--base-color);
}

.swpm-registration-widget-form input[type=text], .swpm-registration-widget-form input[type=password] {
  width: 95%;
  position: relative;
  width: 100%;
  padding: 1em;
  max-width: 400px;
  border: 6px solid var(--primary-color);
}

.swpm-registration-submit {
  width: 100%;
  padding: 1em;
  background-color: var(--secondary-color);
  background-image: none;
  max-width: 400px;
  border: 6px solid var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
  font-size: var(--size-small);
}

.swpm-registration-submit:hover {
  background-color: var(--color-blue);
  color: var(--base-color);
}

main h2 {
  padding: 2vw;
  padding-left: 0;
  font-size: clamp(32px, 5.625vw, 45px);
  letter-spacing: 0.1em;
}

main h3 {
  margin-bottom: 6vh;
}

main h4 {
  padding: 0.5vw;
}

main p, aside p {
  margin-bottom: 6vh;
}

.description {
  color: #fff;
  background-color: var(--wp--preset--color--secondary);
  background-image: linear-gradient(to right, var(--color-blue) 0%, var(--secondary-color) 100%);
  margin-bottom: 3rem;
}

.home-main .description {
  margin-bottom: 0;
}

.description .btn {
  color: #fff;
  border: 8px solid #fff;
  display: inline-block;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 900;
}

.appeal {
  background-image: url(../assets/images/appera-area-bg.jpg);
  background-position: 0 0;
  animation: scroll-anim 15s linear infinite;
}

@keyframes scroll-anim {
  100% {
    background-position: -1600px 0;
  }
}
main .appeal .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

main .appeal .catchcopy-area {
  margin-bottom: 5vw;
}

main .appeal .catchcopy-sub span {
  display: inline-block;
  border: clamp(3px, 3vw, 6px) solid var(--primary-color);
  width: var(--size-x-large);
  height: var(--size-x-large);
  margin: 0.5vw;
  text-align: center;
  line-height: var(--size-x-large);
  box-sizing: content-box;
  font-size: var(--size-small);
}

main .appeal .text-design {
  background-image: url(../assets/images/text/text-apperl.svg);
  height: clamp(4em, 8vw, 10em);
  width: 100vw;
  background-repeat: repeat-x;
  background-position: 0 0;
  animation: scroll-anim-text 30s linear infinite reverse;
}

@keyframes scroll-anim-text {
  100% {
    background-position: -1600px 0;
  }
}
main .appeal .icon-design {
  background-image: url(../assets/images/icon/icon-fitness.svg);
  height: clamp(4em, 6vw, 10em);
  width: 100vw;
  background-repeat: repeat-x;
  background-position: 0 0;
  animation: scroll-anim-text 10s linear infinite;
}

main .service01 {
  background-color: var(--secondary-color);
}

main .service03 {
  background-color: var(--secondary-color);
}

main .sub {
  padding: 2vw;
}

.xx-large {
  font-size: var(--size-xx-large);
}

.x-large {
  font-size: var(--size-x-large);
}

main .service01 .main::before {
  content: "01";
  display: inline-block;
  font-size: 40px;
  font-size: clamp(40px, 6.5vw, 60px);
  font-weight: 900;
}

main .service02 .main::before {
  content: "02";
  display: inline-block;
  font-size: 40px;
  font-size: clamp(40px, 6.5vw, 60px);
  font-weight: 900;
}

main .service03 .main::before {
  content: "03";
  display: inline-block;
  font-size: 40px;
  font-size: clamp(40px, 6.5vw, 60px);
  font-weight: 900;
}

aside .aside-left {
  max-width: 500px;
}

aside .aside-left img {
  width: 100%;
}

aside .exsample {
  background: var(--secondary-color);
}

aside .potechi .main {
  display: flex;
  justify-content: flex-start;
  gap: 5vw;
  flex-wrap: wrap;
}/*# sourceMappingURL=style.css.map */