@charset "UTF-8";
:root {
  --color-black: #333;
  --color-white: #fff;
  --color-red: #ff2200;
  --color-gray: #F5F5F5;
  --font-main: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "Yu Gothic Medium",
  "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
  "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-size-base: 1.6rem;
  --font-size-small: 1.4rem;
  --font-size-large: 1.8rem;
  --font-size-h1: 3.2rem;
  --font-size-h2: 2.4rem;
  --font-size-h3: 2rem;
  --spacing-base: 8px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1023px;
  --breakpoint-xl: 1260px;
  --container-max-width: 1200px;
  --container-padding: $spacing-base * 2;
  --z-index-modal: 1000;
  --z-index-header: 100;
  --z-index-dropdown: 50;
  --border-radius-small: 3px;
  --border-radius-base: 8px;
  --border-radius-large: 12px;
  --border-radius-full: 200px;
}

.noto-sans-jp-400 {
  font-weight: 400;
}

.noto-sans-jp-500 {
  font-weight: 500;
}

.noto-sans-jp-700 {
  font-weight: 700;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.poppins-300 {
  font-weight: 300;
}

.poppins-400 {
  font-weight: 400;
}

.poppins-500 {
  font-weight: 500;
}

.poppins-700 {
  font-weight: 700;
}

/* Modern CSS Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%; /* 16px x 62.5% = 10px */
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Set core body defaults */
body {
  font-size: 1.6rem; /* 16px */
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-main);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

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

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Modern form reset */
button,
input,
select,
textarea {
  background-color: transparent;
  border-width: 0;
  padding: 0;
}

/* Remove default button styles */
button {
  cursor: pointer;
}

button:focus {
  outline: none;
}

/* Remove text-decoration from links */
a {
  color: inherit;
  text-decoration: none;
}

/* Set default font family */
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Modern table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 15px 35px 14px;
  border-radius: var(--border-radius-full);
  background-color: var(--color-black);
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .button {
    width: 100%;
  }
}
.button:hover {
  background: var(--color-red);
  color: var(--color-white);
}
.button--white {
  background-color: var(--color-white);
  color: var(--color-black);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 30px 50px 30px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 10px 15px;
    background: var(--color-white);
  }
  .header::before {
    display: none;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.5s ease;
}
.header__logo {
  width: 90px;
}
.header__logo path {
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header__logo path {
    fill: var(--color-red);
  }
}
.header__nav {
  display: flex;
  gap: 50px;
}
.header__nav-list {
  display: flex;
  gap: 30px;
  align-self: center;
}
@media screen and (max-width: 1023px) {
  .header__nav-list {
    position: fixed;
    top: 70px;
    right: -100%;
    width: auto;
    transition: all 0.5s ease;
    flex-direction: column;
    gap: 0;
    padding: 30px;
    background: var(--color-white);
    border-radius: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .nav--active .header__nav-list {
    right: 10px;
  }
}
.header__nav-link {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .header__nav-link {
    padding: 20px;
    border-top: 1px solid var(--color-red);
    color: var(--color-black);
  }
}
.header__nav-link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1023px) {
  .header__nav-item:first-child .header__nav-link {
    border-top: none;
  }
}
.header__nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .header__nav-buttons {
    position: fixed;
    justify-content: center;
    bottom: -80px;
    left: 0;
    width: 100%;
    transition: all 0.5s ease;
  }
}
.header__button {
  font-size: 1.8rem;
  font-weight: 700;
}
.header__toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__toggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
  }
}
.header__toggle-line {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-red);
  transition: all 0.5s ease;
}
.nav--active .header__toggle-line {
  position: absolute;
}
.nav--active .header__toggle-line:nth-child(1) {
  transform: rotate(45deg);
}
.nav--active .header__toggle-line:nth-child(2) {
  transform: rotate(-45deg);
}
.header__toggle-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  transition: all 0.5s ease;
}
.nav--active .header__toggle-text {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .header.is--scrolled {
    top: 0;
    left: 0;
    max-width: 100%;
    padding: 10px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .header.is--scrolled::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: rgba(12, 2, 0, 0.1) 0.1rem 0.1rem 0.4rem;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.6);
  }
}
@media screen and (min-width: 769px) {
  .header.is--scrolled .header__logo path {
    fill: var(--color-red);
  }
}
@media screen and (min-width: 769px) {
  .header.is--scrolled .header__nav-link {
    color: var(--color-black);
  }
}
@media screen and (max-width: 1023px) {
  .header.is--scrolled .header__nav-buttons {
    bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .header.is--scrolled .header__button {
    padding: 10px 20px;
    font-size: 1.6rem;
  }
}

.footer {
  margin-top: 10rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 500px 470px;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 10rem 0;
  background: var(--color-black);
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 10rem 15px;
  }
}
.footer-text__icon {
  width: 40px;
}
.footer-text__title {
  font-size: 7rem;
}
.footer-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.footer-buttons .button {
  width: 100%;
  height: 100px;
  font-size: 2.2rem;
}
.footer-buttons .button:hover {
  background: var(--color-red);
  color: var(--color-white);
}
.footer-copyright {
  padding: 2rem 0;
  text-align: center;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: var(--color-black);
  letter-spacing: 1px;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  body {
    padding-top: 50px;
  }
}
body.nav--active {
  overflow: hidden;
}

.main {
  transition: all 0.35s ease;
}
@media screen and (max-width: 1023px) {
  .nav--active .main {
    filter: blur(10px);
  }
}

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

.icon-asterisk {
  animation: asterisk 10s linear infinite;
}

@keyframes asterisk {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form {
  width: 350px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
}
.is--loaded .form {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1023px) {
  .form {
    width: 100%;
  }
}
.form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-red);
  color: var(--color-white);
  padding: 10px 20px;
  font-size: 2rem;
  border-radius: 20px 20px 0 0;
}
.form-title__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-red);
  line-height: 1;
}
.form-title__circle-top {
  font-size: 1rem;
}
.form-title__circle__second .poppins {
  font-size: 2.4rem;
  letter-spacing: -1px;
}
.form-title__circle__second .small {
  font-size: 1.2rem;
}
.form-content {
  border-radius: 0 0 20px 20px;
  background: var(--color-white);
  color: var(--color-black);
}
.form-content__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.form-content__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-content__title::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/icon-asterisk.svg) no-repeat center center/contain;
}
.form-content__text input {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #D6D6D6;
  background: #F5F5F5;
}
.form-notice {
  font-size: 1.2rem;
  text-align: center;
}
.form-notice a {
  color: #3D94DC;
  text-decoration: underline;
}
.form .button {
  margin: 10px auto 0;
  font-size: 1.8rem;
}

.section-title {
  text-align: center;
}
.section-title .poppins {
  font-size: 8rem;
  line-height: 1.1;
}
@media screen and (max-width: 1023px) {
  .section-title .poppins {
    font-size: calc(4rem + 2vw);
  }
}
.section-title .noto-sans-jp-400 {
  margin-top: 10px;
  font-size: 2rem;
}
.section-title .noto-sans-jp-400 .small {
  font-size: 70%;
}

.section-inner {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .section-inner {
    padding: 0 15px;
  }
}

.section-head {
  position: relative;
  display: grid;
  grid-template-columns: 500px 325px;
  grid-template-rows: min-content auto;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .section-head {
    display: flex;
    flex-direction: column;
  }
}
.section-title {
  grid-column: 1/2;
}
.section-subtitle {
  grid-column: 1/2;
  margin-top: 2rem;
  font-size: 3.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .section-subtitle {
    font-size: 2.4rem;
  }
}
.section-description {
  grid-column: 1/2;
  margin-top: 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .section-description {
    font-size: 1.6rem;
  }
}
.section-img {
  grid-column: 2/3;
  grid-row: 1/3;
}

.section-scroll {
  width: 100%;
  overflow: scroll;
}
@media screen and (max-width: 1023px) {
  .section-scroll > img {
    width: 240vw;
    max-width: none;
  }
}

.mainvisual {
  border-radius: 0px 0px 0px 140px;
  background: url(../images/mainvisual-bg.png) no-repeat center center/cover, linear-gradient(103deg, #F20 9.55%, #D94D34 94.17%);
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .mainvisual {
    border-radius: 0 0 0 100px;
  }
}
.mainvisual__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 15rem 50px 6rem;
}
@media screen and (max-width: 1023px) {
  .mainvisual__inner {
    flex-direction: column;
    max-height: none;
    min-height: auto;
    height: auto;
    padding: 6rem 15px 10rem;
  }
}
.mainvisual__title {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 3rem;
}
.mainvisual__title-main {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  background: var(--color-white);
  color: #DB1D01;
  padding: 2px 5px;
  font-size: 2.6rem;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .mainvisual__title-main {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.mainvisual__title-copy {
  font-size: 6rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .mainvisual__title-copy {
    font-size: calc(4rem + 4vw);
  }
}
@media screen and (max-width: 1023px) {
  .mainvisual__title-copy br {
    display: none;
  }
}
.mainvisual__image {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .mainvisual__image {
    position: static;
    width: 60%;
    transform: translate(0, 0);
  }
}
.mainvisual .form {
  height: 100%;
}
.price {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
  margin: 5rem auto 0;
  padding: 0 8rem;
  font-size: 2rem;
  background: url(../images/laurel-left.svg) no-repeat center left, url(../images/laurel-right.svg) no-repeat center right;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .price {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .price br {
    display: none;
  }
}
.price-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.price .poppins {
  font-size: 1.2rem;
}

.introduction {
  position: relative;
  width: 100%;
}
.introduction::before {
  content: "";
  position: absolute;
  left: calc((100% - 1100px) / 2 + 10rem);
  top: 43rem;
  z-index: -1;
  pointer-events: none;
  display: block;
  width: calc(100% - (100% - 1100px) / 2 - 10rem);
  height: 110%;
  background: var(--color-gray);
  border-radius: 160px 0 0 0;
}
@media screen and (max-width: 1023px) {
  .introduction::before {
    width: 100%;
    left: 0;
    border-radius: 100px 0 0 0;
  }
}

.sec1 {
  display: grid;
  grid-template-columns: 1fr 570px;
  gap: 10rem 5rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-top: 15rem;
}
@media screen and (max-width: 1023px) {
  .sec1 {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sec1-intro {
  position: relative;
  grid-column: 1/2;
}
.sec1-intro-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  line-height: 1;
}
.sec1-intro-title__small {
  font-size: 2.4rem;
  line-height: 1.4;
}
.sec1-intro-title__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 8rem;
}
@media screen and (max-width: 1023px) {
  .sec1-intro-title__main {
    font-size: calc(4rem + 2vw);
  }
}
.sec1-intro-title__main span {
  display: flex;
  gap: 10px;
}
.sec1-intro__text {
  margin-top: 5rem;
  font-size: 2.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .sec1-intro__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .sec1-intro__text br {
    display: none;
  }
}
.sec1-intro__icon {
  display: none;
  position: absolute;
  top: 55rem;
  left: calc(10rem - 25px);
  width: 50px;
}
@media screen and (max-width: 1023px) {
  .sec1-intro__icon {
    top: 40em;
    left: 2rem;
  }
}
.sec1-img {
  grid-column: 2/3;
}
@media screen and (max-width: 1023px) {
  .sec1-img {
    width: 73%;
    margin: 0 auto;
  }
}
.sec1-img img {
  transform: scale(1.1);
}
.sec1-text {
  grid-column: 2/3;
}
.sec1-text .noto-sans-jp-700 {
  margin-top: 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .sec1-text .noto-sans-jp-700 {
    font-size: 1.6rem;
  }
}

.promise {
  padding-top: 20rem;
}
@media screen and (max-width: 1023px) {
  .promise {
    padding-top: 10rem;
  }
}
.promise-list {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  justify-content: space-between;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .promise-list {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.promise-list__number {
  width: fit-content;
  margin-left: 2rem;
  line-height: 1;
}
.promise-list__number .small {
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .promise-list__number .small {
    font-size: 1.6rem;
  }
}
.promise-list__number .num {
  font-size: 8rem;
}
@media screen and (max-width: 1023px) {
  .promise-list__number .num {
    font-size: 6rem;
  }
}
.promise-list__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -4rem 0 -2rem;
  width: 100%;
  height: 310px;
  border-radius: 50px;
  background: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .promise-list__img {
    aspect-ratio: 400/310;
    height: auto;
  }
}
.promise-list__img img {
  display: block;
  max-width: 65%;
  max-height: 70%;
  object-fit: cover;
}
.promise-list__text {
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .promise-list__text {
    font-size: 1.6rem;
  }
}
.promise-list__text .noto-sans-jp-700 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1023px) {
  .promise-list__text .noto-sans-jp-700 {
    font-size: 2.2rem;
  }
}
.promise-list__item-description {
  margin-top: 10px;
  line-height: 1.4;
}

.strengths {
  position: relative;
  z-index: 2;
  margin-top: 13rem;
  padding-top: 9rem;
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .strengths {
    padding-bottom: 9rem;
  }
}
.strengths::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  display: block;
  width: calc(100% - 5rem);
  height: 100%;
  background: #D94D34;
  border-radius: 0 160px 160px 0;
}
@media screen and (max-width: 1023px) {
  .strengths::before {
    width: 100%;
    border-radius: 0 100px 100px 0;
  }
}
.strengths-inner {
  padding-right: 9rem;
}
@media screen and (max-width: 1023px) {
  .strengths-inner {
    padding-right: 15px;
  }
}
.strengths .section-title {
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .strengths .section-title {
    text-align: center;
  }
}
.strengths .section-title__icon {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
.strengths .section-title .poppins {
  margin-top: 4rem;
}
.strengths-list {
  display: grid;
  grid-template-columns: repeat(2, 540px);
  grid-template-rows: repeat(5, auto);
  justify-content: space-between;
  gap: 8rem 0;
}
@media screen and (max-width: 1023px) {
  .strengths-list {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }
}
.strengths-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.strengths-list__item:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/3;
  padding-bottom: 8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.strengths-list__item:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 2/4;
}
@media screen and (max-width: 1023px) {
  .strengths-list__item:nth-of-type(2) {
    padding-bottom: 8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}
.strengths-list__item:nth-of-type(3) {
  grid-column: 1/2;
  grid-row: 3/5;
}
@media screen and (max-width: 1023px) {
  .strengths-list__item:nth-of-type(3) {
    grid-row: 6/8;
  }
}
.strengths-list__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .strengths-list__title {
    align-items: flex-start;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .strengths-list__title br {
    display: none;
  }
}
.strengths-list__number {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  width: 102px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-white);
  color: #D94D34;
  font-size: 3rem;
}
@media screen and (max-width: 1023px) {
  .strengths-list__number {
    width: 60px;
    gap: 0;
    font-size: 2.2rem;
  }
}
.strengths-list__number:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/icon-asterisk.svg) no-repeat center center/contain;
  animation: asterisk 10s linear infinite;
}
.strengths-list__image {
  border-radius: 20px;
}

.valucedesignsyntax {
  margin-top: -20rem;
  padding: 35rem 0 10rem;
  background: var(--color-gray);
}
.valucedesignsyntax-img {
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.valucedesignsyntax-subtitle {
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-subtitle {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-subtitle br {
    display: none;
  }
}
.valucedesignsyntax-subtitle strong {
  display: block;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-subtitle strong {
    display: inline;
  }
}
.valucedesignsyntax-subtitle + p {
  max-width: 880px;
  margin: 4rem auto 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-subtitle + p {
    font-size: 1.6rem;
  }
}
.valucedesignsyntax-text {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: -5rem auto 0;
  padding: 13rem 0;
  border-radius: 40px 40px 0px 0px;
  background: linear-gradient(180deg, #FFF 21.63%, rgba(255, 255, 255, 0.57) 74.04%, rgba(255, 255, 255, 0) 98.08%);
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-text {
    margin: -2rem auto 0;
    padding: 8rem 15px 4rem;
  }
}
.valucedesignsyntax-text .list {
  max-width: 880px;
  margin: 4rem auto 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-text .list {
    font-size: 1.6rem;
  }
}
.valucedesignsyntax-text h4 {
  font-size: 2.2rem;
}
.valucedesignsyntax-text dl {
  margin: 2rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}
.valucedesignsyntax-text dl:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.valucedesignsyntax-text dt {
  font-size: 1.8rem;
  font-weight: bold;
}
.valucedesignsyntax-text dd {
  margin-top: 10px;
  font-size: 1.6rem;
}
.valucedesignsyntax-box {
  display: block;
  max-width: 1140px;
  width: 100%;
  margin: 5rem auto 0;
  padding: 6.5rem 7.5rem;
  border-radius: 40px;
  background: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-box {
    margin-top: 3rem;
    padding: 3rem 15px;
  }
}
.valucedesignsyntax-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-list {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.valucedesignsyntax-list__title {
  text-align: center;
}
.valucedesignsyntax-list__title img {
  display: block;
  width: 18px;
  margin: auto;
}
.valucedesignsyntax-list__title .red {
  margin-top: 1rem;
  font-size: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-list__title .red {
    font-size: 2.4rem;
  }
}
.valucedesignsyntax-list__title .poppins {
  font-size: 1.2rem;
}
.valucedesignsyntax-list__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
  border-radius: 10px;
  background: #FFF2EF;
  padding: 2rem;
}
.valucedesignsyntax-list__box dt {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-list__box dt {
    font-size: 1.6rem;
  }
}
.valucedesignsyntax-list__box ul {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-list__box ul {
    grid-template-columns: 1fr 1fr;
  }
}
.valucedesignsyntax-list__box ul.col-1 {
  grid-template-columns: 160px;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-list__box ul.col-1 {
    grid-template-columns: 1fr 1fr;
  }
}
.valucedesignsyntax-list__box li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  border-radius: 100px;
  background: var(--color-white);
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax-list__box li {
    font-size: 1.2rem;
  }
}
.valucedesignsyntax-list__box .notice {
  font-size: 1.2rem;
}
.valucedesignsyntax-list__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  aspect-ratio: 1/1;
  margin: auto;
}
.valucedesignsyntax-list + .valucedesignsyntax-subtitle {
  margin-top: 8rem;
}
.valucedesignsyntax .book {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 5rem;
  max-width: 880px;
  width: 100%;
  margin: 5rem auto 0;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--color-red);
  background: var(--color-white);
  margin-top: 8rem;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax .book {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}
.valucedesignsyntax .book-icon {
  position: absolute;
  top: -8px;
  left: 50px;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1023px) {
  .valucedesignsyntax .book-image {
    width: 50%;
    margin: auto;
  }
}
.valucedesignsyntax .book-text h4 {
  font-size: 2.6rem;
  line-height: 1.2;
}
.valucedesignsyntax .book-text p {
  margin-top: 15px;
}

.cases {
  width: 100%;
  overflow: hidden;
  padding: 10rem 0 0;
}
.cases-list {
  position: relative;
  margin-top: 6rem;
}
.cases .slick-list {
  overflow: visible;
}
.cases-slider__item {
  margin: 0 10px;
  border-radius: 20px;
  background: #FFF;
  overflow: hidden;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
}
.cases-slider__item-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.cases-slider__item-text {
  display: grid;
  grid-template-columns: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
}
.cases-slider__item-text-title {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1.4;
}
.cases-slider__item-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.cases-slider__item-logo img {
  max-width: 200px;
  max-height: 100%;
  margin: auto;
}
.cases-slider__item-company {
  font-size: 1.2rem;
}
.cases-button {
  position: absolute;
  top: 50%;
  left: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-red);
}
@media screen and (max-width: 1023px) {
  .cases-button {
    width: 60px;
    height: 60px;
    left: -10px;
  }
}
.cases-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 20px);
  transform: translateY(-50%);
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 15px solid var(--color-white);
}
.cases-button--next {
  left: auto;
  right: -40px;
}
@media screen and (max-width: 1023px) {
  .cases-button--next {
    right: -10px;
  }
}
.cases-button--next:before {
  left: auto;
  right: calc(50% - 20px);
  border-right: 10px solid transparent;
  border-left: 15px solid var(--color-white);
}
.cases-button img {
  width: 20px;
}
.cases .button {
  width: 300px;
  margin: 5rem auto 0;
}

.service {
  position: relative;
  margin-top: 13rem;
  padding: 12rem 0;
}
.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  display: block;
  width: calc(100% - (100% - 1100px) / 2 - 10rem);
  height: 100%;
  background: var(--color-gray);
  border-radius: 0 160px 160px 0;
}
@media screen and (max-width: 1023px) {
  .service::before {
    width: 100%;
    border-radius: 0 100px 100px 0;
  }
}
.service-icon {
  display: none;
  position: absolute;
  left: calc(100% - (100% - 1100px) / 2 - 10rem - 23px);
  top: 12rem;
  width: 45px;
}
@media screen and (max-width: 1023px) {
  .service-icon {
    top: 2rem;
    left: 10px;
  }
}
.service-head .section-title {
  text-align: left;
}
.service-head .section-img {
  grid-row: 2/4;
}
@media screen and (max-width: 1023px) {
  .service-head .section-img {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .service-head .section-subtitle {
    margin-top: 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .service-head .section-subtitle br {
    display: none;
  }
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8rem;
}
@media screen and (max-width: 1023px) {
  .service-list {
    flex-direction: column;
  }
}
.service-list__item {
  width: calc(33.33% - 14px);
  border-radius: 20px;
  background: #FFF;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .service-list__item {
    width: 100%;
  }
}
.service-list__item-title {
  position: relative;
  padding: 20px 30px 10px;
  background: #FFE6E1;
  line-height: 1.2;
}
.service-list__item-title .small {
  font-size: 1.6rem;
}
.service-list__item-title .noto-sans-jp-500 {
  font-size: 3rem;
}
@media screen and (max-width: 1023px) {
  .service-list__item-title .noto-sans-jp-500 {
    font-size: 2.4rem;
  }
}
.service-list__item-title::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon-asterisk.svg) no-repeat center center/contain;
  animation: asterisk 10s linear infinite;
}
.service-list__item-description {
  padding: 20px 30px;
  font-size: 1.4rem;
}
.service-list__item--last {
  width: calc(66.66% - 6px);
}
@media screen and (max-width: 1023px) {
  .service-list__item--last {
    width: 100%;
  }
}
.service-list__item--last .service-list__item-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1023px) {
  .service-list__item--last .service-list__item-description {
    grid-template-columns: 1fr;
  }
}
.service-list__item--last .text {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--color-red);
}
@media screen and (max-width: 1023px) {
  .service-list__item--last .text {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-red);
  }
}
.service-list__item--last .list {
  line-height: 1.4;
}
.service-list__item--last .list .red:not(:first-child) {
  margin-top: 5px;
}

.solution {
  margin-top: 10rem;
}
.solution .section-title {
  text-align: center;
}
.solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8rem;
}
@media screen and (max-width: 1023px) {
  .solution-list {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.solution-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solution-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  padding-top: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 2.6rem;
  line-height: 1;
}
.solution-item__title {
  height: 80px;
  margin-top: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.solution-item__image {
  height: 200px;
}
.solution-item__image img {
  height: 100%;
  object-fit: cover;
}
.solution-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  padding: 30px 40px;
  border-radius: 20px;
  background: var(--color-red);
  color: var(--color-white);
}
.solution-summary:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top: 18px solid var(--color-white);
}
.solution-summary__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.solution-summary__text {
  margin-top: 20px;
  font-size: 1.4rem;
}
.solution-summary .poppins {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 20px;
}
.solution-summary .poppins li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  border-radius: 5px;
  background: var(--color-white);
  color: var(--color-red);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.member {
  position: relative;
  margin-top: 10rem;
  padding: 10rem 0 0;
}
.member-head {
  grid-template-columns: 325px 1fr;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .member-head {
    text-align: center;
  }
}
.member-head .section-title {
  grid-column: 2/3;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .member-head .section-title {
    text-align: center;
  }
}
.member-head .section-subtitle {
  grid-column: 2/3;
}
.member-head .section-description {
  grid-column: 2/3;
  margin-top: 4rem;
}
.member-head .section-img {
  position: relative;
  z-index: -1;
  grid-column: 1/2;
  grid-row: 1/3;
  transform: scale(1.6);
  transform-origin: 0 center;
}
@media screen and (max-width: 1023px) {
  .member-head .section-img {
    transform: scale(1);
  }
}
.member-list {
  margin-top: 8rem;
  background: var(--color-gray);
  border-radius: 20px;
  padding: 40px 60px;
}
@media screen and (max-width: 1023px) {
  .member-list {
    padding: 40px 20px;
  }
}
.member-list .poppins {
  text-align: right;
}
.member-list__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .member-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.member-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 4px;
  background: var(--color-white);
  border: 1px solid var(--color-red);
  line-height: 1;
  font-size: 1.4rem;
  color: var(--color-red);
}
.member-list__item--strong {
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .member-list__item--strong {
    font-size: 1.6rem;
  }
}

.faq {
  margin: 10rem 0 0;
  padding: 10rem 0;
  background: var(--color-gray);
}
.faq + .footer {
  margin-top: 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.faq-box {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 1023px) {
  .faq-box {
    padding: 20px;
  }
}
.faq-title {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .faq-title {
    align-items: flex-start;
    gap: 15px;
  }
}
.faq-title::before {
  content: "Q.";
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--color-red);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 3rem;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .faq-title::before {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}
.faq-title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid var(--color-red);
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .faq-title::after {
    margin-top: 20px;
    border-width: 8px;
    border-top-width: 10px;
  }
}
.faq-content {
  display: none;
}
.faq-content__text {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #DCDCDC;
}
@media screen and (max-width: 1023px) {
  .faq-content__text {
    gap: 15px;
    align-items: flex-start;
  }
}
.faq-content__text::before {
  content: "A.";
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-red);
  font-size: 3rem;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .faq-content__text::before {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1023px) {
  .ui .mainvisual__title-copy br {
    display: none;
  }
}
.ui .mainvisual__inner {
  align-items: flex-start;
}
.ui .sec1-intro-title__main {
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .ui .sec1-intro-title__main {
    font-size: calc(4rem + 2vw);
  }
}
.ui-report {
  margin-top: 6rem;
  padding: 7rem 9rem;
  border-radius: 20px;
  border: 1px solid var(--color-red);
  background: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .ui-report {
    padding: 3rem 15px;
  }
}
.ui-report__subtitle {
  margin-top: 4.5rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ui-report__subtitle {
    margin-top: 3rem;
  }
}
.ui-report-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 1023px) {
  .ui-report-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ui-report-list__item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-height: 100px;
  background: var(--color-red);
  color: var(--color-white);
  padding: 15px;
  border-radius: 10px;
  font-size: 2.2rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ui-report-list__item-box {
    font-size: 1.8rem;
  }
}
.ui-report-list__item-box:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../images/icon-asterisk-white.svg) no-repeat center center/contain;
  animation: asterisk 10s linear infinite;
}
.ui-report-list__item p {
  margin-top: 8px;
  line-height: 1.6;
}
.ui-report__text {
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.ui-report__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 7rem;
  padding-top: 7rem;
  border-top: 1px solid #D6D6D6;
}
@media screen and (max-width: 1023px) {
  .ui-report__block {
    grid-template-columns: 1fr;
  }
}
.ui-report__child {
  line-height: 1.6;
}
.ui-report__child-title {
  font-size: 2.4rem;
}
.ui-report__child-image {
  margin-top: 20px;
}
.ui-report__child-text {
  margin-top: 10px;
}
.ui-report__child-notice {
  margin-top: 20px;
  font-size: 1.4rem;
}
.ui-report .service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 7rem;
  padding-top: 7rem;
  border-top: 1px solid #D6D6D6;
}
@media screen and (max-width: 1023px) {
  .ui-report .service-list {
    grid-template-columns: 1fr;
  }
}
.ui-report .service-list__item {
  width: 100%;
}
.ui-report .service-list__item-title .noto-sans-jp-500 {
  margin-top: 10px;
}
.ui .solution-summary {
  min-height: auto;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ui .service-phase {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .ui .service-phase img {
    width: 300vw;
  }
}

.servicedesign .sec1-intro-title__main {
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .servicedesign .sec1-intro-title__main {
    font-size: calc(4rem + 2vw);
  }
}
.servicedesign .introduction::before {
  top: 41rem;
}
@media screen and (max-width: 1023px) {
  .servicedesign .introduction::before {
    top: 38rem;
  }
}
@media screen and (max-width: 1023px) {
  .servicedesign .sec1-img {
    width: 90%;
  }
}

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