@charset "UTF-8";
a {
  color: unset;
  transition: unset;
}
a:hover {
  opacity: 1;
}

/* グリッドレイアウト */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 5rem;
}
.grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr; /* スマホ表示時は1列 */
  }
}
/* SSバリューの強さの説明セクション */
#strength {
  text-align: center;
}
#strength .feature {
  background-color: #f9f9f9; /* 各ポイントの背景色 */
  padding: 20px;
}
#strength .icon {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #strength .grid {
    grid-template-columns: 1fr; /* スマホ表示時は1列 */
  }
}

/* 吹き出し */
.speech-bubble {
  position: relative;
  background: #d15252;
  padding: 3rem;
  margin: 3rem 0 10rem;
  border-radius: 30px;
}
.speech-bubble h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff; /* テキスト色を統一 */
}
.speech-bubble p {
  margin: 0;
  line-height: 1.6;
  color: #fff;
  font-size: clamp(16px, 2vw + 1rem, 18px);
}
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50px;
  border-width: 20px;
  border-style: solid;
  border-color: transparent transparent #d15252 transparent;
}

/* ユーザーの声 */
#user-examples {
  padding: 20px;
}
#user-examples .examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}
#user-examples .examples-grid .example {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 30px;
}
#user-examples .examples-grid .example img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}
@media (max-width: 768px) {
  #user-examples .examples-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* アイコンリスト */
.icon-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}
.icon-list div {
  background: #fff;
  padding: 15px;
  text-align: center;
}
.icon-list div img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .icon-list {
    grid-template-columns: 1fr;
  }
}

.strength h3:before {
  content: "";
  display: inline-block;
  background-image: url("/wp-content/themes/wp/image/new/safe-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 5rem;
  height: 5rem;
  margin-right: 1rem;
  margin-bottom: -1rem;
}

.technic h3:before {
  content: "";
  display: inline-block;
  background-image: url("/stg/wp-content/themes/wp/image/new/icon-technic.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 5rem;
  height: 5rem;
  margin-right: 1rem;
  margin-bottom: -1rem;
}

@media (max-width: 768px) {
  .svg-layer {
    height: 5vh;
  }
}

.cls-1 {
  fill: none;
  stroke: #d15252;
}

@media (max-width: 768px) {
  .cls-1 {
    fill: none;
    stroke: tan;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 319.2324523926px;
    stroke-dasharray: 319.2324523926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 319.2324523926px;
  }
}
#layer_1 .svg-elem-1 {
  animation: animate-svg-stroke-1 1s linear 0s both;
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 223.8508453369px;
    stroke-dasharray: 223.8508453369px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 223.8508453369px;
  }
}
#layer_1 .svg-elem-2 {
  animation: animate-svg-stroke-2 1s linear 0.12s both;
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 214.9478912354px;
    stroke-dasharray: 214.9478912354px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 214.9478912354px;
  }
}
#layer_1 .svg-elem-3 {
  animation: animate-svg-stroke-3 1s linear 0.24s both;
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 322.6952514648px;
    stroke-dasharray: 322.6952514648px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 322.6952514648px;
  }
}
#layer_1 .svg-elem-4 {
  animation: animate-svg-stroke-4 1s linear 0.36s both;
}
@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 349.2159423828px;
    stroke-dasharray: 349.2159423828px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 349.2159423828px;
  }
}
#layer_1 .svg-elem-5 {
  animation: animate-svg-stroke-5 1s linear 0.48s both;
}
@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 384.2431335449px;
    stroke-dasharray: 384.2431335449px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 384.2431335449px;
  }
}
#layer_1 .svg-elem-6 {
  animation: animate-svg-stroke-6 1s linear 0.6s both;
}
@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 223.8509521484px;
    stroke-dasharray: 223.8509521484px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 223.8509521484px;
  }
}
#layer_1 .svg-elem-7 {
  animation: animate-svg-stroke-7 1s linear 0.72s both;
}
@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 374.4318237305px;
    stroke-dasharray: 374.4318237305px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 374.4318237305px;
  }
}
#layer_1 .svg-elem-8 {
  animation: animate-svg-stroke-8 1s linear 0.84s both;
}

#layer_2 .svg-elem-1 {
  animation: animate-svg-stroke-11 1.2s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s
    both;
}
@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 223.8508300781px;
    stroke-dasharray: 223.8508300781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 223.8508300781px;
  }
}
#layer_2 .svg-elem-2 {
  animation: animate-svg-stroke-22 1.2s cubic-bezier(0.6, 0.04, 0.98, 0.335)
    0.12s both;
}
@keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 322.6951904297px;
    stroke-dasharray: 322.6951904297px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 322.6951904297px;
  }
}
#layer_2 .svg-elem-3 {
  animation: animate-svg-stroke-33 1.2s cubic-bezier(0.6, 0.04, 0.98, 0.335)
    0.24s both;
}
@keyframes animate-svg-stroke-33 {
  0% {
    stroke-dashoffset: 308.4252624512px;
    stroke-dasharray: 308.4252624512px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 308.4252624512px;
  }
}
#layer_2 .svg-elem-4 {
  animation: animate-svg-stroke-44 1.2s cubic-bezier(0.6, 0.04, 0.98, 0.335)
    0.36s both;
}
@keyframes animate-svg-stroke-44 {
  0% {
    stroke-dashoffset: 374.4205322266px;
    stroke-dasharray: 374.4205322266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 374.4205322266px;
  }
}
#layer_2 .svg-elem-5 {
  animation: animate-svg-stroke-55 1.2s cubic-bezier(0.6, 0.04, 0.98, 0.335)
    0.48s both;
}
@keyframes animate-svg-stroke-55 {
  0% {
    stroke-dashoffset: 349.216003418px;
    stroke-dasharray: 349.216003418px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 349.216003418px;
  }
}
#layer_2 .svg-elem-6 {
  animation: animate-svg-stroke-66 1.2s cubic-bezier(0.6, 0.04, 0.98, 0.335)
    0.6s both;
}
@keyframes animate-svg-stroke-66 {
  0% {
    stroke-dashoffset: 244.3600006104px;
    stroke-dasharray: 244.3600006104px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 244.3600006104px;
  }
}
#layer_2 .svg-elem-7 {
  animation: animate-svg-stroke-77 1.2s cubic-bezier(0.6, 0.04, 0.98, 0.335)
    0.72s both;
}
@keyframes animate-svg-stroke-77 {
  0% {
    stroke-dashoffset: 308.4334411621px;
    stroke-dasharray: 308.4334411621px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 308.4334411621px;
  }
}
@keyframes animate-svg-stroke-111 {
  0% {
    stroke-dashoffset: 302.703918457px;
    stroke-dasharray: 302.703918457px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 302.703918457px;
  }
}
#layer_3 .svg-elem-1 {
  animation: animate-svg-stroke-111 1s linear 0s both;
}
@keyframes animate-svg-stroke-222 {
  0% {
    stroke-dashoffset: 301.2092895508px;
    stroke-dasharray: 301.2092895508px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 301.2092895508px;
  }
}
#layer_3 .svg-elem-2 {
  animation: animate-svg-stroke-222 1s linear 0.12s both;
}
@keyframes animate-svg-stroke-333 {
  0% {
    stroke-dashoffset: 244.3600006104px;
    stroke-dasharray: 244.3600006104px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 244.3600006104px;
  }
}
#layer_3 .svg-elem-3 {
  animation: animate-svg-stroke-333 1s linear 0.24s both;
}
@keyframes animate-svg-stroke-444 {
  0% {
    stroke-dashoffset: 308.4383850098px;
    stroke-dasharray: 308.4383850098px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 308.4383850098px;
  }
}
#layer_3 .svg-elem-4 {
  animation: animate-svg-stroke-444 1s linear 0.36s both;
}
@keyframes animate-svg-stroke-555 {
  0% {
    stroke-dashoffset: 322.7107849121px;
    stroke-dasharray: 322.7107849121px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 322.7107849121px;
  }
}
#layer_3 .svg-elem-5 {
  animation: animate-svg-stroke-555 1s linear 0.48s both;
}

#svg-layer_1,
#svg-layer_2,
#svg-layer_3 {
  height: 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #svg-layer_1,
  #svg-layer_2,
  #svg-layer_3 {
    height: 70px;
  }
}

.svg-layer {
  display: none;
}

.is-active {
  display: block;
}

.company-contents h2,
#user-examples h2 {
  font-size: 6rem;
  color: #d15252;
  text-align: start;
  margin-bottom: 8rem;
  opacity: 0.5;
  font-style: italic;
  margin-top: -5rem;
}
@media (max-width: 768px) {
  .company-contents h2,
  #user-examples h2 {
    margin-top: 0.3rem;
    text-align: center;
    font-size: 3rem;
    opacity: 1;
    margin-bottom: 4rem;
  }
}
.company-contents ul,
#user-examples ul {
  margin-top: 3rem;
}
.company-contents div:last-of-type,
#user-examples div:last-of-type {
  text-align: center;
}
.company-contents div:last-of-type p,
#user-examples div:last-of-type p {
  text-align: start;
  margin-block: 3rem;
}

.cta {
  margin-top: 3rem;
}
.cta h2 {
  font-size: clamp(2rem, -1rem + 12.8vw, 3rem);
}
.cta p {
  margin-block: 3rem;
}
.cta .new_btn {
  margin-bottom: 10rem;
}

.example p {
  padding-block: 2rem;
  text-align: start;
}
.example h4 {
  text-align: start;
  padding-top: 2rem;
}

.cert {
  flex-direction: row !important;
  justify-content: unset !important;
  max-width: 50%;
}

.new_btn {
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #d15252;
  background-color: #fff;
  position: relative;
  border: 1px solid #d15252;
  transition: color 0.5s ease;
}
.new_btn:hover {
  color: #fff;
}
.new_btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.new_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #d15252;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.text {
  position: relative;
}

#gallery .new_btn {
  margin-bottom: 15rem;
}

.strength_button {
  text-align: center;
}

.technic .comp {
  font-size: xx-small;
}

@media (max-width: 425px) {
  #svg-layer_1,
  #svg-layer_2,
  #svg-layer_3 {
    justify-content: start;
  }
} /*# sourceMappingURL=new.css.map */
