@charset "UTF-8";
@media screen and (max-width: 1300px) {
  .lg3-none {
    display: none;
  }
}

.lg3-show {
  display: none;
}
@media screen and (max-width: 1300px) {
  .lg3-show {
    display: block;
  }
}

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

.lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-show {
    display: block;
  }
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .sp2-none {
    display: none;
  }
}

.sp2-show {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp2-show {
    display: block;
  }
}

@media screen and (max-width: 1065px) {
  .hum-none {
    display: none;
  }
}

.hum-show {
  display: none;
}
@media screen and (max-width: 1065px) {
  .hum-show {
    display: block;
  }
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f2f2f2;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  color: transparent;
  height: 100px;
  width: 100%;
  transition: background-color 0.5s ease;
  background-color: transparent;
}
@media screen and (max-width: 1065px) {
  .header {
    height: 63px;
  }
}

.scrolled {
  background-color: #000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.header__name {
  width: 244px;
  margin-right: auto;
  margin-left: 7px;
}
@media screen and (max-width: 768px) {
  .header__name {
    width: 197px;
    margin-left: -16px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  height: inherit;
  display: flex;
}
.header__item {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__item:not(:first-child) {
  margin-left: 38px;
}
@media screen and (max-width: 1440px) {
  .header__item:not(:first-child) {
    margin-left: 36px;
  }
}
@media screen and (max-width: 1300px) {
  .header__item:not(:first-child) {
    margin-left: 21px;
  }
}
@media screen and (max-width: 1240px) {
  .header__item:not(:first-child) {
    margin-left: 1.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .header__item:not(:first-child) {
    margin-left: 1.2vw;
  }
}

.header__link {
  font-size: 12.46px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #fff; /* 初期の文字色 */
  transition: all 0.3s ease; /* 文字色の変化に0.3秒の遷移時間を設定 */
  background: linear-gradient(to right, #fff, #fff); /* 初期の背景色（透明） */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1440px) {
  .header__link {
    font-size: 0.8652vw;
  }
}
@media screen and (max-width: 1300px) {
  .header__link {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 1240px) {
  .header__link {
    font-size: 0.7vw;
  }
}

.header__link--contact {
  background: linear-gradient(to right, #c005df, #ffa800);
  padding: 5px 16px;
  font-size: 12.46px;
  letter-spacing: 0.2em;
  font-weight: 800;
  border-radius: 15px;
  color: #fff; /* 初期の文字色 */
  transition: all 0.3s ease;
}
@media screen and (max-width: 1240px) {
  .header__link--contact {
    font-size: 11px;
  }
}

.header__link--contact:hover {
  transform: scale(1.05);
  opacity: 1;
}

.header__link:hover {
  opacity: 1;
  background: linear-gradient(to right, #c005df, #ffa800); /* ホバー時の背景色（グラデーション） */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: linear-gradient(to right, #c005df, #ffa800); /* ホバー時の文字色（グラデーション） */
}

.header__link--hp {
  background-color: #eb9b00;
  font-size: 16px;
  color: #fff; /* 初期の文字色 */
  letter-spacing: 0.1em;
  line-height: 20px;
  padding: 20px 27px 20px 32px;
  font-weight: 800;
}

.header__link--hp-1::after {
  content: url(../images/vector.png);
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 15px;
  width: 35px;
  height: 25px;
  right: 15px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.3s;
  background-color: white;
}

.hamburger span:nth-child(1) {
  top: 0;
  left: 0;
  width: 60%;
}

.hamburger span:nth-child(2) {
  top: 12.5px;
  opacity: 1;
}

.hamburger span:nth-child(3) {
  top: 25px;
  left: 16px;
  width: 60%;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(-225deg);
  top: 14px;
  left: 7px;
  width: 80%;
}

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

.hamburger.is-active span:nth-child(3) {
  transform: rotate(225deg);
  top: 14px;
  left: 7px;
  width: 80%;
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  display: none;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6941176471);
  width: 55%;
}

.drawer-menu__inner {
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  margin: 60px 5vw 40px;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .drawer-menu__item:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 575px) {
  .drawer-menu__item:not(:first-child) {
    margin-top: 30px;
  }
}

.drawer-menu__link {
  font-size: 14px;
  color: white;
  letter-spacing: 0.1em;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .drawer-menu__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .drawer-menu__link {
    font-size: 12px;
  }
}

.drawer__contact--button {
  background: linear-gradient(45deg, #ffaa04, #c005df);
  padding: 7px 18px;
  border-radius: 16px;
}

.drawer-menu__hp {
  background-color: #eb9b00;
}

.drawer-menu__link_hp {
  font-size: 16px;
  color: white;
  letter-spacing: 0.1em;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.drawer-menu__link_hp_1 {
  padding: 20px 6vw 27px;
}

.drawer-menu__link_hp_2::after {
  content: url(../images/vector_sp.png);
  margin-left: 0.5em;
}

.fv {
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

.fv__inner {
  height: inherit;
  position: relative;
}

.fv__title {
  position: absolute;
  top: 35%;
  left: 0;
  color: white;
  width: 100%;
  z-index: 90;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .fv__title {
    top: 27%;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    top: 40%;
    transform: translateY(-40%);
  }
}
@media screen and (max-width: 575px) {
  .fv__title {
    top: 31.9%;
  }
}

.fv__main-text {
  width: 100%;
  font-size: 70px;
  letter-spacing: 0.3em;
  font-family: Noto serif JP;
  font-weight: 564;
  text-shadow: 0px 0px 10px #000000;
}
@media screen and (max-width: 1024px) {
  .fv__main-text {
    font-size: 7.5vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__main-text {
    font-size: 8vw;
  }
}
@media screen and (max-width: 575px) {
  .fv__main-text {
    font-size: 36px;
  }
}

.fv__sub-text {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 1em;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .fv__sub-text {
    font-size: 10px;
    margin-top: 28px;
    letter-spacing: 0.9em;
  }
}

.fv__paint-img1 {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 0;
  width: 320px;
}
@media screen and (max-width: 1440px) {
  .fv__paint-img1 {
    width: 13vw;
    top: 34%;
  }
}
@media screen and (max-width: 1024px) {
  .fv__paint-img1 {
    width: 30vw;
  }
}
@media screen and (max-width: 575px) {
  .fv__paint-img1 {
    display: none;
  }
}

.fv__paint-img1-sp {
  display: none;
}
@media screen and (max-width: 575px) {
  .fv__paint-img1-sp {
    display: block;
    position: absolute;
    z-index: 2;
    top: 44%;
    left: 0%;
    width: 36vw;
  }
}
@media screen and (max-width: 450px) {
  .fv__paint-img1-sp {
    top: 44%;
    left: 0%;
    width: 39vw;
  }
}

.fv__paint-img2 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 350px;
}
@media screen and (max-width: 1440px) {
  .fv__paint-img2 {
    width: 18vw;
    top: 47%;
  }
}
@media screen and (max-width: 1024px) {
  .fv__paint-img2 {
    width: 30vw;
  }
}
@media screen and (max-width: 575px) {
  .fv__paint-img2 {
    top: 55%;
    width: 46vw;
    left: 5%;
  }
}

.fv__paint-img3 {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: calc(50% - 20vw);
  transform: translate(-50%);
  width: 30vw;
}
@media screen and (max-width: 1440px) {
  .fv__paint-img3 {
    width: 35vw;
    top: 21%;
    left: calc(50% - 24vw);
  }
}
@media screen and (max-width: 1024px) {
  .fv__paint-img3 {
    width: 45vw;
  }
}
@media screen and (max-width: 575px) {
  .fv__paint-img3 {
    top: 43%;
    left: 107%;
    width: 72vw;
  }
}

.fv__paint-img4 {
  position: absolute;
  z-index: 2;
  top: 5%;
  left: calc(50% - 15vw);
  transform: translate(-50%);
  width: 25vw;
}
@media screen and (max-width: 1440px) {
  .fv__paint-img4 {
    width: 300px;
    top: 11%;
    left: calc(50% - 14vw);
  }
}
@media screen and (max-width: 1024px) {
  .fv__paint-img4 {
    width: 40vw;
  }
}
@media screen and (max-width: 575px) {
  .fv__paint-img4 {
    display: none;
  }
}

.fv__paint-img5 {
  position: absolute;
  top: calc(50% - 20vh);
  right: calc(50% - 300px);
  transform: translate(50%);
  z-index: 2;
  width: 500px;
  transition: right 1s;
}
@media screen and (max-width: 1440px) {
  .fv__paint-img5 {
    right: calc(50% - 214px);
    top: calc(50% - 146px);
    width: 34vw;
  }
}
@media screen and (max-width: 1240px) {
  .fv__paint-img5 {
    right: calc(50% - 230px);
    top: calc(50% - 110px);
    width: 34vw;
  }
}
@media screen and (max-width: 1024px) {
  .fv__paint-img5 {
    top: calc(50% - 115px);
    width: 430px;
  }
}
@media screen and (max-width: 768px) {
  .fv__paint-img5 {
    top: calc(50% - 120px);
    right: calc(50% - 200px);
  }
}
@media screen and (max-width: 575px) {
  .fv__paint-img5 {
    top: -5%;
    right: 14%;
    width: 241px;
  }
}

.fv__paint-img6 {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 0;
  width: 700px;
}
@media screen and (max-width: 1440px) {
  .fv__paint-img6 {
    width: 45vw;
    top: 12%;
  }
}
@media screen and (max-width: 1024px) {
  .fv__paint-img6 {
    width: 35vw;
  }
}
@media screen and (max-width: 575px) {
  .fv__paint-img6 {
    display: none;
  }
}

.fv__paint-img6-sp {
  display: none;
}
@media screen and (max-width: 575px) {
  .fv__paint-img6-sp {
    display: block;
    position: absolute;
    z-index: 2;
    top: 15%;
    left: 0;
    width: 98vw;
  }
}
@media screen and (max-width: 450px) {
  .fv__paint-img6-sp {
    top: 18%;
    left: -8%;
    width: 112vw;
  }
}
@media screen and (max-width: 375px) {
  .fv__paint-img6-sp {
    top: 21%;
  }
}

.fv__paint-img7 {
  position: absolute;
  z-index: 2;
  top: 27%;
  right: 0;
  width: 400px;
}
@media screen and (max-width: 1440px) {
  .fv__paint-img7 {
    width: 17vw;
    top: 27%;
    right: -15px;
  }
}
@media screen and (max-width: 1024px) {
  .fv__paint-img7 {
    width: 35vw;
  }
}
@media screen and (max-width: 575px) {
  .fv__paint-img7 {
    display: none;
  }
}

.fv__paint-img1 {
  -webkit-animation: revealRightToLeft 0.1s ease-out forwards;
          animation: revealRightToLeft 0.1s ease-out forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /* Right 100% means the image is initially fully hidden */
}

.fv__paint-img1-sp {
  -webkit-animation: revealRightToLeft 0.1s ease-out forwards;
          animation: revealRightToLeft 0.1s ease-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /* Right 100% means the image is initially fully hidden */
}
@media screen and (max-width: 575px) {
  .fv__paint-img1-sp {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
}

.fv__paint-img2 {
  -webkit-animation: revealRightToLeft 0.1s ease-out forwards;
          animation: revealRightToLeft 0.1s ease-out forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /* Right 100% means the image is initially fully hidden */
}
@media screen and (max-width: 575px) {
  .fv__paint-img2 {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
}

.fv__paint-img3 {
  -webkit-animation: revealRightToLeft 0.1s ease-out forwards;
          animation: revealRightToLeft 0.1s ease-out forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /* Left 100% means the image is initially fully hidden */
}
@media screen and (max-width: 575px) {
  .fv__paint-img3 {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%); /* Left 100% means the image is initially fully hidden */
  }
}

.fv__paint-img4 {
  -webkit-animation: revealLeftToRight 0.1s ease-out forwards;
          animation: revealLeftToRight 0.1s ease-out forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%); /* Right 100% means the image is initially fully hidden */
}

.fv__paint-img5 {
  -webkit-animation: revealLeftToRight 0.2s ease-out forwards;
          animation: revealLeftToRight 0.2s ease-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%); /* Left 100% means the image is initially fully hidden */
}
@media screen and (max-width: 575px) {
  .fv__paint-img5 {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
}

.fv__paint-img6 {
  -webkit-animation: revealLeftToRight 0.2s ease-out forwards;
          animation: revealLeftToRight 0.2s ease-out forwards;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%); /* Left 100% means the image is initially fully hidden */
}

.fv__paint-img6-sp {
  -webkit-animation: revealLeftToRight 0.2s ease-out forwards;
          animation: revealLeftToRight 0.2s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%); /* Left 100% means the image is initially fully hidden */
}
@media screen and (max-width: 575px) {
  .fv__paint-img6-sp {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
}

.fv__paint-img7 {
  -webkit-animation: revealLeftToRight 0.1s ease-out forwards;
          animation: revealLeftToRight 0.1s ease-out forwards;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%); /* Left 100% means the image is initially fully hidden */
}

@-webkit-keyframes revealRightToLeft {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* Right 0% means the image is fully visible */
  }
}

@keyframes revealRightToLeft {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* Right 0% means the image is fully visible */
  }
}
@-webkit-keyframes revealLeftToRight {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* Left 0% means the image is fully visible */
  }
}
@keyframes revealLeftToRight {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* Left 0% means the image is fully visible */
  }
}
.fv__women {
  position: absolute;
  height: inherit;
  top: 14vh;
  left: 49.5%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 700px;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .fv__women {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .fv__women {
    top: 0;
    width: 100%;
  }
}

.fv__women img {
  height: 88vh;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .fv__women img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 88vh;
  }
}

.fv__bottom-wrap {
  position: absolute;
  z-index: 2;
  bottom: 9%;
  left: 6%;
}
@media screen and (max-width: 768px) {
  .fv__bottom-wrap {
    bottom: 5.5%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.fv__bottom-text {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 21.35px;
  letter-spacing: 0.22em;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .fv__bottom-text {
    margin-top: 32px;
    margin-left: 17px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

.fv__bottom-text-small {
  font-size: 10px;
}

.fv__bottom-button-wrap {
  display: flex;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .fv__bottom-button-wrap {
    margin-top: 0;
  }
}

.fv__bottom-button {
  display: inline-block;
  background-color: #fff;
  width: 158px;
  height: 86px;
  border-radius: 10px;
  position: relative;
  transition: all 0.1s;
}
@media screen and (max-width: 768px) {
  .fv__bottom-button {
    width: 125px;
    height: 63px;
  }
}

.fv__bottom-button::after {
  position: absolute;
  content: "";
  width: 108%;
  height: 113%;
  bottom: -6px;
  left: -6px;
  background: linear-gradient(120deg, #ffa800, #c005df);
  z-index: -1;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .fv__bottom-button::after {
    width: 108%;
    height: 113%;
    bottom: -4px;
    left: -4px;
  }
}

.fv__button-hover {
  transition: all 0.3s ease;
}

.fv__button-hover:hover {
  transform: scale(1.05);
  opacity: 1;
}

.fv__bottom-button:hover {
  opacity: 1;
}

.button1 {
  margin-right: 30px;
}

.fv__bottom-button-text {
  font-size: 15px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  letter-spacing: 0.15em;
  font-weight: 800;
  transition: all 0.3s ease; /* 文字色の変化に0.3秒の遷移時間を設定 */
  background: linear-gradient(to right, #fff, #fff); /* 初期の背景色（透明） */
  -webkit-background-clip: text;
  color: #000;
}
@media screen and (max-width: 768px) {
  .fv__bottom-button-text {
    letter-spacing: 0.1em;
    font-size: 12.36px;
  }
}

.fv__bottom-button-text:hover {
  background: linear-gradient(to right, #c005df, #ffa800); /* ホバー時の背景色（グラデーション） */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: linear-gradient(to right, #c005df, #ffa800); /* ホバー時の文字色（グラデーション） */
}

.fv__arrow {
  position: absolute;
  z-index: 2;
  bottom: 6%;
  left: 51%;
  transform: translateX(-50%);
  width: 55px;
}
@media screen and (max-width: 1024px) {
  .fv__arrow {
    bottom: 2%;
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fv__arrow {
    bottom: 27%;
    width: 45px;
  }
}

.guide {
  margin-top: 96px;
}

.guide__inner {
  max-width: 685px;
  margin: 0 auto;
}

.guide__title {
  text-align: center;
  font-weight: 500;
  font-size: 21.33px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .guide__title {
    font-size: 20px;
  }
}

.guide__item-wrap {
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .guide__item-wrap {
    margin-top: 40px;
  }
}

.guide__items {
  display: flex;
  justify-content: space-around;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .guide__items {
    padding: 0 28px;
    max-width: 450px;
  }
}

.guide__item-left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .guide__item-left {
    margin-right: 27px;
  }
}

.guide__item-right {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .guide__item-right {
    margin-top: 80px;
  }
}

.guide__item {
  background-color: #fff;
  height: 156px;
  max-width: 230px;
  width: 100%;
  position: relative;
  padding: 10px 28px 15px;
}
@media screen and (max-width: 768px) {
  .guide__item {
    max-width: 153px;
    height: auto;
    padding: 5px 5px 15px;
  }
}

.guide__item-anime:not(:first-child) {
  margin-top: 30px;
}

.guide__item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #c005df, #ffa800);
  z-index: -1;
}

.guide__item:not(:first-child) {
  margin-top: 30px;
}

.guide__item-title {
  text-align: center;
  font-weight: 700;
  font-size: 17.68px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .guide__item-title {
    font-size: 11px;
  }
}

.guide__item-title-big {
  font-size: 28.18px;
}
@media screen and (max-width: 768px) {
  .guide__item-title-big {
    font-size: 18px;
  }
}

.guide__item-text {
  font-size: 12.22px;
  letter-spacing: 0.05em;
  min-height: 80px;
  line-height: 1.662;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
}
@media screen and (max-width: 768px) {
  .guide__item-text {
    font-size: 8px;
    width: 100%;
    min-height: 66px;
    margin-top: 0;
    padding: 0 10px;
  }
}

.guide__item-text.guide__item-text3 {
  font-size: 12.22px;
  letter-spacing: 0.05em;
  min-height: 80px;
  line-height: 1.662;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
}
@media screen and (max-width: 768px) {
  .guide__item-text.guide__item-text3 {
    font-size: 8px;
    width: 100%;
    min-height: 66px;
    margin-top: 0;
    padding: 0 15px;
  }
}

.guide__subtitle {
  text-align: center;
  margin-top: 74px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .guide__subtitle {
    margin-top: 60px;
    margin-left: 0px;
  }
}

.guide__subtitle-text {
  font-size: 26.41px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .guide__subtitle-text {
    font-size: 22px;
  }
}

.guide__subtitle-text-import {
  font-weight: 700;
}

.guide__button {
  text-align: center;
  margin-top: 58px;
}

.about {
  margin-top: 97px;
  background-image: url(../images/bg-about.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
  padding: 220px 0 176px;
}
@media screen and (max-width: 1024px) {
  .about__inner {
    display: block;
    padding: 81px 0;
  }
}

.about__logo {
  max-width: 244px;
  margin-right: 100px;
}
@media screen and (max-width: 1024px) {
  .about__logo {
    width: 40vw;
    margin: 0 auto;
    padding-right: 0;
  }
}

.about__text-wrap {
  color: white;
  margin-top: 10px;
  max-width: 510px;
}
@media screen and (max-width: 1024px) {
  .about__text-wrap {
    text-align: center;
    margin-top: 58px;
    width: 100%;
    max-width: 100%;
  }
}

.about__text {
  font-size: 37.268px;
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .about__text {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 24px;
  }
}

.about__subtext {
  font-size: 15.06px;
  margin-top: 38px;
  letter-spacing: 0.3em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about__subtext {
    font-size: 14px;
  }
}

.feature {
  background: #000;
}

.feature__inner {
  padding-top: 113px;
}
@media screen and (max-width: 768px) {
  .feature__inner {
    padding-top: 60px;
  }
}

.feature__title {
  color: white;
  text-align: center;
  font-weight: 900;
  margin-left: 17px;
}
@media screen and (max-width: 768px) {
  .feature__title {
    margin-left: 0;
  }
}

.feature__main-title {
  font-size: 33.5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .feature__main-title {
    font-size: 25.6px;
  }
}
@media screen and (max-width: 375px) {
  .feature__main-title {
    font-size: 5vw;
  }
}

.feature__sub-title {
  font-size: 18px;
  margin-top: 1px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .feature__sub-title {
    font-size: 13.65px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 375px) {
  .feature__sub-title {
    font-size: 3vw;
  }
}

.feature__circle-wrap {
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature__circle-wrap {
    margin-top: 90px;
  }
}

@-webkit-keyframes slideShow {
  0% {
    background-image: url("../images/tensen1_720.png");
  }
  2% {
    background-image: url("../images/tensen2_720.png");
  }
  4% {
    background-image: url("../images/tensen1_720.png");
  }
  6% {
    background-image: url("../images/tensen2_720.png");
  }
  8% {
    background-image: url("../images/tensen1_720.png");
  }
  10% {
    background-image: url("../images/tensen2_720.png");
  }
  12% {
    background-image: url("../images/tensen1_720.png");
  }
  14% {
    background-image: url("../images/tensen2_720.png");
  }
  16% {
    background-image: url("../images/tensen1_720.png");
  }
  18% {
    background-image: url("../images/tensen2_720.png");
  }
  20% {
    background-image: url("../images/tensen1_720.png");
  }
  22% {
    background-image: url("../images/tensen2_720.png");
  }
  24% {
    background-image: url("../images/tensen1_720.png");
  }
  26% {
    background-image: url("../images/tensen2_720.png");
  }
  28% {
    background-image: url("../images/tensen1_720.png");
  }
  30% {
    background-image: url("../images/tensen2_720.png");
  }
  32% {
    background-image: url("../images/tensen1_720.png");
  }
  34% {
    background-image: url("../images/tensen2_720.png");
  }
  36% {
    background-image: url("../images/tensen1_720.png");
  }
  38% {
    background-image: url("../images/tensen2_720.png");
  }
  40% {
    background-image: url("../images/tensen1_720.png");
  }
  42% {
    background-image: url("../images/tensen2_720.png");
  }
  44% {
    background-image: url("../images/tensen1_720.png");
  }
  46% {
    background-image: url("../images/tensen2_720.png");
  }
  48% {
    background-image: url("../images/tensen1_720.png");
  }
  50% {
    background-image: url("../images/tensen2_720.png");
  }
  52% {
    background-image: url("../images/tensen1_720.png");
  }
  54% {
    background-image: url("../images/tensen2_720.png");
  }
  56% {
    background-image: url("../images/tensen1_720.png");
  }
  58% {
    background-image: url("../images/tensen2_720.png");
  }
  60% {
    background-image: url("../images/tensen1_720.png");
  }
  62% {
    background-image: url("../images/tensen2_720.png");
  }
  64% {
    background-image: url("../images/tensen1_720.png");
  }
  66% {
    background-image: url("../images/tensen2_720.png");
  }
  68% {
    background-image: url("../images/tensen1_720.png");
  }
  70% {
    background-image: url("../images/tensen2_720.png");
  }
  72% {
    background-image: url("../images/tensen1_720.png");
  }
  74% {
    background-image: url("../images/tensen2_720.png");
  }
  78% {
    background-image: url("../images/tensen1_720.png");
  }
  80% {
    background-image: url("../images/tensen2_720.png");
  }
  82% {
    background-image: url("../images/tensen1_720.png");
  }
  84% {
    background-image: url("../images/tensen2_720.png");
  }
  86% {
    background-image: url("../images/tensen1_720.png");
  }
  88% {
    background-image: url("../images/tensen2_720.png");
  }
  90% {
    background-image: url("../images/tensen1_720.png");
  }
  92% {
    background-image: url("../images/tensen2_720.png");
  }
  94% {
    background-image: url("../images/tensen1_720.png");
  }
  96% {
    background-image: url("../images/tensen2_720.png");
  }
  98% {
    background-image: url("../images/tensen1_720.png");
  }
  100% {
    background-image: url("../images/tensen2_720.png");
  }
}

@keyframes slideShow {
  0% {
    background-image: url("../images/tensen1_720.png");
  }
  2% {
    background-image: url("../images/tensen2_720.png");
  }
  4% {
    background-image: url("../images/tensen1_720.png");
  }
  6% {
    background-image: url("../images/tensen2_720.png");
  }
  8% {
    background-image: url("../images/tensen1_720.png");
  }
  10% {
    background-image: url("../images/tensen2_720.png");
  }
  12% {
    background-image: url("../images/tensen1_720.png");
  }
  14% {
    background-image: url("../images/tensen2_720.png");
  }
  16% {
    background-image: url("../images/tensen1_720.png");
  }
  18% {
    background-image: url("../images/tensen2_720.png");
  }
  20% {
    background-image: url("../images/tensen1_720.png");
  }
  22% {
    background-image: url("../images/tensen2_720.png");
  }
  24% {
    background-image: url("../images/tensen1_720.png");
  }
  26% {
    background-image: url("../images/tensen2_720.png");
  }
  28% {
    background-image: url("../images/tensen1_720.png");
  }
  30% {
    background-image: url("../images/tensen2_720.png");
  }
  32% {
    background-image: url("../images/tensen1_720.png");
  }
  34% {
    background-image: url("../images/tensen2_720.png");
  }
  36% {
    background-image: url("../images/tensen1_720.png");
  }
  38% {
    background-image: url("../images/tensen2_720.png");
  }
  40% {
    background-image: url("../images/tensen1_720.png");
  }
  42% {
    background-image: url("../images/tensen2_720.png");
  }
  44% {
    background-image: url("../images/tensen1_720.png");
  }
  46% {
    background-image: url("../images/tensen2_720.png");
  }
  48% {
    background-image: url("../images/tensen1_720.png");
  }
  50% {
    background-image: url("../images/tensen2_720.png");
  }
  52% {
    background-image: url("../images/tensen1_720.png");
  }
  54% {
    background-image: url("../images/tensen2_720.png");
  }
  56% {
    background-image: url("../images/tensen1_720.png");
  }
  58% {
    background-image: url("../images/tensen2_720.png");
  }
  60% {
    background-image: url("../images/tensen1_720.png");
  }
  62% {
    background-image: url("../images/tensen2_720.png");
  }
  64% {
    background-image: url("../images/tensen1_720.png");
  }
  66% {
    background-image: url("../images/tensen2_720.png");
  }
  68% {
    background-image: url("../images/tensen1_720.png");
  }
  70% {
    background-image: url("../images/tensen2_720.png");
  }
  72% {
    background-image: url("../images/tensen1_720.png");
  }
  74% {
    background-image: url("../images/tensen2_720.png");
  }
  78% {
    background-image: url("../images/tensen1_720.png");
  }
  80% {
    background-image: url("../images/tensen2_720.png");
  }
  82% {
    background-image: url("../images/tensen1_720.png");
  }
  84% {
    background-image: url("../images/tensen2_720.png");
  }
  86% {
    background-image: url("../images/tensen1_720.png");
  }
  88% {
    background-image: url("../images/tensen2_720.png");
  }
  90% {
    background-image: url("../images/tensen1_720.png");
  }
  92% {
    background-image: url("../images/tensen2_720.png");
  }
  94% {
    background-image: url("../images/tensen1_720.png");
  }
  96% {
    background-image: url("../images/tensen2_720.png");
  }
  98% {
    background-image: url("../images/tensen1_720.png");
  }
  100% {
    background-image: url("../images/tensen2_720.png");
  }
}
@-webkit-keyframes slideShow2 {
  0% {
    background-image: url("../images/tensen1-sp.png");
  }
  2% {
    background-image: url("../images/tensen2-sp.png");
  }
  4% {
    background-image: url("../images/tensen1-sp.png");
  }
  6% {
    background-image: url("../images/tensen2-sp.png");
  }
  8% {
    background-image: url("../images/tensen1-sp.png");
  }
  10% {
    background-image: url("../images/tensen2-sp.png");
  }
  12% {
    background-image: url("../images/tensen1-sp.png");
  }
  14% {
    background-image: url("../images/tensen2-sp.png");
  }
  16% {
    background-image: url("../images/tensen1-sp.png");
  }
  18% {
    background-image: url("../images/tensen2-sp.png");
  }
  20% {
    background-image: url("../images/tensen1-sp.png");
  }
  22% {
    background-image: url("../images/tensen2-sp.png");
  }
  24% {
    background-image: url("../images/tensen1-sp.png");
  }
  26% {
    background-image: url("../images/tensen2-sp.png");
  }
  28% {
    background-image: url("../images/tensen1-sp.png");
  }
  30% {
    background-image: url("../images/tensen2-sp.png");
  }
  32% {
    background-image: url("../images/tensen1-sp.png");
  }
  34% {
    background-image: url("../images/tensen2-sp.png");
  }
  36% {
    background-image: url("../images/tensen1-sp.png");
  }
  38% {
    background-image: url("../images/tensen2-sp.png");
  }
  40% {
    background-image: url("../images/tensen1-sp.png");
  }
  42% {
    background-image: url("../images/tensen2-sp.png");
  }
  44% {
    background-image: url("../images/tensen1-sp.png");
  }
  46% {
    background-image: url("../images/tensen2-sp.png");
  }
  48% {
    background-image: url("../images/tensen1-sp.png");
  }
  50% {
    background-image: url("../images/tensen2-sp.png");
  }
  52% {
    background-image: url("../images/tensen1-sp.png");
  }
  54% {
    background-image: url("../images/tensen2-sp.png");
  }
  56% {
    background-image: url("../images/tensen1-sp.png");
  }
  58% {
    background-image: url("../images/tensen2-sp.png");
  }
  60% {
    background-image: url("../images/tensen1-sp.png");
  }
  62% {
    background-image: url("../images/tensen2-sp.png");
  }
  64% {
    background-image: url("../images/tensen1-sp.png");
  }
  66% {
    background-image: url("../images/tensen2-sp.png");
  }
  68% {
    background-image: url("../images/tensen1-sp.png");
  }
  70% {
    background-image: url("../images/tensen2-sp.png");
  }
  72% {
    background-image: url("../images/tensen1-sp.png");
  }
  74% {
    background-image: url("../images/tensen2-sp.png");
  }
  78% {
    background-image: url("../images/tensen1-sp.png");
  }
  80% {
    background-image: url("../images/tensen2-sp.png");
  }
  82% {
    background-image: url("../images/tensen1-sp.png");
  }
  84% {
    background-image: url("../images/tensen2-sp.png");
  }
  86% {
    background-image: url("../images/tensen1-sp.png");
  }
  88% {
    background-image: url("../images/tensen2-sp.png");
  }
  90% {
    background-image: url("../images/tensen1-sp.png");
  }
  92% {
    background-image: url("../images/tensen2-sp.png");
  }
  94% {
    background-image: url("../images/tensen1-sp.png");
  }
  96% {
    background-image: url("../images/tensen2-sp.png");
  }
  98% {
    background-image: url("../images/tensen1-sp.png");
  }
  100% {
    background-image: url("../images/tensen2-sp.png");
  }
}
@keyframes slideShow2 {
  0% {
    background-image: url("../images/tensen1-sp.png");
  }
  2% {
    background-image: url("../images/tensen2-sp.png");
  }
  4% {
    background-image: url("../images/tensen1-sp.png");
  }
  6% {
    background-image: url("../images/tensen2-sp.png");
  }
  8% {
    background-image: url("../images/tensen1-sp.png");
  }
  10% {
    background-image: url("../images/tensen2-sp.png");
  }
  12% {
    background-image: url("../images/tensen1-sp.png");
  }
  14% {
    background-image: url("../images/tensen2-sp.png");
  }
  16% {
    background-image: url("../images/tensen1-sp.png");
  }
  18% {
    background-image: url("../images/tensen2-sp.png");
  }
  20% {
    background-image: url("../images/tensen1-sp.png");
  }
  22% {
    background-image: url("../images/tensen2-sp.png");
  }
  24% {
    background-image: url("../images/tensen1-sp.png");
  }
  26% {
    background-image: url("../images/tensen2-sp.png");
  }
  28% {
    background-image: url("../images/tensen1-sp.png");
  }
  30% {
    background-image: url("../images/tensen2-sp.png");
  }
  32% {
    background-image: url("../images/tensen1-sp.png");
  }
  34% {
    background-image: url("../images/tensen2-sp.png");
  }
  36% {
    background-image: url("../images/tensen1-sp.png");
  }
  38% {
    background-image: url("../images/tensen2-sp.png");
  }
  40% {
    background-image: url("../images/tensen1-sp.png");
  }
  42% {
    background-image: url("../images/tensen2-sp.png");
  }
  44% {
    background-image: url("../images/tensen1-sp.png");
  }
  46% {
    background-image: url("../images/tensen2-sp.png");
  }
  48% {
    background-image: url("../images/tensen1-sp.png");
  }
  50% {
    background-image: url("../images/tensen2-sp.png");
  }
  52% {
    background-image: url("../images/tensen1-sp.png");
  }
  54% {
    background-image: url("../images/tensen2-sp.png");
  }
  56% {
    background-image: url("../images/tensen1-sp.png");
  }
  58% {
    background-image: url("../images/tensen2-sp.png");
  }
  60% {
    background-image: url("../images/tensen1-sp.png");
  }
  62% {
    background-image: url("../images/tensen2-sp.png");
  }
  64% {
    background-image: url("../images/tensen1-sp.png");
  }
  66% {
    background-image: url("../images/tensen2-sp.png");
  }
  68% {
    background-image: url("../images/tensen1-sp.png");
  }
  70% {
    background-image: url("../images/tensen2-sp.png");
  }
  72% {
    background-image: url("../images/tensen1-sp.png");
  }
  74% {
    background-image: url("../images/tensen2-sp.png");
  }
  78% {
    background-image: url("../images/tensen1-sp.png");
  }
  80% {
    background-image: url("../images/tensen2-sp.png");
  }
  82% {
    background-image: url("../images/tensen1-sp.png");
  }
  84% {
    background-image: url("../images/tensen2-sp.png");
  }
  86% {
    background-image: url("../images/tensen1-sp.png");
  }
  88% {
    background-image: url("../images/tensen2-sp.png");
  }
  90% {
    background-image: url("../images/tensen1-sp.png");
  }
  92% {
    background-image: url("../images/tensen2-sp.png");
  }
  94% {
    background-image: url("../images/tensen1-sp.png");
  }
  96% {
    background-image: url("../images/tensen2-sp.png");
  }
  98% {
    background-image: url("../images/tensen1-sp.png");
  }
  100% {
    background-image: url("../images/tensen2-sp.png");
  }
}
#feature-circle {
  max-width: 888px;
  width: 100%;
  height: 785px;
  margin: 35px auto 0;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: slideShow 20s infinite;
          animation: slideShow 20s infinite;
}
@media screen and (max-width: 1024px) {
  #feature-circle {
    max-width: 750px;
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  #feature-circle {
    max-width: 400px;
    width: 100%;
    height: 900px;
    -webkit-animation: slideShow2 20s infinite;
            animation: slideShow2 20s infinite;
  }
}
@media screen and (max-width: 575px) {
  #feature-circle {
    max-width: 325px;
    height: 800px;
  }
}
@media screen and (max-width: 450px) {
  #feature-circle {
    height: 620px;
    max-width: 250px;
  }
}

@-webkit-keyframes paintImageTopToBottom {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes paintImageTopToBottom {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes paintImageLeftToRight {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes paintImageLeftToRight {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes paintImageBottomToTop {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes paintImageBottomToTop {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.feature__paint-image1 img {
  width: 135px;
  margin: 0 auto;
  -webkit-animation: paintImageTopToBottom 0.2s linear;
          animation: paintImageTopToBottom 0.2s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 1024px) {
  .feature__paint-image1 img {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .feature__paint-image1 img {
    width: 23vw;
  }
}

.feature__paint-image2 img {
  width: 190px;
  margin: 0 auto;
  -webkit-animation: paintImageLeftToRight 0.2s linear;
          animation: paintImageLeftToRight 0.2s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 1024px) {
  .feature__paint-image2 img {
    width: 170px;
  }
}
@media screen and (max-width: 768px) {
  .feature__paint-image2 img {
    width: 30vw;
  }
}

.feature__paint-image3 img {
  width: 180px;
  margin: 0 auto;
  -webkit-animation: paintImageLeftToRight 0.2s linear;
          animation: paintImageLeftToRight 0.2s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 768px) {
  .feature__paint-image3 img {
    width: 30vw;
  }
}

.feature__paint-image4 img {
  width: 117px;
  margin: 0 auto;
  -webkit-animation: paintImageBottomToTop 0.2s linear;
          animation: paintImageBottomToTop 0.2s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media screen and (max-width: 768px) {
  .feature__paint-image4 img {
    width: 20vw;
  }
}

.feature__paint-image1 {
  position: absolute;
  top: 0;
  left: 51%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .feature__paint-image1 {
    top: -115px;
    left: 61%;
    transform: translateX(-61%);
  }
}
@media screen and (max-width: 575px) {
  .feature__paint-image1 {
    top: -75px;
    left: 64%;
    transform: translateX(-64%);
  }
}
@media screen and (max-width: 450px) {
  .feature__paint-image1 {
    top: -10%;
    left: 66%;
    transform: translateX(-64%);
  }
}

.feature__paint-image2 {
  position: absolute;
  top: 24.5%;
  left: calc(50% - 358px);
}
@media screen and (max-width: 1024px) {
  .feature__paint-image2 {
    top: 24%;
    left: calc(50% - 331px);
  }
}
@media screen and (max-width: 768px) {
  .feature__paint-image2 {
    top: 23%;
    left: calc(50% - 40vw);
  }
}
@media screen and (max-width: 575px) {
  .feature__paint-image2 {
    top: 21%;
    left: calc(50% - 41vw);
  }
}
@media screen and (max-width: 450px) {
  .feature__paint-image2 {
    top: 17%;
    left: calc(50% - 39vw);
  }
}
@media screen and (max-width: 375px) {
  .feature__paint-image2 {
    top: 17%;
    left: calc(50% - 43vw);
  }
}

.feature__paint-image3 {
  position: absolute;
  top: 50%;
  left: 51.5%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .feature__paint-image3 {
    top: calc(50% - 22px);
  }
}
@media screen and (max-width: 768px) {
  .feature__paint-image3 {
    left: 33%;
    top: 55%;
  }
}
@media screen and (max-width: 575px) {
  .feature__paint-image3 {
    left: 33%;
    top: 49%;
  }
}
@media screen and (max-width: 450px) {
  .feature__paint-image3 {
    left: 29%;
    top: 50%;
  }
}
@media screen and (max-width: 375px) {
  .feature__paint-image3 {
    left: 25%;
    top: 50%;
  }
}

.feature__paint-image4 {
  position: absolute;
  top: 23%;
  right: calc(50% - 338px);
}
@media screen and (max-width: 1024px) {
  .feature__paint-image4 {
    right: calc(50% - 305px);
  }
}
@media screen and (max-width: 768px) {
  .feature__paint-image4 {
    top: 34%;
    right: calc(50% - 31vw);
  }
}
@media screen and (max-width: 450px) {
  .feature__paint-image4 {
    top: 34%;
    right: calc(50% - 32vw);
  }
}
@media screen and (max-width: 375px) {
  .feature__paint-image4 {
    right: calc(50% - 36vw);
  }
}

.feature__circle-text1 {
  position: absolute;
  top: 26%;
  left: calc(50% - 91px);
}
@media screen and (max-width: 1024px) {
  .feature__circle-text1 {
    top: 22%;
    left: calc(50% - 82px);
  }
}
@media screen and (max-width: 768px) {
  .feature__circle-text1 {
    top: 12%;
    left: 43%;
    max-width: 200px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .feature__circle-text1 {
    top: 12%;
    left: 43%;
  }
}
@media screen and (max-width: 450px) {
  .feature__circle-text1 {
    top: 14%;
    left: 43%;
    max-width: 200px;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .feature__circle-text1 {
    top: 8%;
    left: 34%;
    max-width: 200px;
    width: 100%;
  }
}

.feature__circle-text2 {
  background-color: #000;
  position: absolute;
  top: 45.5%;
  left: calc(50% - 416px);
}
@media screen and (max-width: 1024px) {
  .feature__circle-text2 {
    top: 43%;
    left: calc(50% - 370px);
  }
}
@media screen and (max-width: 768px) {
  .feature__circle-text2 {
    top: 40%;
    left: calc(50% - 42vw);
  }
}
@media screen and (max-width: 575px) {
  .feature__circle-text2 {
    top: 35%;
    left: calc(50% - 47vw);
  }
}
@media screen and (max-width: 450px) {
  .feature__circle-text2 {
    top: 33%;
    left: calc(50% - 48vw);
    max-width: 218px;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .feature__circle-text2 {
    top: 30%;
    left: calc(50% - 49vw);
  }
}

.feature__circle-text3 {
  background-color: #000;
  position: absolute;
  top: 67%;
  left: calc(50% - 94px);
}
@media screen and (max-width: 1024px) {
  .feature__circle-text3 {
    top: 65%;
  }
}
@media screen and (max-width: 768px) {
  .feature__circle-text3 {
    left: 17%;
    top: 70%;
    max-width: 220px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .feature__circle-text3 {
    left: 11%;
    top: 64%;
  }
}
@media screen and (max-width: 450px) {
  .feature__circle-text3 {
    left: 1%;
    top: 64%;
  }
}
@media screen and (max-width: 375px) {
  .feature__circle-text3 {
    left: 0%;
    top: 64%;
  }
}

.feature__circle-text4 {
  position: absolute;
  top: 44.5%;
  right: calc(50% - 419px);
}
@media screen and (max-width: 1024px) {
  .feature__circle-text4 {
    right: calc(50% - 362px);
  }
}
@media screen and (max-width: 768px) {
  .feature__circle-text4 {
    background-color: #000;
    top: 55%;
    right: calc(50% - 36vw);
    max-width: 200px;
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .feature__circle-text4 {
    top: 52%;
  }
}
@media screen and (max-width: 575px) {
  .feature__circle-text4 {
    top: 53%;
    right: calc(50% - 41vw);
  }
}
@media screen and (max-width: 450px) {
  .feature__circle-text4 {
    top: 51%;
    right: calc(50% - 50vw);
    max-width: 200px;
    width: 100%;
    background: transparent;
  }
}
@media screen and (max-width: 375px) {
  .feature__circle-text4 {
    top: 47%;
    right: calc(50% - 50vw);
  }
}

.feature__circle-maintext {
  color: #fff;
  font-size: 18.7px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  display: inline-block;
  letter-spacing: 0.1em;
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  .feature__circle-maintext {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .feature__circle-maintext {
    font-size: 2vw;
  }
}
@media screen and (max-width: 575px) {
  .feature__circle-maintext {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .feature__circle-maintext {
    font-size: 12px;
  }
}

.feature__circle-subtext {
  color: #fff;
  font-size: 11.616px;
  font-weight: 400;
  text-align: center;
  margin-top: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .feature__circle-subtext {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .feature__circle-subtext {
    margin-top: 5px;
    font-size: 8.5px;
  }
}
@media screen and (max-width: 375px) {
  .feature__circle-subtext {
    margin-top: 5px;
    font-size: 8.5px;
    letter-spacing: 0.05em;
  }
}

.solution__header {
  background-image: url(../images/bg-solution.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.solution__item-wrap {
  padding: 69px 86px 100px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .solution__item-wrap {
    padding: 90px 0;
  }
}
@media screen and (max-width: 768px) {
  .solution__item-wrap {
    padding: 50px 0;
  }
}

.solution__item-wrap img {
  width: 68%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .solution__item-wrap img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .solution__item-wrap img {
    width: 90%;
  }
}

.solution__sub-text {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
  margin: 20px 0 90px;
}
@media screen and (max-width: 1024px) {
  .solution__sub-text {
    font-size: 2.5vw;
    margin: 28px 0 40px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 768px) {
  .solution__sub-text {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

.firm__header {
  background-image: url(../images/bg-firm.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.firm__content {
  max-width: 760.5px;
  width: 100%;
  margin: 123px auto 114px;
}
@media screen and (max-width: 768px) {
  .firm__content {
    padding: 0 41px;
    margin: 50px auto 114px;
  }
}
@media screen and (max-width: 375px) {
  .firm__content {
    padding: 0 20px;
  }
}

.firm__content-top {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 1024px) {
  .firm__content-top {
    display: block;
  }
}

.firm__content-top.active {
  opacity: 1;
  transform: translateY(0);
}

.firm__content-image {
  width: 348px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .firm__content-image {
    margin: 0 auto;
    width: 100%;
  }
}

.firm__content-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 268/223;
}
@media screen and (max-width: 1024px) {
  .firm__content-image img {
    width: 100%;
    aspect-ratio: 307/204;
  }
}

.firm__content-text {
  max-width: 348px;
  width: 100%;
  text-align: justify;
  line-height: 2.55;
  font-size: 12.2px;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .firm__content-text {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .firm__content-text {
    font-size: 14px;
    line-height: 2.141;
  }
}
@media screen and (max-width: 375px) {
  .firm__content-text {
    font-size: 11px;
  }
}

.firm__content-text-strong {
  font-weight: 900;
  color: #c005df;
}

.firm__content-middle {
  margin: 75px auto 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 1024px) {
  .firm__content-middle {
    margin: 60px auto 0;
  }
}

.firm__content-middle.active {
  opacity: 1;
  transform: translateY(0);
}

.firm__content-middle-wrap {
  width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .firm__content-middle-wrap {
    width: 100%;
  }
}

.firm__content-middle-items {
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .firm__content-middle-items {
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 575px) {
  .firm__content-middle-items {
    justify-content: center;
  }
}

.middle-item {
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .middle-item {
    margin: 0 10px;
  }
}

.middle-item__button {
  color: white;
  display: inline-block;
  background-color: #ffa800;
  padding: 16.8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7.4px;
  width: 281px;
  font-size: 17.9px;
  font-weight: bold;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .middle-item__button {
    font-size: 16px;
    height: 78px;
    width: 200px;
  }
}
@media screen and (max-width: 575px) {
  .middle-item__button {
    width: 150px;
  }
}
@media screen and (max-width: 375px) {
  .middle-item__button {
    font-size: 15px;
    width: 130px;
  }
}

.middle-item__button2 {
  background-color: #c005df;
}

.middle-item__text {
  text-align: center;
  line-height: 1.666;
  font-size: 13px;
  max-width: 270px;
  width: 100%;
  margin: 13px auto 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .middle-item__text {
    font-size: 13px;
  }
}

.puls-icon {
  position: absolute;
  width: 22px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.firm__content-arrow-image {
  width: 22.2px;
  margin: 26px auto 0;
}

.firm__content-bottom {
  background: linear-gradient(270deg, #7c0e90, #b87f0c);
  border-radius: 10px;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.bottom-item {
  padding: 30px 0;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .bottom-item {
    padding: 30px 10px;
  }
}

.bottom-item__logo {
  width: 162px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .bottom-item__logo {
    width: 136px;
  }
}

.bottom-item__text {
  font-weight: bold;
  color: white;
  font-size: 23.32px;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.07em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .bottom-item__text {
    font-size: 22px;
    letter-spacing: 0.05em;
  }
}

.firm__button {
  text-align: center;
  margin: 77px 0 0;
}

.service {
  background-color: #000;
}
.service__header {
  background-image: url(../images/bg-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service__content {
  max-width: 825px;
  width: 100%;
  margin: 0 auto;
  padding: 128px 0 113px;
}
@media screen and (max-width: 768px) {
  .service__content {
    max-width: 100%;
    padding: 0;
  }
}

.service__top-title {
  background: #000;
}
@media screen and (max-width: 768px) {
  .service__top-title {
    padding: 50px 0 0px;
  }
}

.service__top-title-text {
  color: white;
  text-align: center;
  font-size: 18.43px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .service__top-title-text {
    font-size: 14px;
  }
}

.service__top-title--large {
  font-size: 30.78px;
  display: inline-block;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .service__top-title--large {
    font-size: 23px;
  }
}

.service__items {
  display: flex;
  margin-top: 76px;
  padding-left: 22px;
  justify-content: space-around;
  background: #000;
}
@media screen and (max-width: 1024px) {
  .service__items {
    display: block;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .service__items {
    padding: 0 0 100px;
  }
}

.service__item {
  width: 36%;
}
@media screen and (max-width: 1024px) {
  .service__item {
    width: 50vw;
    margin: 0 auto;
    padding-top: 60px;
  }
}
.service__item {
  opacity: 0;
  transition: opacity 1s;
}

@media screen and (max-width: 1024px) {
  .service__item img {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .service__item img {
    width: 100%;
  }
}

.service__item.visible {
  opacity: 1;
  -webkit-animation: serviceRightToLeft 0.6s ease-out forwards;
          animation: serviceRightToLeft 0.6s ease-out forwards;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /* Right 100% means the image is initially fully hidden */
}

.service__item1.visible {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.service__item2.visible {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; /* adjust as necessary */
}

.service__item3.visible {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s; /* adjust as necessary */
}

@-webkit-keyframes serviceRightToLeft {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* Right 0% means the image is fully visible */
  }
}

@keyframes serviceRightToLeft {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* Right 0% means the image is fully visible */
  }
}
.service__articles {
  background: #000;
  max-width: 809px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service__articles {
    padding: 50px 0 80px;
    background: #f2f2f2;
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .service__articles {
    padding: 10px 0 50px;
  }
}

.article {
  background-color: #f2f2f2;
  position: relative;
  padding-bottom: 45px;
  margin-top: 200px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .article {
    padding-bottom: 40px;
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .article {
    margin-top: 55px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 375px) {
  .article {
    padding-bottom: 10px;
    margin-top: 55px;
  }
}

.article + .article {
  margin-top: 188px;
}
@media screen and (max-width: 768px) {
  .article + .article {
    margin-top: 80px;
  }
}
@media screen and (max-width: 575px) {
  .article + .article {
    margin-top: 116px;
  }
}

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

.article__circle {
  position: absolute;
  top: -101px;
  left: 50%;
  transform: translateX(-50%);
  width: 188px;
}
@media screen and (max-width: 768px) {
  .article__circle {
    top: -30px;
    width: 150px;
  }
}
@media screen and (max-width: 575px) {
  .article__circle {
    top: -53px;
  }
}
@media screen and (max-width: 375px) {
  .article__circle {
    top: -15px;
    width: 100px;
  }
}

.article__image {
  padding: 25px 0 13px;
  margin: 0 auto;
}
.article__image img {
  width: 64%;
  height: 100%;
  margin: 0 auto;
  aspect-ratio: 394/166;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .article__image img {
    aspect-ratio: 321/179;
  }
}
@media screen and (max-width: 575px) {
  .article__image img {
    width: 82%;
  }
}

.article__main-text {
  display: block;
  text-align: center;
  padding: 12px 25px 0;
  font-size: 20.2px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .article__main-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .article__main-text {
    font-size: 16px;
    margin: 0 auto;
    padding: 12px 17px 0;
  }
}

@media screen and (max-width: 768px) {
  .article__main-text.article__main-text2 {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.article__process {
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .article__process {
    margin: 35px auto 0;
  }
}

.article__process img {
  width: 85%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .article__process img {
    max-width: 225px;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .article__process img {
    max-width: 200px;
    width: 100%;
  }
}

.article__sub-text {
  text-align: center;
  font-size: 15.5px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .article__sub-text {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  .article__sub-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .article__sub-text {
    font-size: 14px;
    text-align: left;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 575px) {
  .article__sub-text {
    font-size: 12px;
    text-align: left;
    width: 100%;
    margin-top: 42px;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 768px) {
  .article__sub-text.article__sub-text2 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .article__sub-text.article__sub-text3 {
    margin-top: 20px;
  }
}

.example {
  overflow: hidden;
}

.example__header {
  background-image: url(../images/bg-example.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.example__subtitle-small {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  margin-left: 30px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .example__subtitle-small {
    font-size: 12px;
  }
}

.example__slider {
  height: auto;
  max-width: 750px;
  width: 100%;
}

.slide {
  padding: 120px 10px 0;
}
@media screen and (max-width: 1024px) {
  .slide {
    padding: 50px 25px 70px;
  }
}

.slide__header-wrap {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .slide__header-wrap {
    align-items: center;
  }
}

.slide__header-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-size: 40.16px;
  font-weight: bold;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  margin: 3px 23px 0px 17px;
  padding-bottom: 2px;
}
@media screen and (max-width: 1024px) {
  .slide__header-number {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .slide__header-number {
    margin-right: 10px;
    font-size: 28px;
    width: 70px;
    height: 70px;
    margin: 0px 19px;
  }
}
@media screen and (max-width: 575px) {
  .slide__header-number {
    margin: 0px 10px;
  }
}
@media screen and (max-width: 375px) {
  .slide__header-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-right: 19px;
    margin-left: 0;
    padding-bottom: 1px;
  }
}

.slide__header-text-wrap {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .slide__header-text-wrap {
    margin-top: 0;
  }
}

.slide__header-text {
  font-size: 33.05px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .slide__header-text {
    font-size: 25px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 450px) {
  .slide__header-text {
    font-size: 23px;
  }
}
@media screen and (max-width: 375px) {
  .slide__header-text {
    font-size: 22px;
  }
}

.slide__header-tags {
  letter-spacing: 0.1em;
  display: flex;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .slide__header-tags {
    margin-top: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .slide__header-tags.lg-none {
    display: none;
  }
}

.slide__header-tags.lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .slide__header-tags.lg-show {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .slide__header-tags.lg-show {
    justify-content: start;
  }
}

.slide__header-tag {
  background-color: #fff;
  padding: 4px 17px;
  border-radius: 23px;
  margin-right: 14px;
  position: relative;
  max-width: 150px;
}
@media screen and (max-width: 1024px) {
  .slide__header-tag {
    padding: 8px 15px;
    width: 100%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .slide__header-tag {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 575px) {
  .slide__header-tag {
    padding: 5px 3px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 375px) {
  .slide__header-tag {
    padding: 5px 0px;
    margin-right: 17px;
  }
}

.slide__header-tag.tag2 {
  background-color: #fff;
  padding: 4px 17px;
  border-radius: 23px;
  margin-right: 14px;
  position: relative;
  max-width: 150px;
}
@media screen and (max-width: 1024px) {
  .slide__header-tag.tag2 {
    padding: 8px 15px;
    width: 100%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .slide__header-tag.tag2 {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 575px) {
  .slide__header-tag.tag2 {
    padding: 5px 7px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 375px) {
  .slide__header-tag.tag2 {
    padding: 5px 0px;
    margin-right: 17px;
  }
}

.slide__header-tag p {
  font-weight: 900;
  font-size: 8.97px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tag1 {
  position: relative;
}

.tag1::after {
  position: absolute;
  content: "";
  width: 108%;
  height: 133%;
  bottom: -4px;
  left: -4px;
  background: linear-gradient(195deg, #9006a8, hsl(43deg, 100%, 43%));
  z-index: -1;
  border-radius: 23px;
}
@media screen and (max-width: 1024px) {
  .tag1::after {
    width: 105%;
    height: 123%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 768px) {
  .tag1::after {
    width: 106%;
    height: 121%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 575px) {
  .tag1::after {
    width: 106.5%;
    height: 124%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 450px) {
  .tag1::after {
    width: 106.5%;
    height: 124%;
    bottom: -3px;
    left: -3.5px;
  }
}
@media screen and (max-width: 375px) {
  .tag1::after {
    width: 109%;
    height: 124%;
    bottom: -3px;
    left: -3px;
  }
}

.tag2 {
  position: relative;
}

.tag2::after {
  position: absolute;
  content: "";
  width: 108%;
  height: 133%;
  bottom: -4px;
  left: -4px;
  background: linear-gradient(275deg, #ff0d0d, hsl(43deg, 100%, 43%));
  z-index: -1;
  border-radius: 23px;
}
@media screen and (max-width: 1024px) {
  .tag2::after {
    width: 105%;
    height: 123%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 768px) {
  .tag2::after {
    width: 106%;
    height: 121%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 575px) {
  .tag2::after {
    width: 106%;
    height: 124%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 450px) {
  .tag2::after {
    width: 107%;
    height: 124%;
    bottom: -3px;
    left: -3.5px;
  }
}
@media screen and (max-width: 375px) {
  .tag2::after {
    width: 109%;
    height: 124%;
    bottom: -3px;
    left: -3px;
  }
}

.tag3 {
  position: relative;
}

.tag3::after {
  position: absolute;
  content: "";
  width: 108%;
  height: 133%;
  bottom: -4px;
  left: -4px;
  background: linear-gradient(240deg, #9006a8, #ff0d0d);
  z-index: -1;
  border-radius: 23px;
}
@media screen and (max-width: 1024px) {
  .tag3::after {
    width: 105%;
    height: 123%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 768px) {
  .tag3::after {
    width: 106%;
    height: 125%;
    bottom: -4px;
    left: -4px;
  }
}
@media screen and (max-width: 575px) {
  .tag3::after {
    width: 106.5%;
    height: 124%;
    bottom: -3px;
    left: -4px;
  }
}
@media screen and (max-width: 450px) {
  .tag3::after {
    width: 107%;
    height: 124%;
    bottom: -3px;
    left: -3px;
  }
}
@media screen and (max-width: 375px) {
  .tag3::after {
    width: 109%;
    height: 124%;
    bottom: -3px;
    left: -3px;
  }
}

.slide__content {
  margin: 41px 0 93px;
}
@media screen and (max-width: 1024px) {
  .slide__content {
    margin: 41px 0 0;
  }
}

.slide__content-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  .slide__content-wrap {
    display: block;
  }
}

.slide__content-left {
  max-width: 364px;
  width: 100%;
  margin-left: 24px;
}
@media screen and (max-width: 1024px) {
  .slide__content-left {
    max-width: 100%;
    margin-left: 0;
  }
}

.slide__content-title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .slide__content-title {
    text-align: center;
    margin-top: 27px;
  }
}
@media screen and (max-width: 768px) {
  .slide__content-title {
    font-size: 17.7px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 375px) {
  .slide__content-title {
    font-size: 14.4px;
  }
}

.slide__content-subtitle {
  font-size: 13.77px;
  font-weight: 500;
  padding-top: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .slide__content-subtitle {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .slide__content-subtitle {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .slide__content-subtitle {
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .slide__content__list {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .slide__content__list {
    font-size: 12px;
  }
}

.slide__content__items {
  margin-top: 20px;
}

.slide__content__item {
  display: flex;
  padding: 15px 0;
  background-image: linear-gradient(90deg, #9f007c, #ea8105);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  font-size: 11.02px;
}
@media screen and (max-width: 1024px) {
  .slide__content__item {
    width: 100%;
    padding: 14px 0;
  }
}

.slide__content__label {
  width: 115px;
}
@media screen and (max-width: 768px) {
  .slide__content__label {
    width: 20vw;
  }
}
@media screen and (max-width: 375px) {
  .slide__content__label {
    width: 30%;
  }
}

.slide__content-right {
  max-width: 313px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .slide__content-right {
    max-width: 100%;
  }
}

.slide__content-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 313/413;
}
@media screen and (max-width: 1024px) {
  .slide__content-image img {
    aspect-ratio: 336/186;
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 13px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 13px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 9px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 35px);
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 3px var(--swiper-pagination-bullet-horizontal-gap, 5px);
}

:root {
  --swiper-theme-color: #000;
}

.example__button {
  text-align: center;
  margin: 111px 0 114px;
}
@media screen and (max-width: 1024px) {
  .example__button {
    margin: 50px 0 78px;
  }
}
@media screen and (max-width: 575px) {
  .example__button {
    margin: 0 0 78px;
  }
}

.company {
  background-color: #000;
}

.company__header {
  background-image: url(../images/bg-example.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.company__wrap {
  color: white;
  padding: 102px 200px 88px;
}
@media screen and (max-width: 768px) {
  .company__wrap {
    padding: 61px 0 0;
  }
}

.company__logo {
  margin: 0 auto;
  width: 405px;
}
@media screen and (max-width: 768px) {
  .company__logo {
    width: 232px;
  }
}

.company__mission {
  text-align: center;
  margin-top: 98px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .company__mission {
    margin-top: 44px;
  }
}

.company__text-title {
  font-size: 43.2px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .company__text-title {
    font-size: 31px;
  }
}

.company__text {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2.03;
  margin-top: 25.57px;
}
@media screen and (max-width: 768px) {
  .company__text {
    font-size: 12px;
    line-height: 1;
    margin-top: 12px;
  }
}

.company__vision {
  text-align: center;
  margin-top: 67px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .company__vision {
    margin-top: 64px;
  }
}
@media screen and (max-width: 575px) {
  .company__vision {
    margin-top: 59px;
  }
}

.company__value {
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 58px auto 0;
}
@media screen and (max-width: 768px) {
  .company__value {
    margin-top: 64px;
  }
}
@media screen and (max-width: 575px) {
  .company__value {
    margin-top: 55px;
  }
}

.company__value-wrap {
  display: flex;
  justify-content: center;
  margin: 26px auto 0;
  max-width: 430px;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .company__value-wrap {
    width: 100%;
    margin-top: 10px;
    padding: 0 10px;
  }
}

.company__value-left {
  width: 30%;
}

.company__value-text {
  display: flex;
  justify-content: center;
}

.company__value-text-title {
  display: flex;
  justify-content: start;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .company__value-text-title {
    font-size: 2vw;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .company__value-text-title {
    font-size: 12px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 375px) {
  .company__value-text-title {
    font-size: 2vw;
  }
}

.text-logic {
  color: #c600ca;
}

.text-initiative {
  color: #da0090;
}

.text-open {
  color: #d62903;
}

.text-newness {
  color: #da7600;
}

.company__list {
  max-width: 620px;
  margin: 118px auto 30px;
}
@media screen and (max-width: 1024px) {
  .company__list {
    padding-right: 0;
    margin: 118px auto 0px;
  }
}
@media screen and (max-width: 768px) {
  .company__list {
    margin: 90px auto 0px;
  }
}

.list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.list__item {
  display: flex;
  padding: 9px 0;
  background-image: linear-gradient(240deg, #9f007c, #ea8105);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .list__item {
    padding: 22px 20px;
    font-size: 12px;
  }
}

.list__item.md-show {
  display: none;
  padding: 13px 0;
  background-image: linear-gradient(240deg, #9f007c, #ea8105);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .list__item.md-show {
    padding: 22px 20px;
    font-size: 12px;
    display: flex;
  }
}

.list__label {
  font-size: 11.8px;
  width: 275px;
}
@media screen and (max-width: 1024px) {
  .list__label {
    width: 200px;
  }
}

.list__label-text {
  width: 100%;
  font-size: 12.34px;
  line-height: 1.788;
}

.list__label-text a {
  color: white;
  border-bottom: 1px white solid;
}

#contact {
  color: white;
  padding: 152px 240px;
}
@media screen and (max-width: 1240px) {
  #contact {
    padding: 100px;
  }
}
@media screen and (max-width: 768px) {
  #contact {
    padding: 0;
  }
}

.contact-wrap {
  background: #000;
  padding: 82px 65px;
  position: relative;
  max-width: 653px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .contact-wrap {
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact-wrap {
    padding: 120px 45px 100px;
    max-width: 100%;
  }
}

.contact-wrap::after {
  position: absolute;
  content: "";
  width: 101%;
  height: 101%;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #9006a8, #ffaa04);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .contact-wrap::after {
    display: none;
  }
}

.contact-head {
  text-align: center;
  font-size: 33px;
  letter-spacing: 0.05em;
}

.contact-head-text {
  text-align: center;
  margin-top: 35px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .contact-head-text {
    font-size: 9.8px;
  }
}

.contact-warn {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .contact-warn {
    font-size: 7px;
  }
}

.error-message {
  color: #ffaa04;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 0;
  max-width: 600px;
  margin: 0 auto;
}

.wrap {
  font-size: 12px;
}

.head {
  background: #ffaa04;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  padding: 2px 5px;
  margin-top: 20px;
  display: none;
}

.form__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.form__text {
  font-size: 15px;
  width: 458px;
  line-height: 1.888;
  letter-spacing: 0.05em;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .form__text {
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.form__wrap {
  margin: 60px 0 80px;
  border-radius: 20px 0 0 0;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .form__wrap {
    margin: 40px 0;
    height: auto;
  }
}

.form__list {
  padding: 60px 0 0;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .form__list {
    padding: 60px 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .form__list {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .form__list {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 40px;
  }
}

.form__items + .form__items {
  margin-top: 25px;
}

.form__item {
  display: flex;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .form__item {
    display: block;
  }
}

.form__radio {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form__radio {
    display: block;
  }
}

.form__label {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .form__label {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .form__label--radio {
    width: 100%;
  }
}

.form__label-text {
  padding: 12px 12px 10px;
  font-size: 11.55px;
}

.form__label-text--important {
  font-size: 10px;
  color: #ffaa04;
}

.form__input {
  width: 394px;
  height: 44px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .form__input {
    width: 100%;
  }
}

.form__radio-button {
  width: 10px;
  height: 10px;
  background-color: #fff;
  cursor: pointer;
}

label {
  position: relative;
}

input[type=radio] {
  position: absolute;
  top: -12px;
  margin-top: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
  width: 20px; /* ボタン全体の大きさを指定 */
  height: 20px; /* ボタン全体の大きさを指定 */
  background: white; /* ボタン全体の背景色を指定 */
  border-radius: 50%; /* ボタン全体を円形にする */
  outline: none; /* アウトラインを消す */
}

input[type=radio]:checked {
  background: white; /* チェック時のボタン全体の背景色を指定 */
}

input[type=radio]:checked:after {
  content: "";
  display: block;
  width: 8px; /* 内側のボタンの大きさを指定 */
  height: 8px; /* 内側のボタンの大きさを指定 */
  margin: 6px; /* ボタン全体の中心に配置するためのマージンを指定 */
  background: #9f007c; /* 内側のボタンの色を指定 */
  border-radius: 50%; /* 内側のボタンを円形にする */
  position: relative; /* 位置指定のためのプロパティを追加 */
}

.form__input-text,
.form__textarea {
  width: 100%;
  padding: 10px 12px 10px;
}

.form__radio-button--name {
  font-size: 12.38px;
  margin-left: 64px;
  display: inline-block;
  margin-top: 14px;
}

.contact-bottom {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .contact-bottom {
    margin-top: 30px;
  }
}

.contact-bottom-text {
  font-size: 9px;
  line-height: 1.6666;
}
@media screen and (max-width: 768px) {
  .contact-bottom-text {
    text-align: left;
  }
}

.contact-bottom-privacy {
  color: #ffaa04;
  border-bottom: #ffaa04 1px solid;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.6666;
  display: inline-block;
  margin-top: 30px;
}

.form__button {
  margin-top: 30px;
  text-align: center;
}

.form__button-text {
  font-size: 12px;
  font-weight: 700;
  color: white;
  padding: 12px 40px;
  border-radius: 30px;
  background: linear-gradient(to right, #ea8105, #6c127b, #db00ff); /* ホバー時の背景色（グラデーション） */
}

.footer {
  background-image: url(../images/bg-footer.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 358px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    background-image: url(../images/bg-footer-sp.jpg);
    height: auto;
  }
}

.footer__inner {
  display: flex;
  padding: 64px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
    padding: 64px 0 125px;
  }
}
.footer__logo {
  width: 257px;
  margin-left: -38px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin: auto;
  }
}

.footer__address {
  margin-top: 30px;
  letter-spacing: 0.1em;
  line-height: 1.7857;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__address {
    text-align: center;
  }
}

.footer__icon {
  display: flex;
  align-items: center;
  margin-top: 29px;
}
@media screen and (max-width: 768px) {
  .footer__icon {
    justify-content: center;
    margin-top: 30px;
  }
}

.footer__icon-twitter {
  width: 27.31px;
  margin-right: 18px;
}

.footer__icon-facebook {
  width: 28.31px;
}

.footer__right {
  display: flex;
  margin-left: auto;
  margin-right: 2vw;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .footer__right {
    justify-content: center;
    font-size: 15px;
    margin-right: 0;
  }
}

.footer__right-firstline {
  margin-right: 36px;
}

.footer__item-link {
  color: white;
  line-height: 2.3333;
  letter-spacing: 0.5em;
  font-size: 12px;
}

.footer__item-link {
  color: white;
  line-height: 2.3333;
  letter-spacing: 0.05em;
  color: #fff; /* 初期の文字色 */
  transition: all 0.3s ease; /* 文字色の変化に0.3秒の遷移時間を設定 */
}

.footer__item-link:hover {
  color: #000;
}

.footer__copyright {
  position: absolute;
  right: 5vw;
  bottom: 30px;
  font-size: 12px;
}
@media screen and (max-width: 1440px) {
  .footer__copyright {
    right: 5vw;
    bottom: 30px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    right: 50%;
    transform: translate(50%);
  }
}

.contact-button {
  display: inline-block;
  background-color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14.57px;
  letter-spacing: 0.2em;
  color: white;
  padding: 10px 26px;
  border-radius: 30px;
  position: relative;
  transition: all 0.1s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-button {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.contact-button::after {
  position: absolute;
  content: "";
  width: 105%;
  height: 122%;
  bottom: -4px;
  left: -5px;
  background: linear-gradient(240deg, #c005df, #ffaa04);
  z-index: -1;
  border-radius: 35px;
}
@media screen and (max-width: 768px) {
  .contact-button::after {
    width: 105%;
    height: 119%;
    bottom: -3px;
    left: -5px;
  }
}
@media screen and (max-width: 375px) {
  .contact-button::after {
    width: 105%;
    height: 126%;
    bottom: -4px;
    left: -5px;
  }
}

.button {
  transition: all 0.3s ease;
}

.button:hover {
  transform: scale(1.05);
}

.contact-button:hover {
  opacity: 1;
}

.section-header {
  color: white;
  padding: 90px 91px 80px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .section-header {
    padding: 32px 40px;
  }
}

.section-title {
  font-size: 27px;
  max-width: 1440px;
  margin: 0 auto;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4vw;
  }
}
@media screen and (max-width: 575px) {
  .section-title {
    font-size: 4.9vw;
  }
}

.section-subtitle {
  font-size: 16.2px;
  line-height: 2.9;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-subtitle {
    font-size: 3vw;
  }
}