@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style-type: none;
}

html {
  width: 100%;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

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

/* A elements default styles */
a {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

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

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

/* Remove all animations and transitions 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;
  }
}
html {
  box-sizing: border-box;
  overflow-y: scroll;
  color: #222;
  font-size: 62.5%;
  background-color: #FFF;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  color: #222;
  font-size: 1.4rem;
  line-height: 1.714;
  letter-spacing: 0.02em;
  background-color: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
}

.noscript-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  text-align: center;
  padding: 30px;
  font-size: 16px;
  z-index: 1000;
}

@media only screen and (max-width:768px) {
  .noscript-popup {
    font-size: 14px;
    padding: 20px 30px;
  }
}
a {
  color: #222;
}

.check {
  width: 53px;
  height: 53px;
  border-radius: 50px;
  background: #171717;
  color: #FFF;
  font-size: 15px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #222;
  font-weight: 900;
  row-gap: 11px;
  line-height: 1;
}
.section__sub-title {
  font-size: 24px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  color: #E43231;
  font-weight: 800;
  line-height: 1.0335;
}

@media only screen and (max-width:768px) {
  .section__title {
    font-size: 30px;
    row-gap: 9px;
  }
  .section__sub-title {
    font-size: 18px;
    line-height: 1.278;
  }
}
.circle-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #EFEFEF;
}

.circle-1 {
  width: 370px;
  height: 370px;
  margin: 20px;
}

.circle-2 {
  width: 330px;
  height: 330px;
  margin: 20px;
}

.circle-3 {
  width: 290px;
  height: 290px;
  margin: 20px;
}

.circle-4 {
  width: 250px;
  height: 250px;
  margin: 20px;
}

.circle-5 {
  width: 210px;
  height: 210px;
  margin: 20px;
}

.circle-6 {
  width: 170px;
  height: 170px;
  margin: 20px;
}

.center-button {
  position: relative;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background-color: #FFF;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ED2B2B;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.11);
  transition: background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.center-button::after {
  content: "▶︎";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  font-size: 8px;
  line-height: 1;
  color: #ED2B2B;
}

.center-button:hover {
  background-color: #FFF;
  width: 160px;
  height: 160px;
}

.center-button:hover::after {
  transform: translate(5px, -4px);
}

@media only screen and (max-width:768px) {
  .circle-1 {
    width: 290px;
    height: 290px;
  }
  .circle-2 {
    width: 250px;
    height: 250px;
  }
  .circle-3 {
    width: 210px;
    height: 210px;
  }
  .circle-4 {
    width: 170px;
    height: 170px;
  }
  .circle-5 {
    display: none;
  }
  .circle-6 {
    display: none;
  }
  .center-button.-sp-only {
    display: flex !important;
  }
}
@media only screen and (min-width:769px) {
  .mobile_bottom_area {
    display: none !important;
  }
}
@media only screen and (max-width:768px) {
  .mobile_bottom_area {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
  }
  .mobile_bottom_area a {
    display: flex;
    width: 50%;
    font-size: 16px;
    align-items: center;
    justify-content: center;
  }
  .mobile_bottom_area a.btn-reservation {
    gap: 8px;
    color: #FFF;
  }
  .mobile_bottom_area a.btn-reservation img {
    margin-bottom: 2px;
  }
  .mobile_bottom_area a.btn-consultation {
    gap: 4px;
    background-color: #FFF;
  }
  .mobile_bottom_area a.btn-consultation img {
    margin-bottom: 2px;
  }
}
@media only screen and (max-width:768px) {
  .-pc-only {
    display: none !important;
  }
}

.-sp-only {
  display: none !important;
}
@media only screen and (max-width:768px) {
  .-sp-only {
    display: inline-block !important;
  }
}

.-sp-only-block {
  display: none !important;
}
@media only screen and (max-width:768px) {
  .-sp-only-block {
    display: block !important;
  }
}

.-tac {
  text-align: center;
}

.-hover-pointer {
  transition: 0.3s;
}
.-hover-pointer:hover {
  transition: 0.3s;
  cursor: pointer;
}

.-color-white {
  color: #FFF;
}

.-bg-white {
  background-color: #FFF;
}

.-flex {
  display: flex;
}

.-tategaki {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.-pc-br {
  display: block;
}

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

@media only screen and (max-width:768px) {
  .-tab-br {
    display: block;
  }
}
.-sp-br {
  display: none;
}

@media only screen and (max-width:430px) {
  .-sp-br {
    display: block;
  }
}
.-space-lr {
  padding-left: 40px;
  padding-right: 40px;
}

@media only screen and (max-width:768px) {
  .-space-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
:root {
  --gap: 0px;
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
  --rev-scroll-start: calc(-100% - var(--gap));
  --rev-scroll-end: 0;
}

/*====================================================================
    header
/*==================================================================*/
.header {
  padding: 10px 40px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
  color: #222;
  transition: top 0.3s, background-color 0.6s ease-in-out;
}
.header__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: clamp(15rem, 14.9739583333vw, 23rem);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__logo:hover {
  opacity: 0.7;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.6rem, 2.0833333333vw, 3.2rem);
}
.header__navList {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 2.0833333333vw, 3.2rem);
}
.header__navItem {
  display: block;
  font-size: clamp(1rem, 0.9765625vw, 1.5rem);
  line-height: clamp(1rem, 0.9765625vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #222;
}
.header__navItem:hover {
  opacity: 0.5;
}
.header__btns {
  display: flex;
  flex-wrap: wrap;
}
.header__btn {
  background: #ED2B2B;
  border-radius: 32px;
  width: clamp(14rem, 11.71875vw, 18rem);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: none;
  height: 50px;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  color: #FFF;
  line-height: 1;
  border: 2px solid #ED2B2B;
}
.header__btn:hover {
  background: #FFF;
  color: #ED2B2B;
}
.header__btn:hover .header__letter {
  background-image: url("../images/letter.svg");
}
.header__letter {
  width: 15px;
  height: 11px;
  background-image: url("../images/letter_white.svg");
  margin-right: 4px;
  margin-top: 2px;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__btn.-diagnosis {
  color: #ED2B2B;
  display: flex;
  flex-direction: column;
  background: #FFF;
}
.header__tel {
  font-size: 26px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.header__tel img {
  margin-right: 4px;
}
.header__business-hour {
  display: flex;
  align-items: center;
}
.header__hamburger {
  width: 2.6rem;
  height: 1rem;
  position: relative;
  cursor: pointer;
  z-index: 3;
}
.header__hamburger::before, .header__hamburger::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #1D1D1D;
  border-radius: 500px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__hamburger::before {
  top: 0;
}
.header__hamburger::after {
  bottom: 0;
}
.header.-active {
  background: transparent;
  z-index: 999;
}
.header.-active .header__logo {
  opacity: 0;
  visibility: hidden;
}
.header.-active .header__hamburger::before {
  top: 50%;
  transform: translate(0%, -50%) rotate(-45deg);
}
.header.-active .header__hamburger::after {
  top: 50%;
  transform: translate(0%, -50%) rotate(45deg);
}
.header__contact {
  display: none;
}

@media only screen and (min-width: 1000px) {
  .header__btn.-diagnosis {
    display: none;
  }
  .header__hamburger {
    display: none;
  }
  .header__hamburger {
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 2;
    transform: translateX(100%);
    background: #F5F5F5;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 9rem 3rem 1rem;
    overflow-y: scroll;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 50px;
  }
  .header__logo {
    width: 23rem;
  }
  .header__navList {
    flex-wrap: wrap;
    padding: 0 4rem;
    max-width: 37.5rem;
    row-gap: 40px;
  }
  .header__navItem {
    font-size: 1.8rem;
    line-height: 1.5;
    white-space: inherit;
    width: 100%;
  }
  .header__navItem:last-of-type {
    margin-bottom: 0;
  }
  .header__navItem:hover {
    font-size: 1.9rem;
  }
  .header__btns {
    height: -moz-max-content;
    height: max-content;
    row-gap: 26px;
  }
  .header__btn {
    width: 100%;
    height: 64px;
    font-size: 20px;
    letter-spacing: 0.08em;
    border: 3px solid #ED2B2B;
  }
  .header.-active .header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .header__letter {
    width: 24px;
    height: 18px;
    margin-right: 7px;
  }
  .header__business-hour {
    font-size: 12px;
    font-family: "din-2014", "DIN Alternate", sans-serif;
  }
  .header__business-hour span {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 10px;
  }
  .header__contact {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #ED2B2B;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width:768px) {
  .header {
    padding: 2rem;
    height: 60px;
  }
  .header__logo {
    width: 16.8rem;
  }
  .header__nav {
    overflow-y: scroll;
    max-width: 100svh;
    padding: 87px 47px 120px;
  }
  .header__navList {
    row-gap: 46px;
    align-items: flex-start;
  }
  .header__navItem {
    margin: 0;
    font-size: 20px;
    line-height: 1;
  }
  .header__contact {
    right: 62px;
  }
}
/*====================================================================
    main
/*==================================================================*/
main {
  overflow: hidden;
}

/*====================================================================
    KV
/*==================================================================*/
.kv {
  width: 100%;
  height: auto;
  margin-top: 70px;
}
.kv img {
  width: 100%;
  height: auto;
}

#kv-loading {
  width: 100vw;
  height: 100vh;
  background-color: #FFF;
}

@media only screen and (max-width:768px) {
  .kv {
    margin-top: 60px;
  }
}
/*====================================================================
    business-partner
/*==================================================================*/
.marquee__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
  padding-top: 67px;
}
.marquee__wrapper .marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.marquee__wrapper .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__wrapper .marquee__group {
    animation-play-state: paused;
  }
}
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@media only screen and (max-width:768px) {
  .business-partners {
    padding-top: 100px;
  }
  .marquee__wrapper {
    padding-top: 35px;
  }
  .marquee__wrapper .marquee__group img {
    width: 100px;
    height: 100px;
  }
}
/*====================================================================
    worries
/*==================================================================*/
.worries {
  padding-top: 160px;
  padding-bottom: 0;
  overflow-x: hidden;
  position: relative;
}
.worries__title__wrapper {
  display: flex;
  justify-content: center;
}
.worries__title {
  text-align: center;
  font-size: 36px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  color: #000;
  line-height: 1;
  margin-top: 13px;
  position: relative;
}
.worries__title span {
  color: #ED2B2B;
  font-size: 50px;
}
.worries__title::before {
  position: absolute;
  content: "？";
  color: #F5F5F5;
  font-size: 198px;
  font-weight: bold;
  transform: rotate(15deg);
  right: -214px;
  bottom: -130px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.worries__title::after {
  position: absolute;
  content: "？";
  color: #F5F5F5;
  font-size: 140px;
  font-weight: bold;
  transform: rotate(-15deg);
  left: -208px;
  bottom: -313px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.worries__list {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
  height: 500px;
}
.worries__list-item {
  display: flex;
  flex-direction: row;
  column-gap: 30px;
  background: #F5F5F5;
  border-radius: 86px;
  justify-content: center;
  align-items: center;
  padding: 40px 60px 40px 50px;
}
.worries__list-item:nth-child(1) {
  width: 100%;
  max-width: 626px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.worries__list-item:nth-child(2) {
  max-width: 553px;
  position: absolute;
  right: 0;
  bottom: 97px;
}
.worries__list-item:nth-child(3) {
  max-width: 517px;
  position: absolute;
  left: 0;
  bottom: 53px;
}
.worries__list-item:nth-child(odd) .worries__item-textarea {
  position: relative;
}
.worries__list-item:nth-child(odd) .worries__item-textarea::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: #F5F5F5;
  border-radius: 50px;
  bottom: -81px;
  left: -102px;
}
.worries__list-item:nth-child(odd) .worries__item-textarea::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #F5F5F5;
  border-radius: 50px;
  bottom: -97px;
  left: -72px;
}
.worries__list-item:nth-child(even) .worries__item-textarea {
  position: relative;
}
.worries__list-item:nth-child(even) .worries__item-textarea::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: #F5F5F5;
  border-radius: 50px;
  bottom: -81px;
  right: -16px;
}
.worries__list-item:nth-child(even) .worries__item-textarea::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #F5F5F5;
  border-radius: 50px;
  bottom: -97px;
  right: 14px;
}
.worries__item-img {
  width: 85px;
  height: 85px;
}
.worries__item-img img {
  width: 100%;
  height: auto;
}
.worries__item-title {
  color: #ED2B2B;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.15;
}
.worries__item-txt {
  line-height: 1;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000;
  position: relative;
  padding-left: 18px;
  letter-spacing: -0.1px;
}
.worries__item-txt:last-child {
  margin-top: 6px;
}
.worries__item-txt::before {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  background-image: url("../images/worries/worries_check.svg");
  left: 0px;
  top: 2px;
}
.worries__arrows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 38.18px;
  height: 90.45px;
  position: relative;
  margin: 0 auto;
}
.worries__arrow {
  position: absolute;
  width: 27px;
  height: 27px;
  border: 1px solid #171717;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  font-size: 19.1px;
  left: 50%;
}
.worries__arrow:nth-child(1) {
  top: -15px;
  left: 15px;
  transform: translateY(-25%) rotate(135deg) translateX(50%);
}
.worries__arrow:nth-child(2) {
  top: 21px;
  left: 15px;
  transform: translateY(-25%) rotate(135deg) translateX(50%);
}
.worries__arrow:nth-child(3) {
  top: 55px;
  left: 15px;
  transform: translateY(-25%) rotate(135deg) translateX(50%);
}

@media screen and (max-width: 1179px) {
  .worries {
    overflow-x: hidden;
  }
  .worries__title::before {
    right: -149px;
    bottom: -48px;
  }
  .worries__title::after {
    left: -120px;
    bottom: -64px;
  }
  .worries__list {
    margin: 80px auto 0;
    height: 670px;
    max-width: 626px;
  }
  .worries__list::before {
    right: -91px;
    top: -296px;
  }
  .worries__list::after {
    left: -81px;
    top: -181px;
  }
  .worries__list-item {
    justify-content: flex-start;
  }
  .worries__list-item:nth-child(2) {
    width: 100%;
    max-width: 626px;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 50%;
  }
  .worries__list-item:nth-child(3) {
    width: 100%;
    max-width: 626px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .worries__arrows {
    margin: 56px auto 50px;
  }
}
@media only screen and (max-width:768px) {
  .worries {
    padding-top: 100px;
  }
  .worries::before {
    bottom: 5px;
    font-size: 14px;
    width: 95px;
    height: 95px;
  }
  .worries::after {
    border-bottom: 100px solid #383838;
  }
  .worries__title {
    font-size: 28px;
    margin-top: 18px;
    line-height: 1.45;
  }
  .worries__title span {
    font-size: 40px;
  }
  .worries__title::before {
    right: -125px;
    bottom: -58px;
  }
  .worries__title::after {
    left: -102px;
    bottom: -74px;
  }
  .worries__list {
    margin: 85px auto 0;
    height: 998px;
    max-width: 440px;
  }
  .worries__list-item {
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 139px;
    padding: 30px 75px;
    row-gap: 25px;
  }
  .worries__list-item:nth-child(2) {
    width: 100%;
    left: 50%;
    transform: translate(-50%, calc(50% + 8px));
    bottom: 50%;
  }
  .worries__list-item:nth-child(3) {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .worries__list-item:nth-child(odd) .worries__item-textarea::before {
    bottom: -65px;
    left: -60px;
  }
  .worries__list-item:nth-child(odd) .worries__item-textarea::after {
    bottom: -81px;
    left: -30px;
  }
  .worries__list-item:nth-child(even) .worries__item-textarea::before {
    bottom: -65px;
    right: -50px;
  }
  .worries__list-item:nth-child(even) .worries__item-textarea::after {
    bottom: -81px;
    right: -20px;
  }
  .worries__item-title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }
  .worries__item-txt {
    font-size: 14px;
  }
  .worries__item-txt:last-child {
    margin-top: 4px;
  }
  .worries__arrows {
    margin-top: 56px;
  }
  .worries__arrow {
    position: absolute;
    width: 27px;
    height: 27px;
    border: 1px solid #171717;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    font-size: 19.1px;
    left: 50%;
  }
  .worries__arrow:nth-child(1) {
    top: -15px;
    left: 15px;
    transform: translateY(-25%) rotate(135deg) translateX(50%);
  }
  .worries__arrow:nth-child(2) {
    top: 21px;
    left: 15px;
    transform: translateY(-25%) rotate(135deg) translateX(50%);
  }
  .worries__arrow:nth-child(3) {
    top: 55px;
    left: 15px;
    transform: translateY(-25%) rotate(135deg) translateX(50%);
  }
}
@media screen and (max-width: 479px) {
  .worries__list {
    max-height: 895px;
  }
  .worries__list-item {
    border-radius: 40px;
    padding: 30px 23px;
  }
  .worries__list-item:nth-child(odd) .worries__item-textarea::before {
    left: 0;
  }
  .worries__list-item:nth-child(odd) .worries__item-textarea::after {
    left: 30px;
  }
  .worries .worries__list-item:nth-child(even) .worries__item-textarea::before {
    right: 0;
  }
  .worries .worries__list-item:nth-child(even) .worries__item-textarea::after {
    right: 30px;
  }
}
/*====================================================================
    ロゾパンサン x Shopify
/*==================================================================*/
.strengths {
  background: #383838;
  padding-bottom: calc(10vw + 10px);
  position: relative;
  overflow: hidden;
  padding-top: 214px;
  padding-bottom: 206px;
  line-height: 1;
}
.strengths::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  border-top: 214px solid #FFF;
  border-right: 100vw solid transparent;
}
.strengths__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.strengths__inner::before {
  position: absolute;
  top: -164px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  content: "そのお悩み";
  color: #FFF;
  font-size: 18px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  border-radius: 50%;
  background: #171717;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.strengths::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 214px solid #FFF;
  border-left: 100vw solid transparent;
}
.strengths__side-txt {
  font-size: clamp(100px, 3.347rem + 5vw, 120px);
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #555;
  text-stroke: 1px #555;
}
.strengths__left-txt {
  position: absolute;
  left: 0;
  bottom: -170px;
  line-height: 1.3084;
}
.strengths__right-txt {
  position: absolute;
  right: 0;
  top: -120px;
}
.strengths__main {
  height: 100%;
}
.strengths__title {
  color: #FFF;
  text-align: center;
  font-size: 50px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.1092;
  font-weight: 900;
}
.strengths__title__cross {
  color: red;
  margin: 0 13.5px 0 20.5px;
  display: inline-block;
  width: 41px;
  height: 41px;
  position: relative;
}
.strengths__title__cross::before, .strengths__title__cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 55px;
  background: #FFF;
}
.strengths__title__cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.strengths__title__cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.strengths__title__din {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 60px;
  font-weight: bold;
}
.strengths__title__sm {
  font-size: 40px;
}
.strengths__box__wrapper {
  display: flex;
  flex-direction: row;
  max-width: 1064px;
  margin: 83px auto 0;
  column-gap: 75px;
}
.strengths__box {
  background: #FFF;
  width: calc((100% - 75px) / 2);
  position: relative;
  padding: 65px 70px 86px;
}
.strengths__box:first-child::before, .strengths__box:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40.5px;
  width: 3px;
  height: 170px;
  background: #ED2B2B;
  z-index: 10;
}
.strengths__box:first-child::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.strengths__box:first-child::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.strengths__speech-balloon {
  position: absolute;
  top: -16.5px;
  left: 50%;
  transform: translateX(-50%);
  background: #ED2B2B;
  color: #FFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.125;
  padding: 9px 37px 7px;
}
.strengths__triangle {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 9px;
  clip-path: polygon(50% 9px, 0% 0%, 10px 0%);
  background: #ED2B2B;
}
.strengths__box-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #ED2B2B;
  text-align: center;
  line-height: 1;
}
.strengths__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 49px;
}
.strengths__list li {
  display: flex;
  flex-direction: row;
  column-gap: 12px;
  align-items: center;
}
.strengths__point {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #171717;
  color: #FFF;
  padding: 14px 20px;
  font-size: 30px;
  font-weight: bold;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  line-height: 1;
}
.strengths__point span {
  font-size: 14px;
  font-weight: 800;
}
.strengths__txt {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  line-height: 1.167;
  row-gap: 2px;
}
.strengths__txt span {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.17px;
}

@media screen and (max-width: 1400px) {
  .strengths {
    padding-bottom: 300px;
  }
  .strengths__box {
    padding: 52px 52px 62px;
  }
}
@media screen and (max-width: 1179px) {
  .strengths__box__wrapper {
    flex-direction: column;
    row-gap: 160px;
    margin: 200px auto 0;
  }
  .strengths__box {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 50px 100px;
  }
  .strengths__box:first-child::before, .strengths__box:first-child::after {
    top: unset;
    bottom: -175px;
    right: 50%;
    height: 100px;
  }
  .strengths__title__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .strengths__title {
    position: absolute;
    text-align: center;
  }
  .strengths__left-txt {
    bottom: -240px;
  }
  .strengths__right-txt {
    z-index: 0;
  }
}
@media only screen and (max-width:768px) {
  .strengths {
    padding-top: 170px;
    padding-bottom: 147px;
  }
  .strengths::before {
    border-top: 100px solid #FFF;
  }
  .strengths::after {
    border-bottom: 100px solid #FFF;
  }
  .strengths__inner::before {
    top: -162px;
    width: 95px;
    height: 95px;
    font-size: 14px;
  }
  .strengths__title {
    font-size: 30px;
    letter-spacing: -0.1px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
  }
  .strengths__title__cross {
    margin: 0 8px 0 8.5px;
    width: 24px;
    height: 24px;
  }
  .strengths__title__cross::before, .strengths__title__cross::after {
    height: 30px;
  }
  .strengths__title__din {
    font-size: 36px;
  }
  .strengths__title__sm {
    font-size: 24px;
  }
  .strengths__right-txt {
    z-index: 0;
    right: -10px;
    top: -90px;
  }
  .strengths__left-txt {
    left: -30px;
    bottom: -98px;
  }
  .strengths__box__wrapper {
    margin-top: 139px;
    row-gap: 111px;
  }
  .strengths__box {
    max-width: 440px;
    padding: 57px 20px 50px;
  }
  .strengths__box:first-child::before, .strengths__box:first-child::after {
    bottom: -132px;
    height: 82px;
    right: calc(50% - 3px);
  }
  .strengths__speech-balloon {
    width: 215px;
    padding: 9px 16px;
    text-align: center;
  }
  .strengths__triangle {
    top: 19px;
  }
  .strengths__box-title {
    font-size: 24px;
  }
  .strengths__list {
    margin-top: 34px;
    row-gap: 40px;
  }
  .strengths__point {
    width: 50px;
    height: 50px;
    font-size: 20px;
    align-items: center;
  }
  .strengths__point span {
    font-size: 10px;
  }
  .strengths__txt {
    font-size: 22px;
  }
  .strengths__txt span {
    letter-spacing: 1px;
    line-height: 1.35;
  }
}
/*====================================================================
    Shopify Partner Directory
/*==================================================================*/
.partner-directory {
  padding-top: 73px;
}
.partner-directory__inner {
  display: flex;
  flex-direction: row;
  column-gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.partner-directory__logo {
  display: flex;
}
.partner-directory__logo img {
  width: 100%;
  height: auto;
}
.partner-directory__en-ttl {
  color: #E43231;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.29;
}
.partner-directory__ttl {
  margin-top: 10px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  color: #000;
  font-size: 36px;
  line-height: 1.27;
  letter-spacing: 0;
}
.partner-directory__desc {
  margin-top: 30px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 2;
  letter-spacing: 0;
}
.partner-directory__annotation {
  margin-top: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #000;
}

@media only screen and (max-width:768px) {
  .partner-directory {
    padding-top: 80px;
  }
  .partner-directory__inner {
    flex-direction: column;
  }
  .partner-directory__logo {
    display: none;
  }
  .partner-directory__en-ttl {
    font-size: 18px;
    line-height: 1.27;
  }
  .partner-directory__ttl {
    margin-top: 14px;
    font-size: 30px;
    line-height: 1.2;
  }
  .partner-directory__txt-area {
    text-align: center;
  }
  .partner-directory__desc {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
  }
  .partner-directory__annotation {
    margin-top: 20px;
  }
}
/*====================================================================
    Contact component
/*==================================================================*/
.contact__inner {
  background: #ED2B2B;
  border: 8px solid #ED2B2B;
  border-radius: 8px;
  max-width: 820px;
  color: #FFF;
  margin: 0 auto;
  padding: 44px 89px 50px;
}
.contact__title {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: 67px;
  text-align: center;
  line-height: 1.284;
}
.contact__txt-1 {
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.15;
  margin-top: 5px;
}
.contact__txt-2 {
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 40px;
  line-height: 1.1;
  margin-top: 22px;
  font-weight: 900;
}
.contact__btn-area {
  display: flex;
  flex-direction: row;
  column-gap: 22px;
  justify-content: center;
  margin-top: 40px;
  max-width: 822px;
}
.contact__btn {
  border-radius: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: calc((100% - 22px) / 2);
  height: 80px;
  padding-bottom: 2px;
}
.contact__btn:nth-child(1) {
  color: #ED2B2B;
  border: 3px solid #FFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: bold;
  background: #FFF;
  column-gap: 7px;
  position: relative;
  padding-left: 31px;
}
.contact__btn:nth-child(1)::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-87px, -50%);
  content: "";
  width: 24px;
  height: 18px;
  background-image: url("../images/letter.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.contact__btn:nth-child(1):hover {
  color: #FFF;
  background: #ED2B2B;
}
.contact__btn:nth-child(1):hover::before {
  background-image: url("../images/letter_white.svg");
}
.contact__btn:nth-child(2) {
  color: #FFF;
  border: 3px solid #FFF;
  flex-direction: column;
  padding-top: 6px;
}
.contact__tel {
  font-size: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
}
.contact__business-time {
  font-size: 12px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: bold;
}
.contact__business-time span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 10px;
}

@media screen and (max-width: 840px) {
  .contact__inner {
    padding: 52px 50px 60px;
  }
  .contact__btn-area {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    margin-top: 50px;
  }
  .contact__btn {
    width: 100%;
    max-width: 500px;
  }
}
@media only screen and (max-width:768px) {
  .contact__inner {
    border-radius: 4px;
    padding: 60px 28px 70px;
  }
  .contact__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 1.292;
  }
  .contact__txt-1 {
    font-size: 14px;
    line-height: 1.15;
    margin-top: -6px;
  }
  .contact__txt-2 {
    font-size: 24px;
    line-height: 1.3544;
    margin-top: 33px;
  }
  .contact__txt-2 .-tab-br {
    display: none;
  }
  .contact__btn-area {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    margin-top: 28px;
  }
  .contact__btn {
    height: 60px;
    max-width: 400px;
  }
  .contact__btn:nth-child(1) {
    width: 100%;
    font-size: 18px;
    padding-left: 20px;
  }
  .contact__btn:nth-child(1)::before {
    width: 21px;
    height: 15px;
    transform: translate(-69px, -50%);
  }
  .contact__btn:nth-child(2) {
    width: 100%;
    row-gap: 1px;
    padding-top: 2px;
  }
  .contact__tel {
    font-size: 24px;
    line-height: 1;
  }
  .contact__tel img {
    width: 12px;
    height: 18px;
  }
  .contact__business-time {
    line-height: 1;
  }
  .contact__business-time span {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 10px;
  }
}
@media screen and (max-width: 430px) {
  .contact__txt-2 .-tab-br {
    display: block;
  }
}
/*====================================================================
    Contact component
/*==================================================================*/
.contact-1 {
  padding-top: 150px;
  padding-bottom: 200px;
}

@media only screen and (max-width:768px) {
  .contact-1 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/*====================================================================
    four-points
/*==================================================================*/
.four-points__inner {
  max-width: 1050px;
  margin: 0 auto;
}
.four-points__title {
  text-align: center;
}
.four-points__title p {
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}
.four-points__title h2 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 40px;
  color: #000;
  line-height: 1.7;
  margin-top: 23px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.four-points__title h2 div {
  position: relative;
  padding-left: 43px;
}
.four-points__title h2 span::before {
  position: absolute;
  bottom: 3px;
  left: calc(50% - 82px);
  transform: translateX(-50%);
  content: "4";
  font-size: 78px;
  font-weight: bold;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  color: #ED2B2B;
  line-height: 1;
}
.four-points__description {
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  color: #171717;
  line-height: 1.517;
  margin-top: 60px;
}
.four-points .flex-row-container__wrapper {
  background-image: url(../images/four-points/reason_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  padding: 0 40px;
}
.four-points .flex-row-container {
  display: flex;
  column-gap: 24px;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 120px;
  margin: 0 auto;
  max-width: 1050px;
}
.four-points .flex-column-container {
  display: flex;
  flex-direction: column;
  max-width: 1050px;
}
.four-points .flex-item {
  background-color: #FFF;
  margin: 0;
  padding: 50px 50px 70px;
  border-radius: 30px;
  max-width: 512px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
}
.four-points .flex-item:first-child {
  margin: 0 0 50px;
}
.four-points .flex-item:last-child {
  margin: 0;
}
.four-points .flex-item.item3 {
  margin-top: 120px;
}
.four-points .reason__num {
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: bold;
  font-size: 23px;
  line-height: 1.2693;
}
.four-points .reason__num span {
  font-size: 60px;
  margin-left: 6px;
  letter-spacing: -0.5px;
}
.four-points .reason__sub-title {
  margin-bottom: 13px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 900;
}
.four-points .reason__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #ED2B2B;
  line-height: 1.217;
}
.four-points .reason__description {
  margin-top: 42px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.715;
  color: #000;
}

@media screen and (min-width: 1536px) {
  .four-points .flex-row-container__wrapper {
    background-size: cover;
  }
}
@media (max-width: 1140px) and (min-width: 769px) {
  .four-points .flex-item {
    padding: 45px 30px 60px;
  }
  .four-points .reason__sub-title {
    font-size: clamp(13px, 0.7rem + 0.85vw, 20px);
  }
  .four-points .reason__title {
    font-size: clamp(20px, 1rem + 1.35vw, 30px);
  }
  .four-points .reason__description {
    margin-top: 30px;
  }
}
@media only screen and (max-width:768px) {
  .four-points__title p {
    font-size: 18px;
  }
  .four-points__title h2 {
    font-size: 30px;
    line-height: 1.65;
    margin-top: 14px;
    row-gap: 16px;
  }
  .four-points__title h2 div {
    line-height: 1;
    padding-left: 32px;
  }
  .four-points__title h2 span::before {
    font-size: 60px;
    bottom: -9px;
    left: calc(50% - 62px);
  }
  .four-points__description {
    margin: 37.5px auto 0;
    font-size: 14px;
    text-align: left;
    line-height: 1.643;
    display: table;
  }
  .four-points .reason__num {
    font-size: 14px;
  }
  .four-points .reason__num span {
    font-size: 40px;
    margin-left: 4px;
  }
  .four-points .reason__sub-title {
    flex-direction: row;
    align-items: center;
    column-gap: 7px;
    margin-bottom: 6px;
    font-size: clamp(13px, 0.7rem + 1.45vw, 18px);
  }
  .four-points .reason__title {
    font-size: 26px;
    font-size: clamp(22px, 1.25rem + 1.8vw, 26px);
    line-height: 1.41;
  }
  .four-points .reason__description {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 26px;
  }
  .four-points .flex-row-container__wrapper {
    background-image: url(../images/four-points/reason_sp_bg.png);
    background-size: contain;
    padding: 0 20px;
  }
  .four-points .flex-row-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 55px;
    row-gap: 40px;
  }
  .four-points .flex-column-container {
    row-gap: 40px;
  }
  .four-points .flex-item {
    margin: 0 !important;
    max-width: 600px;
  }
  .four-points .flex-item.item2 .reason__description {
    row-gap: 0;
  }
  .four-points .flex-item.item2 .reason__description p:first-child {
    margin-bottom: 26px;
  }
}
@media only screen and (max-width:430px) {
  .four-points .flex-row-container__wrapper {
    background-size: 800px;
    background-position-x: -152px;
  }
  .four-points .flex-item {
    padding: 50px 30px 56px;
  }
  .four-points .reason__sub-title {
    font-size: 16px;
    line-height: 1.18;
  }
  .four-points .reason__title {
    font-size: 26px;
  }
}
/*====================================================================
    case-studies（制作事例）
/*==================================================================*/
.case-studies {
  padding-top: 96px;
  padding-bottom: 889px;
}
@keyframes rev-scroll-x {
  from {
    transform: translateX(var(--rev-scroll-start));
  }
  to {
    transform: translateX(var(--rev-scroll-end));
  }
}
.case-studies .marquee__wrapper {
  padding-top: 107px;
  position: relative;
}
.case-studies .marquee {
  position: absolute;
  z-index: 5;
  height: 378px;
  column-gap: 20px;
}
.case-studies .marquee__group {
  column-gap: 20px;
  animation: scroll-x 60s linear infinite;
}
.case-studies .-sp-only .marquee__group {
  column-gap: 20px;
  animation: rev-scroll-x 50s linear infinite;
}
.case-studies__link-btn {
  position: relative;
}
.case-studies .circle-wrapper {
  top: 287px;
}

@media only screen and (max-width:768px) {
  .case-studies {
    padding-top: 0;
    padding-bottom: 770px;
  }
  .case-studies .marquee__wrapper {
    padding-top: 63px;
  }
  .case-studies .marquee__wrapper.-sp-only {
    padding-top: 28px;
  }
  .case-studies .marquee__wrapper.-sp-only .marquee {
    top: 213px;
    width: 100vw;
  }
  .case-studies .marquee {
    height: 185px;
    column-gap: 14px;
  }
  .case-studies .marquee__group {
    column-gap: 14px;
    animation: scroll-x 50s linear infinite;
  }
  .case-studies .marquee__group img {
    width: 204px;
    height: 185px;
  }
  .case-studies .circle-wrapper {
    top: 305px;
  }
}
/*====================================================================
    service-areas
/*==================================================================*/
.service-areas {
  background: #F5F5F5;
  padding-top: 50px;
  padding-bottom: 307px;
  position: relative;
}
.service-areas::before {
  content: "";
  position: absolute;
  top: -214px;
  left: 0;
  border-bottom: 214px solid #F5F5F5;
  border-right: 100vw solid transparent;
}
.service-areas__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.service-areas__description {
  text-align: center;
  margin-top: 32px;
  line-height: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #171717;
}
.service-areas__box-area {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 80px;
}
.service-areas__box_1 {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.service-areas__box_1 .service-areas__box {
  width: calc((100% - 40px) / 3);
  padding: 44px 40px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.service-areas__box_1 .service-areas__box-title {
  font-size: 30px;
  font-size: clamp(24px, 1rem + 2vw, 30px);
  row-gap: 9px;
  margin-bottom: 32px;
}
.service-areas__box_2 {
  display: flex;
  flex-direction: row;
  column-gap: 25px;
  flex-wrap: wrap;
}
.service-areas__box_2 .service-areas__box {
  width: calc((100% - 100px) / 5);
  padding: 62px 30px 54px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.service-areas__box_2 .service-areas__box-title {
  font-size: clamp(16px, 0.5rem + 1.5vw, 20px);
  row-gap: 5px;
  letter-spacing: -0.1px;
  line-height: 1.188;
}
.service-areas__box_2 .service-areas__box-title.-sm {
  font-size: 16px;
}
.service-areas__box {
  background: #383838;
  border-radius: 20px;
}
.service-areas__box-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #FFF;
  font-weight: 900;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.1px;
}
.service-areas__box-title span {
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.service-areas__box-txt {
  color: #FFF;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  height: 64px;
  justify-content: center;
  line-height: 1.072;
  letter-spacing: -0.1px;
}
.service-areas__graph-area {
  margin-top: 100px;
  background: #FFF;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  column-gap: 88px;
  padding: 60px 90px;
  align-items: center;
  justify-content: center;
}
.service-areas__graph-txt {
  min-width: 280px;
}
.service-areas__graph-txt p:nth-child(1) {
  color: #E43231;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: clamp(18px, 0.75rem + 1vw, 24px);
  font-weight: 800;
  letter-spacing: -0.1px;
  line-height: 1.532;
}
.service-areas__graph-txt p:nth-child(2) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(30px, 2rem + 1vw, 40px);
  color: #171717;
  font-weight: 900;
  margin-top: 11px;
  margin-bottom: 35px;
  line-height: 1;
  letter-spacing: -0.1px;
}
.service-areas__graph-txt p:nth-child(3) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  color: #171717;
  font-weight: 400;
  line-height: 1.667;
}
.service-areas__graph img {
  width: 100%;
  height: auto;
}

@media (max-width: 1080px) and (min-width: 769px) {
  .service-areas__box-area {
    row-gap: 16px;
  }
  .service-areas__box_1 {
    gap: 16px;
  }
  .service-areas__box_1 .service-areas__box-title {
    font-size: clamp(18px, 1rem + 1.5vw, 26px);
    margin-bottom: 20px;
  }
  .service-areas__box_1 .service-areas__box {
    padding: 42px 24px 42px;
    width: calc((100% - 32px) / 3);
  }
  .service-areas__box-txt {
    font-size: clamp(10px, 0.5rem + 0.7vw, 14px);
  }
  .service-areas__box_2 {
    gap: 16px;
  }
  .service-areas__box_2 .service-areas__box-title {
    font-size: clamp(13px, 0.7rem + 1vw, 20px);
  }
  .service-areas__box_2 .service-areas__box-title.-sm {
    font-size: clamp(10px, 0.75rem + 0.75vw, 14px);
    line-height: 1.4;
  }
  .service-areas__box_2 .service-areas__box {
    width: calc((100% - 64px) / 5);
    padding: 54px 16px 48px;
  }
}
@media only screen and (max-width:768px) {
  .service-areas {
    padding-top: 52px;
    padding-bottom: 200px;
  }
  .service-areas::before {
    top: -100px;
    border-bottom: 100px solid #F5F5F5;
  }
  .service-areas::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 100px solid #FFF;
    border-right: 100vw solid transparent;
  }
  .service-areas__box-area {
    max-width: 440px;
    margin: 50px auto 0;
    padding: 0 20px;
  }
  .service-areas__description {
    margin-top: 39px;
    font-size: 14px;
    line-height: 1.393;
  }
  .service-areas__box_1 {
    flex-direction: column;
  }
  .service-areas__box_1 .service-areas__box {
    width: 100%;
    padding: 40px 29px 42px;
  }
  .service-areas__box_1 .service-areas__box-title {
    margin-bottom: 26px;
    row-gap: 7px;
  }
  .service-areas__box_2 {
    flex-wrap: wrap;
    gap: 15px 19px;
  }
  .service-areas__box_2 .service-areas__box {
    width: calc((100% - 20px) / 2);
    padding: 47px 20px;
  }
  .service-areas__box_2 .service-areas__box-title span {
    font-size: 12px;
  }
  .service-areas__graph-area {
    max-width: 600px;
    margin: 50px auto 0;
    flex-direction: column;
    row-gap: 52px;
    align-items: center;
    border-radius: 20px;
    padding: 80px 20px;
  }
  .service-areas__graph-txt {
    text-align: center;
    min-width: unset;
  }
  .service-areas__graph-txt p:nth-child(1) {
    line-height: 1.278;
  }
  .service-areas__graph-txt p:nth-child(2) {
    margin-top: 9px;
    margin-bottom: 39px;
  }
  .service-areas__graph {
    max-width: 295px;
  }
}
@media only screen and (max-width:430px) {
  .service-areas__box_2 .service-areas__box {
    padding: 47px 10px;
  }
}
/*====================================================================
    entrust
/*==================================================================*/
.entrust {
  padding-top: 70px;
  padding-bottom: 150px;
  position: relative;
}
.entrust::before {
  position: absolute;
  content: "";
  top: -214px;
  left: 0;
  border-bottom: 214px solid #FFF;
  border-right: 100vw solid transparent;
}
.entrust::after {
  position: absolute;
  width: 53px;
  height: 53px;
  background: #171717;
  border-radius: 50%;
  content: "check";
  font-family: "din-2014", "DIN Alternate", sans-serif;
  color: #FFF;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -134px;
  left: 50%;
  transform: translateX(-50%);
}
.entrust__title__wrapper {
  position: absolute;
  top: -81px;
  left: 50%;
  transform: translateX(-50%);
}
.entrust__title {
  position: relative;
}
.entrust__title::before {
  position: absolute;
  content: "？";
  color: #BFBFBF;
  font-size: 198px;
  font-weight: bold;
  transform: rotate(15deg);
  right: -300px;
  bottom: -124px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.entrust__title::after {
  position: absolute;
  content: "？";
  color: #BFBFBF;
  font-size: 140px;
  font-weight: bold;
  transform: rotate(-15deg);
  left: -280px;
  bottom: -268px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.entrust__container {
  margin: 0 auto 150px;
  display: flex;
  flex-direction: row;
  column-gap: 79px;
  justify-content: center;
  align-items: center;
}
.entrust__box:nth-child(1) .entrust__balloon {
  margin-bottom: 78px;
}
.entrust__box:nth-child(1) .entrust__balloon p {
  position: relative;
}
.entrust__box:nth-child(1) .entrust__balloon p::before {
  position: absolute;
  content: "";
  background: #F5F5F5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 107px;
  left: 0;
}
.entrust__box:nth-child(1) .entrust__balloon p::after {
  position: absolute;
  content: "";
  background: #F5F5F5;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 132px;
  left: 30px;
}
.entrust__box:nth-child(2) .entrust__balloon {
  margin-bottom: 83px;
}
.entrust__box:nth-child(2) .entrust__balloon p {
  position: relative;
}
.entrust__box:nth-child(2) .entrust__balloon p::before {
  position: absolute;
  content: "";
  background: #F5F5F5;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 84px;
  right: 0;
}
.entrust__box:nth-child(2) .entrust__balloon p::after {
  position: absolute;
  content: "";
  background: #F5F5F5;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 109px;
  right: 30px;
}
.entrust__balloon {
  border-radius: 69px;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #000;
  padding: 45px 50px;
  position: relative;
  line-height: 1.425;
}
.entrust__txt-area {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.entrust__txt-area p {
  text-align: center;
}
.entrust__txt-area p:nth-child(1) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #171717;
  line-height: 1.35;
}
.entrust__txt-area p:nth-child(1) span {
  color: #ED2B2B;
}
.entrust__txt-area p:nth-child(2) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.667;
}

@media screen and (max-width: 1300px) {
  .entrust__title::before {
    right: -180px;
    bottom: -32px;
  }
  .entrust__title::after {
    left: -186px;
    bottom: -50px;
  }
}
@media screen and (max-width: 900px) {
  .entrust__title {
    line-height: 1.45;
  }
  .entrust__title::before {
    right: -128px;
    bottom: -22px;
  }
  .entrust__title::after {
    left: -126px;
    bottom: -32px;
  }
  .entrust__box:nth-child(1) .entrust__balloon {
    margin-bottom: 59px;
  }
  .entrust__box:nth-child(1) .entrust__balloon p::before {
    width: 20px;
    height: 20px;
    top: 73px;
  }
  .entrust__box:nth-child(1) .entrust__balloon p::after {
    width: 12px;
    height: 12px;
    top: 93px;
    left: 22px;
  }
  .entrust__box:nth-child(2) .entrust__balloon {
    margin-bottom: 58px;
  }
  .entrust__box:nth-child(2) .entrust__balloon p::before {
    width: 20px;
    height: 20px;
    top: 54px;
    right: -20px;
  }
  .entrust__box:nth-child(2) .entrust__balloon p::after {
    width: 12px;
    height: 12px;
    top: 74px;
    right: 2px;
  }
  .entrust__balloon {
    padding: 25px 50px 18px;
  }
  .entrust__txt-area p:nth-child(1) {
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  .entrust__container {
    flex-direction: column;
    row-gap: 70px;
  }
}
@media only screen and (max-width:768px) {
  .entrust {
    padding-top: 294px;
    padding-bottom: 100px;
    overflow: hidden;
  }
  .entrust::before {
    top: -100px;
    border-bottom: 100px solid #FFF;
  }
  .entrust::after {
    top: 50px;
  }
  .entrust__container {
    column-gap: 70px;
    margin-bottom: 100px;
  }
  .entrust__title__wrapper {
    top: 93px;
    width: 237px;
  }
  .entrust__title::before {
    right: -126px;
    bottom: -62px;
    color: #F5F5F5;
  }
  .entrust__title::after {
    left: -100px;
    bottom: -102px;
    color: #F5F5F5;
  }
  .entrust__balloon {
    font-size: 16px;
    line-height: 1.18;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/*====================================================================
    price-plans
/*==================================================================*/
.price-plans {
  background: #383838;
}
.price-plans__inner {
  position: relative;
  padding-top: 150px;
  padding-bottom: 322px;
}
.price-plans__container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: visible;
}
.price-plans .section__title {
  color: #FFF;
}
.price-plans__description {
  position: relative;
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
}
.price-plans__description p {
  position: absolute;
  color: #FFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  line-height: 1.467;
}
.price-plans__bg-txt {
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  width: 100vw;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: clamp(70px, 2rem + 15vw, 243px);
  text-align: center;
  line-height: clamp(70px, 2rem + 15vw, 243px);
  color: transparent;
  -webkit-text-stroke: 1px #484848;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .price-plans _::-webkit-full-page-media, .price-plans _:future, .price-plans__bg-txt {
    top: -55px;
  }
}
.price-plans__min-area {
  background: #FFF;
  border-radius: 30px;
  padding: 51px;
  width: 100%;
  max-width: 820px;
  margin: 188px auto 0;
  display: flex;
  flex-direction: row;
  column-gap: 9px;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  color: #171717;
  font-weight: 900;
}
.price-plans__min-label {
  border-radius: 41px;
  background: #7C7C7C;
  color: #FFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: bold;
  width: 134px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 18px;
}
.price-plans__min-price {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #171717;
  line-height: 1;
}
.price-plans__min-price span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-left: 4px;
}
.price-plans__list {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  row-gap: 104px;
}
.price-plans__box {
  position: relative;
  padding: 80px 40px 70px;
  border-radius: 40px;
  background: #FFF;
}
.price-plans__check {
  width: 50px;
  height: 50px;
  background: #171717;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.price-plans__check::after {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: 50%;
  width: 11px;
  height: 22px;
  border: solid #FFF;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg) translateX(calc(-50% - 2px));
}
.price-plans__box__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #171717;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.price-plans__box__title--red {
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.price-plans__box__sub-title {
  font-size: 20px;
}
.price-plans__note-area {
  margin-top: 14px;
}
.price-plans__note-area p {
  font-size: 12px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1;
}
.price-plans__note_1 p {
  margin-bottom: 8px;
}
.price-plans__note_1 p:last-child {
  margin-bottom: 15px;
}
.price-plans__note_2 p {
  margin-bottom: 6px;
}
.price-plans__note_2 p:last-child {
  margin-bottom: 0;
}
.price-plans .price-plans__table {
  width: 100%;
  border-collapse: collapse;
  margin: 110px 0 0;
}
.price-plans .price-plans__table__wrapper {
  overflow: auto;
}
.price-plans .price-plans__table th, .price-plans .price-plans__table td:not(.title-less td) {
  text-align: center;
  border-top: 1px solid #171717;
  border-left: none;
  border-right: none;
}
.price-plans .price-plans__table .title-less td {
  border-top: 1px solid #BFBFBF !important;
  text-align: center;
  border-left: none;
  border-right: none;
}
.price-plans .price-plans__table tr:first-child th,
.price-plans .price-plans__table tr:nth-child(2) th {
  border-top: none;
}
.price-plans .price-plans__table tr:last-child td {
  border-bottom: 1px solid #171717;
}
.price-plans .price-plans__table tr:first-child,
.price-plans .price-plans__table tr:nth-child(2) {
  background-color: #F4F4F4 !important;
}
.price-plans .price-plans__table tr:first-child th {
  color: #000 !important;
  text-align: left;
  padding-left: 17px;
  font-size: 20px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.price-plans .price-plans__table__tax-ex {
  font-size: 14px !important;
}
.price-plans .price-plans__table__price {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 33px;
  font-weight: 800;
}
.price-plans .price-plans__table__price span {
  font-size: 12px;
  font-weight: 900;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  padding-left: 2px;
}
.price-plans .price-plans__table .price-plans__table__price th {
  min-width: 140px;
  font-weight: 800;
}
.price-plans .price-plans__table .price-plans__table__price th:nth-last-child(3) {
  position: relative;
}
.price-plans .price-plans__table .price-plans__table__price th:nth-last-child(3)::before {
  position: absolute;
  top: -58px;
  right: 0;
  content: "ミニマム";
  padding-top: 2px;
  font-size: 16px;
  font-weight: bold;
  background: #7C7C7C;
  border-radius: 41px;
  width: 134px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
.price-plans .price-plans__table th:nth-last-child(3), .price-plans .price-plans__table td:nth-last-child(3) {
  color: #171717;
}
.price-plans .price-plans__table .price-plans__table__price th:nth-last-child(2) {
  position: relative;
}
.price-plans .price-plans__table .price-plans__table__price th:nth-last-child(2)::before {
  position: absolute;
  top: -58px;
  right: 0;
  content: "スタンダード";
  padding-top: 2px;
  font-size: 16px;
  font-weight: bold;
  background: #ED2B2B;
  border-radius: 41px;
  width: 134px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
.price-plans .price-plans__table th:nth-last-child(2), .price-plans .price-plans__table td:nth-last-child(2) {
  color: #ED2B2B;
}
.price-plans .price-plans__table .price-plans__table__price th:nth-last-child(1) {
  position: relative;
}
.price-plans .price-plans__table .price-plans__table__price th:nth-last-child(1)::before {
  position: absolute;
  top: -58px;
  right: 0;
  content: "プレミアム";
  padding-top: 2px;
  font-size: 16px;
  font-weight: bold;
  background: #B99637;
  border-radius: 41px;
  width: 134px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
.price-plans .price-plans__table th:nth-last-child(1), .price-plans .price-plans__table td:nth-last-child(1) {
  color: #B99637;
}
.price-plans .price-plans__table tr:not(:first-child) {
  height: 70px;
}
.price-plans .price-plans__table .plan-title {
  font-weight: bold;
  text-align: left !important;
  padding-left: 15px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  color: #000;
  font-size: 14px;
  min-width: 170px;
}
.price-plans .price-plans__table .checkmark, .price-plans .price-plans__table .crossmark {
  height: 70px;
}
.price-plans .price-plans__table .checkmark {
  position: relative;
}
.price-plans .price-plans__table .checkmark::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  content: "";
  border: 3px solid #171717;
  border-radius: 50%;
}
.price-plans .price-plans__table td:nth-last-child(2).checkmark::before {
  border: 3px solid #ED2B2B;
}
.price-plans .price-plans__table td:nth-last-child(1).checkmark::before {
  border: 3px solid #B99637;
}
.price-plans .price-plans__table .crossmark {
  position: relative;
}
.price-plans .price-plans__table .crossmark::before, .price-plans .price-plans__table .crossmark::after {
  content: "";
  position: absolute;
  background-color: #000;
  transition: transform 0.5s ease;
}
.price-plans .price-plans__table .crossmark::before {
  top: calc(50% + 11px);
  left: calc(50% - 5px);
  width: 30px;
  height: 3px;
  transform: rotate(45deg) translate(-50%, -50%);
}
.price-plans .price-plans__table .crossmark::after {
  top: calc(50% - 3px);
  left: calc(50% - 11px);
  width: 3px;
  height: 30px;
  transform: rotate(45deg) translate(-50%, -50%);
}
.price-plans .price-plans__table td:nth-last-child(2).crossmark::before,
.price-plans .price-plans__table td:nth-last-child(2).crossmark::after {
  background: #ED2B2B;
}
.price-plans .price-plans__table td:nth-last-child(1).crossmark::before,
.price-plans .price-plans__table td:nth-last-child(1).crossmark::after {
  background: #B99637;
}
.price-plans .price-plans__table .service-detail {
  line-height: 1.6;
  height: 70px;
  min-width: 310px;
}
.price-plans .price-plans__table .service-detail span {
  font-size: 10px;
}
.price-plans .price-plans__table .service-detail p {
  text-align: left;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #000;
  font-weight: 400;
  line-height: 1;
}
.price-plans .price-plans__table .service-detail :not(p:last-child) {
  margin-bottom: 11px;
}
.price-plans .price-plans__table .service-detail__em {
  font-size: 14px !important;
  font-weight: bold !important;
}
.price-plans .price-plans__table .service-detail__txt {
  font-size: 12px;
  font-weight: bold;
  font-size: 12px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.price-plans .price-plans__table .service-detail__txt span {
  font-size: 10px;
  font-weight: 400;
}
.price-plans .price-plans__table .service-detail__txt p {
  position: absolute;
  top: calc(50% + 18px);
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  letter-spacing: -0.1px;
}
.price-plans .price-plans__table .service-detail__txt.checkmark::before {
  top: calc(50% - 7px);
}
.price-plans__operation-area {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  margin-top: 179px;
}
.price-plans__operation-item {
  width: calc((100% - 40px) / 3);
  background: #F4F4F4;
  position: relative;
}
.price-plans__operation-item:nth-child(1) .price-plans__operation-title {
  background: #7C7C7C;
}
.price-plans__operation-item:nth-child(1) .price-plans__operation-txt_price {
  color: #171717;
}
.price-plans__operation-item:nth-child(2) .price-plans__operation-title {
  background: #ED2B2B;
}
.price-plans__operation-item:nth-child(2) .price-plans__operation-txt_price {
  color: #ED2B2B;
}
.price-plans__operation-item:nth-child(3) .price-plans__operation-title {
  background: #B99637;
}
.price-plans__operation-item:nth-child(3) .price-plans__operation-txt_price {
  color: #B99637;
}
.price-plans__operation-box {
  padding: 57px 14px 63px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-plans__operation-title {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  color: #FFF;
  width: 204px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-plans__operation-txt_1 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  text-align: center;
  letter-spacing: -0.1px;
  line-height: 1.358;
}
.price-plans__operation-txt_price {
  margin: 10px auto 14px;
  text-align: center;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 46px;
  font-weight: 800;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
}
.price-plans__operation-txt_price .unit {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  margin: 0 1px;
  font-weight: 900;
  line-height: 36px;
}
.price-plans__operation-txt_price .per_month {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 34px;
}
.price-plans__operation-list_1, .price-plans__operation-list_2 {
  list-style: none;
  display: inline-flex;
  margin: 0 auto;
  flex-direction: column;
  row-gap: 8px;
}
.price-plans__operation-list_1 li, .price-plans__operation-list_2 li {
  line-height: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  color: #000;
}
.price-plans__operation-list_2 {
  margin: 23px auto 0;
}
.price-plans__operation-list_2 li {
  font-size: 12px;
}
.price-plans__operation-txt_2 {
  margin-top: 24px;
}
.price-plans__operation-txt_2, .price-plans__operation-txt_3 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000;
}
.price-plans .arrow-box {
  position: absolute;
  top: -134px;
  width: 100%;
  height: 84px;
  background: #FFF;
  padding: 16px 20px 16px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}
.price-plans .arrow-box li {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000;
  font-size: 14px;
  font-size: clamp(14px, 0.01vw, 10px);
  letter-spacing: -0.1px;
  line-height: 1.358;
  list-style-image: url("../images/check.svg");
}
.price-plans .arrow-box:after, .price-plans .arrow-box:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 99%;
  left: 50%;
}
.price-plans .arrow-box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 16px;
  border-bottom-width: 16px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -8px;
  border-top-color: #FFF;
}
.price-plans .arrow-box:before {
  border-color: rgba(0, 0, 0, 0);
  border-top-width: 17px;
  border-bottom-width: 17px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-left: -9px;
  margin-top: 1px;
  border-top-color: #000;
}
.price-plans__support-table__wrapper {
  overflow: auto;
  margin-top: 34px;
}
.price-plans__support-table {
  border-collapse: collapse;
  width: 100%;
  border-bottom: 1px solid #171717;
}
.price-plans__support-table th, .price-plans__support-table .plan-title, .price-plans__support-table td:nth-last-child(1), .price-plans__support-table td:nth-last-child(2), .price-plans__support-table .service-detail__em {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: bold;
  line-height: 1;
}
.price-plans__support-table th {
  height: 36px;
}
.price-plans__support-table th:nth-child(1) {
  min-width: 190px;
  text-align: left;
  padding-left: 20px;
}
.price-plans__support-table th:nth-child(2) {
  min-width: 350px;
  text-align: left;
}
.price-plans__support-table th:nth-child(3) {
  min-width: 190px;
}
.price-plans__support-table th:nth-child(4) {
  min-width: 100px;
  text-align: left;
}
.price-plans__support-table tr {
  height: 60px;
}
.price-plans__support-table td {
  border-top: 1px solid #171717;
  text-align: left;
  font-size: 12px;
}
.price-plans__support-table .title-less td {
  border-top: 1px solid #BFBFBF !important;
  border-left: none;
  border-right: none;
}
.price-plans__support-table .plan-title {
  padding-left: 20px;
}
.price-plans__support-table .title-less {
  border-bottom: none;
}
.price-plans__support-table .service-detail {
  font-size: 10px;
}
.price-plans__support-table p {
  line-height: 1.368;
}
.price-plans__support-table .service-detail__em {
  margin-bottom: 7px;
}
.price-plans__support-table .price {
  text-align: center;
}
.price-plans__support-table .h-98 {
  height: 98px;
}
.price-plans .contact {
  position: absolute;
  bottom: -231px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .price-plans__bg-txt {
    top: 30px;
  }
}
@media screen and (max-width: 1200px) and (-webkit-min-device-pixel-ratio: 0) {
  .price-plans _::-webkit-full-page-media, .price-plans _:future, .price-plans__bg-txt {
    top: -20px;
  }
}
@media screen and (max-width: 950px) {
  .price-plans__bg-txt {
    top: 37px;
  }
  .price-plans .arrow-box {
    height: 110px;
    top: -157px;
  }
}
@media screen and (max-width: 840px) {
  .price-plans__bg-txt {
    top: 50px;
  }
  .price-plans .contact {
    bottom: -287px;
  }
}
@media screen and (max-width: 840px) and (-webkit-min-device-pixel-ratio: 0) {
  .price-plans _::-webkit-full-page-media, .price-plans _:future, .price-plans__bg-txt {
    top: 32px;
  }
}
@media only screen and (max-width:768px) {
  .price-plans__inner {
    padding-top: 80px;
    padding-bottom: 331px;
  }
  .price-plans .contact {
    bottom: -223px;
  }
  .price-plans__check {
    width: 28px;
    height: 28px;
    top: -14px;
  }
  .price-plans__check::after {
    top: 8px;
    left: 50%;
    width: 8px;
    height: 15px;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translateX(calc(-50% - 1px));
  }
  .price-plans__bg-txt {
    font-size: clamp(70px, 1.5rem + 12.5vw, 93px);
    top: 70px;
    width: 100%;
  }
  .price-plans__description {
    margin-top: 35px;
  }
  .price-plans__description p {
    font-size: 14px;
    line-height: 1.61;
  }
  .price-plans__list {
    margin-top: 170px;
  }
  .price-plans__box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 55px 20px 70px;
  }
  .price-plans__box:nth-child(1) .price-plans__box__title,
  .price-plans__box:nth-child(1) .price-plans__note-area {
    max-width: 295px;
    margin: 0 auto;
  }
  .price-plans__box:nth-child(1) .price-plans__note-area {
    margin-top: 24px;
  }
  .price-plans__box:nth-child(2) {
    padding-bottom: 50px;
  }
  .price-plans__box:nth-child(2) .price-plans__note-area {
    margin-top: 20px;
  }
  .price-plans__box:nth-child(3) {
    padding-top: 52px;
    padding-bottom: 60px;
  }
  .price-plans__box__title {
    font-size: 24px;
  }
  .price-plans__box__sub-title {
    font-size: 14px;
  }
  .price-plans__price-list {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    max-width: 160px;
    margin: 50px auto 0;
  }
  .price-plans__price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .price-plans__price-item:nth-child(1) .price-plans__name {
    background: #7C7C7C;
  }
  .price-plans__price-item:nth-child(1) .price-plans__price {
    color: #171717;
  }
  .price-plans__price-item:nth-child(2) .price-plans__name {
    background: #ED2B2B;
  }
  .price-plans__price-item:nth-child(2) .price-plans__price {
    color: #ED2B2B;
  }
  .price-plans__price-item:nth-child(3) .price-plans__name {
    background: #B99637;
  }
  .price-plans__price-item:nth-child(3) .price-plans__price {
    color: #B99637;
  }
  .price-plans__name {
    width: 100%;
    height: 34px;
    border-radius: 41px;
    font-size: 14px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
  }
  .price-plans__price {
    font-family: "din-2014", "DIN Alternate", sans-serif;
    font-size: 40px;
    font-weight: 800;
  }
  .price-plans__price span {
    margin-left: 3px;
    font-size: 14px;
  }
  .price-plans__cf {
    width: 100%;
    max-width: 295px;
    margin: 60px auto 0;
    background: #F4F4F4;
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 36px;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .price-plans__plan_row {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    max-width: 295px;
    margin: 20px auto 0;
  }
  .price-plans__plan_row div {
    width: calc((100% - 10px) / 3);
    height: 32px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    border-radius: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .price-plans__plan_row div:nth-child(1) {
    background: #7C7C7C;
    height: 26px;
  }
  .price-plans__plan_row div:nth-child(2) {
    background: #ED2B2B;
    height: 30px;
  }
  .price-plans__plan_row div:nth-child(3) {
    background: #B99637;
  }
  .price-plans__note-area p {
    line-height: 1.468;
    font-size: 10px;
  }
  .price-plans__note_1 p {
    margin-bottom: 11px;
  }
  .price-plans__note_1 p:last-child {
    margin-bottom: 25px;
  }
  .price-plans__sp_table {
    margin: 26px auto 0;
    width: 100%;
    max-width: 295px;
    display: block !important;
    border-bottom: 1px solid #171717;
  }
  .price-plans__sp_row-title {
    border-top: 1px solid #171717;
    border-bottom: 1px solid #171717;
    padding: 8.5px 0 8.5px 10px;
    line-height: 1;
    position: relative;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: bold;
  }
  .price-plans__sp_row-title::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #171717;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .price-plans__sp_row-title.bb-0 {
    border-bottom: none;
    padding-top: 14px;
  }
  .price-plans__sp_row-title.bb-0::before {
    top: calc(50% + 3px);
  }
  .price-plans__sp_row-txt {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    padding: 0 10px 10px;
    line-height: 1.334;
  }
  .price-plans__sp_row-txt span {
    font-size: 10px;
  }
  .price-plans__sp_row {
    padding: 12px 10px 14px;
    border-bottom: 1px solid #BFBFBF;
  }
  .price-plans__sp_row:last-child {
    border: none;
  }
  .price-plans__sp_row .title_b {
    font-size: 12px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #000;
    line-height: 1;
    margin-bottom: 7px;
  }
  .price-plans__sp_row p {
    font-size: 10px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 400;
    color: #000;
    line-height: 1;
  }
  .price-plans__sp_row.pt-0 {
    padding-top: 0;
  }
  .price-plans__sp_row.pt-0 .price-plans__sp_check-list {
    margin-top: 4px;
  }
  .price-plans__sp_check-list {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    justify-content: space-between;
    margin: 12px auto 0;
    padding: 0 10px;
    max-width: 220px;
  }
  .price-plans__sp_check-list.first_txt {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    align-items: center;
    max-width: 238px;
  }
  .price-plans__sp_check-list .checkmark_centering {
    margin-right: 43px;
  }
  .price-plans__sp_check-list .checkmark_left.sp_checkmark:nth-child(3)::before {
    left: 10px;
  }
  .price-plans__sp_check-list .sp_checkmark:nth-child(1) p {
    color: #171717;
  }
  .price-plans__sp_check-list .sp_checkmark:nth-child(1)::before {
    color: #171717;
    border: 3px solid #171717;
  }
  .price-plans__sp_check-list .sp_checkmark:nth-child(2) p {
    color: #ED2B2B;
  }
  .price-plans__sp_check-list .sp_checkmark:nth-child(2)::before {
    color: #ED2B2B;
    border: 3px solid #ED2B2B;
  }
  .price-plans__sp_check-list .sp_checkmark:nth-child(3) p {
    color: #B99637;
  }
  .price-plans__sp_check-list .sp_checkmark:nth-child(3)::before {
    color: #B99637;
    border: 3px solid #B99637;
  }
  .price-plans__sp_check-list.h_32 {
    height: 32px;
    margin-top: 1px;
    margin-bottom: 10px;
  }
  .price-plans__sp_check-list.mb-0 {
    margin-bottom: 0;
  }
  .price-plans .sp_checkmark {
    position: relative;
    height: 20px;
  }
  .price-plans .sp_checkmark::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    content: "";
    border: 3px solid #171717;
    border-radius: 50%;
  }
  .price-plans .sp_checkmark p {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    text-align: center;
  }
  .price-plans .sp_crossmark {
    position: relative;
    height: 20px;
  }
  .price-plans .sp_crossmark::before {
    position: absolute;
    content: "";
    top: calc(50% + 6px);
    left: calc(50% - 6px);
    width: 19px;
    height: 3px;
    transform: rotate(45deg) translate(-50%, -50%);
    background: #171717;
  }
  .price-plans .sp_crossmark::after {
    position: absolute;
    content: "";
    top: calc(50% - 2px);
    left: calc(50% - 9px);
    width: 3px;
    height: 19px;
    transform: rotate(45deg) translate(-50%, -50%);
    background: #171717;
  }
  .price-plans .sp_txt {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: #000;
    line-height: 1;
  }
  .price-plans .checkmark_centered {
    margin-left: -43px;
  }
  .price-plans .two_line {
    font-size: 12px;
    line-height: 1.125;
    text-align: center;
    width: 100px;
  }
  .price-plans .two_line span {
    font-size: 10px;
    font-weight: 400;
  }
  .price-plans__operation-area {
    flex-direction: column;
    justify-content: center;
    row-gap: 166px;
    max-width: 295px;
    margin: 170px auto 0;
  }
  .price-plans__operation-box {
    padding: 61px 14px 45px;
  }
  .price-plans__operation-item {
    width: 100%;
  }
  .price-plans__operation-item:last-child .arrow-box {
    padding-left: 80px;
  }
  .price-plans .arrow-box {
    height: 87px;
    top: -133px;
    padding-left: 63px;
  }
  .price-plans .arrow-box li {
    font-size: 12px;
  }
  .price-plans .arrow-box::before {
    margin-left: -9px;
  }
  .price-plans .arrow-box::after {
    margin-left: -8px;
  }
  .price-plans__operation-txt_price {
    margin-bottom: 10px;
  }
  .price-plans__operation-txt_2 {
    margin-top: 20px;
  }
  .price-plans__support-table__wrapper {
    margin-top: 26px;
  }
}
@media only screen and (max-width:768px) and (-webkit-min-device-pixel-ratio: 0) {
  .price-plans _::-webkit-full-page-media, .price-plans _:future, .price-plans__bg-txt {
    top: 38px;
  }
}
@media only screen and (max-width:430px) {
  .price-plans .contact {
    bottom: -239px;
  }
  .price-plans__bg-txt {
    font-size: 70px;
    letter-spacing: -0.2px;
    top: 100px;
  }
}
@media only screen and (max-width:430px) and (-webkit-min-device-pixel-ratio: 0) {
  .price-plans _::-webkit-full-page-media, .price-plans _:future, .price-plans__bg-txt {
    top: 60px;
  }
}
/*====================================================================
    support-achievements
/*==================================================================*/
.support-achievements {
  padding-top: 380px;
  padding-bottom: 838px;
  overflow: hidden;
}
.support-achievements__inner {
  position: relative;
}
.support-achievements__bg-txt {
  width: 100%;
  max-width: 1456px;
  height: 614px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
}
.support-achievements__bg-txt::before {
  position: absolute;
  content: "Support";
  top: 0;
  left: 50%;
  transform: translate(calc(-50% - 465px), calc(-50% - 20px));
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 1rem + 10vw, 157px);
  color: transparent;
  -webkit-text-stroke: 1px #EAEAEA;
  line-height: 1;
}
.support-achievements__bg-txt::after {
  position: absolute;
  content: "Achievements";
  bottom: 0;
  left: 50%;
  transform: translate(calc(-50% + 262px), calc(-50% + 155px));
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 1rem + 10vw, 157px);
  color: transparent;
  -webkit-text-stroke: 1px #EAEAEA;
  line-height: 1;
}
.support-achievements__box {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #F5F5F5;
  border-radius: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  column-gap: 25px;
  padding: 115px 90px 115px 72px;
  align-items: center;
  justify-content: center;
}
.support-achievements__box-txt {
  min-width: 330px;
}
.support-achievements__box-txt p:nth-child(1) {
  color: #E43231;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: clamp(18px, 0.75rem + 1vw, 24px);
  font-weight: 800;
  letter-spacing: -0.1px;
  line-height: 1.532;
}
.support-achievements__box-txt p:nth-child(2) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(30px, 2rem + 1vw, 40px);
  color: #171717;
  font-weight: 900;
  margin-top: 11px;
  margin-bottom: 24px;
  line-height: 1.362;
  letter-spacing: -0.1px;
}
.support-achievements__box-txt p:nth-child(3) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  color: #171717;
  font-weight: 400;
  line-height: 1.667;
  letter-spacing: -0.1px;
}
.support-achievements__graph {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  line-height: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 17px;
  color: #000;
  font-weight: bold;
  text-align: center;
  max-width: 50%;
}
.support-achievements__graph img {
  width: 100%;
  height: auto;
}

@media screen and (min-height: 1080px) {
  .support-achievements__bg-txt {
    height: 612px;
  }
}
@media only screen and (max-width:768px) {
  .support-achievements {
    padding-top: 324px;
    padding-bottom: 814px;
  }
  .support-achievements__box {
    flex-direction: column;
    row-gap: 37px;
    justify-content: center;
    max-width: 440px;
    padding: 80px 18px;
    height: 674px;
  }
  .support-achievements__box p:nth-child(2) {
    margin-top: 9px;
    margin-bottom: 32px;
  }
  .support-achievements__box p:nth-child(3) {
    font-size: 14px;
  }
  .support-achievements__box-txt {
    text-align: center;
    min-width: unset;
    max-width: 300px;
    margin: 0 auto;
    height: 674px;
  }
  .support-achievements__bg-txt {
    height: 674px;
  }
  .support-achievements__bg-txt::before {
    font-size: clamp(57px, 10px + 12.5vw, 97px);
    transform: translate(calc(-50% - 80px), calc(-50% - 17px));
  }
  .support-achievements__bg-txt::after {
    font-size: clamp(57px, 10px + 12.5vw, 97px);
    left: 50%;
    bottom: -45px;
    transform: translate(calc(-50% + 15px), 0);
  }
  .support-achievements__graph {
    max-width: 300px;
    margin: 0 auto;
    font-size: 12px;
    row-gap: 19px;
  }
}
/*====================================================================
    voice
/*==================================================================*/
.voice {
  background-image: url(../images/four-points/reason_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding-top: 50px;
  padding-bottom: 100px;
  overflow: hidden;
}
.voice__list {
  margin: 87px auto 0;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  padding-bottom: 52px;
}
.voice__item {
  display: flex;
  justify-content: flex-end;
}
.voice__item:nth-child(odd) .voice__box_title {
  transform: rotate(180deg) translateY(50%);
  left: -100px;
}
.voice__item:nth-child(even) {
  justify-content: flex-start;
}
.voice__item:nth-child(even) .voice__box_title {
  right: -100px;
}
.voice__item:nth-child(1) .voice__box_title {
  color: #F0635F;
}
.voice__item:nth-child(2) .voice__box_title {
  color: #E44642;
}
.voice__item:nth-child(3) .voice__box_title {
  color: #EF5550;
}
.voice__box {
  max-width: 862px;
  width: calc(100% - 130px);
  border: 1px solid #F5F5F5;
  border-radius: 243px;
  background: #FFF;
  padding: 91px 140px 79px 165px;
  position: relative;
}
.voice__box_title {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 97px;
  line-height: 1;
  font-weight: 800;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}
.voice__box_title span {
  font-size: 45px;
  line-height: 1.28;
}
.voice__box_title:nth-child(even) {
  left: unset;
  right: 0;
}
.voice__box_em__wrapper {
  position: relative;
}
.voice__box_em__wrapper::before {
  position: absolute;
  content: "“";
  left: -34px;
  top: -55px;
  font-size: 70px;
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: bold;
  line-height: 1.78;
}
.voice__box_em__wrapper::after {
  position: absolute;
  content: "”";
  right: -34px;
  bottom: -95px;
  font-size: 70px;
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: bold;
  line-height: 1.78;
}
.voice__box_em {
  padding: 2px 4px;
  color: #FFF;
  font-size: 30px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.9;
  background: #ED2B2B;
  display: inline;
  font-weight: 900;
}
.voice__box_client {
  margin-top: 36px;
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #171717;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.21;
  padding-left: 37px;
}
.voice__box_client::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  background: #171717;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.voice__box_txt {
  margin-top: 30px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.78;
}

@media (max-width: 1180px) and (min-width: 769px) {
  .voice__box {
    border-radius: 190px;
  }
  .voice__box_em {
    font-size: clamp(18px, 0.7rem + 1.5vw, 26px);
  }
}
@media (max-width: 900px) and (min-width: 769px) {
  .voice__box {
    border-radius: 180px;
    padding: 84px 90px 60px 110px;
  }
}
@media only screen and (max-width:768px) {
  .voice {
    background-image: none;
    background: url("../images/voice/voice_sp_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 100px;
  }
  .voice__list {
    row-gap: 40px;
    padding-bottom: 0;
  }
  .voice__item:nth-child(odd) .voice__box_title {
    left: -45px;
  }
  .voice__item:nth-child(even) .voice__box_title {
    right: -45px;
  }
  .voice__box {
    max-width: 440px;
    border-radius: 40px;
    padding: 50px 22px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .voice__box_title {
    font-size: 47px;
    top: 75px;
  }
  .voice__box_title span {
    font-size: 22px;
  }
  .voice__box_em__wrapper {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }
  .voice__box_em__wrapper::before {
    font-size: 33px;
    left: -14px;
    top: -23px;
  }
  .voice__box_em__wrapper::after {
    font-size: 33px;
    right: -20px;
    bottom: -42px;
  }
  .voice__box_em {
    font-size: 24px;
    text-align: center;
  }
  .voice__box_client {
    margin-top: 30px;
    font-size: 12px;
    line-height: 1.16;
  }
}
@media screen and (max-width: 522px) {
  .voice__box {
    width: calc(100% - 22px);
  }
}
@media only screen and (max-width:430px) {
  .voice {
    padding-bottom: 0;
    margin-bottom: 100px;
  }
  .voice__box_em {
    font-size: clamp(20px, 1.25rem + 2vw, 22px);
  }
}
/*====================================================================
    achievements（実績）
/*==================================================================*/
.achievements {
  background: #383838;
  padding-top: 150px;
  padding-bottom: 875px;
  overflow: hidden;
  /* 左右ボタンの位置調整（中心アイテムに被るように） */
}
.achievements__title-wrapper {
  position: relative;
}
.achievements .section__title {
  color: #FFF;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.achievements__bg-txt {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: 100vw;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: clamp(70px, 2rem + 15vw, 243px);
  text-align: center;
  line-height: clamp(70px, 2rem + 15vw, 243px);
  color: transparent;
  -webkit-text-stroke: 1px #484848;
  z-index: 0;
}
.achievements .splide__wrapper {
  position: relative;
  height: 775px;
}
.achievements .splide {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 212px auto 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.achievements .splide__track {
  overflow: visible;
}
.achievements .splide__slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 27px;
  background: #FFF;
  width: calc(100vw - 80px) !important;
  max-width: 1100px !important;
  transform: translateY(0);
  transition: transform 0.2s ease;
  height: 775px;
  padding: 60px 70px 0;
  border-radius: 40px;
}
.achievements .splide__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: background-color 0.5s ease;
  border-radius: 40px;
}
.achievements .splide__slide__rect {
  position: absolute;
  top: 0;
  right: 50px;
  width: 31px;
  height: 76px;
  background-color: #ED2B2B;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 8px), 0 100%);
}
.achievements .splide__slide__rect-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #FFF;
  font-weight: bold;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  display: flex;
  align-items: center;
  letter-spacing: -0.18px;
}
.achievements .splide__slide__rect-txt span {
  font-size: 22px;
  margin-top: 2px;
}
.achievements .splide__slide__genre {
  padding: 2px 7px;
  border: 1px solid #171717;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  display: inline;
}
.achievements .splide__slide__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #000;
  line-height: 1;
  margin-top: 22px;
}
.achievements .splide__slide__sub-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  margin-top: 6px;
}
.achievements .splide__slide__desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #ED2B2B;
  line-height: 1.4;
  margin-top: 26px;
}
.achievements .splide__slide__sec-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #000;
  line-height: 1;
}
.achievements .splide__slide__sec-title span {
  font-size: 10px;
}
.achievements .splide__slide__txt-1 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  margin-top: 13px;
}
.achievements .splide__slide__point {
  margin-top: 40px;
}
.achievements .splide__slide__support {
  margin-top: 19px;
}
.achievements .splide__slide__tags {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.achievements .splide__slide__tags div {
  border: 1px solid #BFBFBF;
  border-radius: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  padding: 5px 16px;
  line-height: 1;
}
.achievements .splide__slide__achievement {
  margin-top: 40px;
}
.achievements .splide__slide__circle-area {
  margin-top: 11px;
  display: flex;
  flex-direction: row;
  column-gap: 8px;
}
.achievements .splide__slide__circle-area .splide__slide__circle__wrapper {
  display: flex;
  flex-direction: row;
  column-gap: 8px;
}
.achievements .splide__slide__circle-area .splide__slide__circle {
  border-radius: 50%;
  background: #F5F5F5;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 34px;
}
.achievements .splide__slide__circle-area .splide__slide__circle__tag {
  background: #383838;
  border-radius: 14px;
  padding: 4px 10px;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  color: #FFF;
  font-size: 10px;
  line-height: 1.2;
}
.achievements .splide__slide__circle-area .splide__slide__circle__txt {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #171717;
  line-height: 1.2;
  margin: 7px auto 6px;
}
.achievements .splide__slide__circle-area .splide__slide__circle__txt.-xs {
  font-size: 12px;
  margin: 5px auto 6px;
}
.achievements .splide__slide__circle-area .splide__slide__circle__txt.-sm {
  font-size: 14px;
  margin: 11px auto 8px;
}
.achievements .splide__slide__circle-area .splide__slide__circle__txt.-md {
  font-size: 16px;
  margin: 10px auto 6px;
}
.achievements .splide__slide__circle-area .splide__slide__circle__txt-2 {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #ED2B2B;
  line-height: 1;
}
.achievements .splide__slide__circle-area .splide__slide__circle__txt-2 span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
}
.achievements .splide__slide__list-row::before {
  top: 0;
  transform: translateX(0);
}
.achievements .splide__slide__list-txt {
  margin-top: 6px;
  line-height: 1.25;
}
.achievements .splide__slide__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 16px;
  list-style: circle;
}
.achievements .splide__slide__list.-list-only {
  row-gap: 3px;
}
.achievements .splide__slide__list-row {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 10px;
  font-weight: bold;
  color: #171717;
  position: relative;
  padding-left: 9px;
}
.achievements .splide__slide__list-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  content: "・";
  color: #171717;
  border-radius: 50%;
}
.achievements .splide__slide__list-txt {
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.25;
}
.achievements .splide__slide__img {
  max-width: 386px;
  position: relative;
}
.achievements .splide__slide__img img {
  height: auto;
  width: 100%;
  position: absolute;
  top: -15px;
}
.achievements .splide__slide.is-active {
  transform: translateY(-50px);
}
.achievements .splide__slide.is-active::before {
  display: none;
}
.achievements .splide__pagination {
  top: 748px;
  z-index: 10;
  column-gap: 10px;
}
.achievements .splide__pagination__page {
  opacity: 1;
  background: #FFF;
  z-index: 10;
  margin: 0;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.achievements .splide__pagination__page.is-active {
  background: #ED2B2B;
  transform: scale(1);
}
.achievements__link-btn {
  position: relative;
}
.achievements__link-btn .circle-wrapper {
  top: 142px;
  z-index: 1;
}
.achievements__link-btn .circle {
  border: 1px solid #454545;
}
.achievements__link-btn .circle-1 {
  margin: 0;
}
.achievements .splide__arrow {
  position: absolute;
  top: 330px;
  z-index: 15;
  width: 40px;
  height: 40px;
  background-color: #ED2B2B;
  color: #FFF;
  border: none;
  cursor: pointer;
  opacity: 1 !important;
  transition: opacity 0.2s;
}
.achievements .splide__arrow svg {
  fill: #FFF;
}
.achievements .splide__arrow:hover {
  opacity: 0.7 !important;
}
.achievements .splide__slide__img {
  width: 100%;
  height: auto;
}
.achievements .splide__arrow--prev {
  left: -20px;
}
.achievements .splide__arrow--next {
  right: -20px;
}
.achievements .splide__arrow:focus {
  outline: none !important;
}

@media (max-width: 1100px) {
  .achievements .splide__slide {
    column-gap: 20px !important;
    justify-content: flex-start;
  }
}
@media (max-width: 980px) {
  .achievements {
    padding-top: 100px;
    padding-bottom: 1446px;
  }
  .achievements__bg-txt {
    font-size: clamp(70px, 1.5rem + 12.5vw, 93px);
    line-height: clamp(70px, 1.5rem + 12.5vw, 93px);
    top: 80px;
  }
  .achievements .splide__slide {
    height: 1362px;
    transform: translateY(-50px);
    border-radius: 20px;
    flex-direction: column;
    row-gap: 40px;
    padding: 60px;
    align-items: center;
  }
  .achievements .splide__slide::before {
    display: none;
  }
  .achievements .splide__slide__info {
    width: 100%;
  }
  .achievements .splide__slide__img img {
    top: 0;
  }
  .achievements .splide__slide__rect {
    right: 20px;
  }
  .achievements .splide__pagination {
    top: 1331px;
  }
  .achievements__link-btn .circle-wrapper {
    top: 743px;
  }
}
@media only screen and (max-width:768px) {
  .achievements {
    padding-top: 80px;
    padding-bottom: 1298px;
  }
  .achievements .splide {
    width: calc(100vw - 40px) !important;
    max-width: 600px !important;
  }
  .achievements .splide__slide {
    width: calc(100vw - 40px) !important;
    max-width: 600px !important;
    padding: 43px 40px 40px;
    height: 1420px;
  }
  .achievements .splide__slide__genre {
    font-size: 10px;
  }
  .achievements .splide__slide__title {
    margin-top: 20px;
    font-size: 24px;
  }
  .achievements .splide__slide__sub-title {
    margin-top: 5px;
  }
  .achievements .splide__slide__desc {
    margin-top: 17px;
    font-size: 24px;
  }
  .achievements .splide__slide__point {
    margin-top: 44px;
  }
  .achievements .splide__slide__support {
    margin-top: 40px;
  }
  .achievements .splide__slide__tags {
    width: 95%;
    gap: 4px 3px;
  }
  .achievements .splide__slide__achievement {
    margin-top: 35px;
  }
  .achievements .splide__slide__circle-area {
    flex-direction: column;
    align-items: center;
    row-gap: 6px;
  }
  .achievements .splide__slide__circle-area .splide__slide__circle__wrapper {
    column-gap: 15px;
  }
  .achievements .splide__slide__circle-area .splide__slide__circle {
    width: 140px;
    height: 140px;
    padding-top: 31px;
  }
  .achievements .splide__slide__circle-area .splide__slide__circle__tag {
    padding: 2px 8px;
    width: auto;
  }
  .achievements .splide__slide__circle-area .splide__slide__circle__txt {
    margin: 5px auto 1px;
  }
  .achievements .splide__slide__list {
    margin-top: 11px;
    row-gap: 26px;
    font-size: 14px;
  }
  .achievements .splide__slide__list-row {
    font-size: 14px;
    letter-spacing: -1px;
  }
  .achievements .splide__slide__list-row::before {
    top: 3px;
    transform: translateX(0);
  }
  .achievements .splide__slide__list-txt {
    font-weight: 400;
    margin-top: 10px;
    line-height: inherit;
  }
  .achievements .splide__arrow--prev {
    left: -15px;
    width: 30px;
    height: 30px;
  }
  .achievements .splide__arrow--next {
    right: -15px;
    width: 30px;
    height: 30px;
  }
  .achievements .splide__pagination {
    top: 1355px;
  }
  .achievements__link-btn .circle-wrapper {
    top: 772px;
  }
}
@media only screen and (max-width:430px) {
  .achievements {
    padding-bottom: 1331px;
  }
  .achievements .splide__slide {
    padding: 40px 20px;
  }
  .achievements__bg-txt {
    letter-spacing: -1px;
    top: 96px;
  }
}
/*====================================================================
    contact
/*==================================================================*/
.contact-2 {
  position: relative;
}
.contact-2 .contact {
  position: absolute;
  bottom: -231px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/*====================================================================
    why
/*==================================================================*/
.why {
  position: relative;
  padding-top: 512px;
  background: #F5F5F5;
}
.why .contact {
  position: absolute;
  bottom: -231px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 0 40px;
}
.why__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  height: 76px;
}
.why__bg-txt {
  position: absolute;
  bottom: -74px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  font-size: clamp(70px, 2rem + 15vw, 243px);
  text-align: center;
  line-height: clamp(70px, 2rem + 15vw, 243px);
  color: transparent;
  -webkit-text-stroke: 1px #E6E6E6;
  z-index: 0;
}
.why .section__title {
  position: absolute;
  z-index: 5;
}
.why__nine-strengths {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  flex-direction: column;
  align-items: center;
}
.why__nine-strengths p:first-child {
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}
.why__nine-strengths p:last-child {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #171717;
  font-size: 30px;
  line-height: 1.2;
  margin-top: -10px;
  font-weight: 900;
}
.why__nine-strengths p:last-child span {
  font-size: 59px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: bold;
  color: #ED2B2B;
  line-height: 1.27;
}
.why__contents__wrapper {
  background-image: url(../images/shopify_logo.svg);
  background-repeat: no-repeat;
  background-position: 73vw 70%;
}
.why__box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto 0;
}
.why__box {
  background: #FFF;
  width: calc((100% - 48px) / 3);
  padding: 44px 40px;
  min-width: 295px;
}
.why__box-title {
  text-align: center;
  letter-spacing: -0.4px;
}
.why__box-title p:first-child {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: #ED2B2B;
  text-align: center;
}
.why__box-title p:nth-child(2) {
  margin-top: 26px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
}
.why__box-title p:nth-child(2) span {
  color: #ED2B2B;
}
.why__box-txt {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #000;
  margin-top: 45px;
}
.why .steps {
  margin: 100px auto 0;
  max-width: 820px;
  background: #FFF;
  padding: 80px 80px 82px;
}
.why .steps__sub-title {
  color: #ED2B2B;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
}
.why .steps__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  color: #171717;
  line-height: 1.2;
  text-align: center;
  margin-top: 9px;
  font-weight: 900;
}
.why .steps__item-wrapper {
  margin: 50px auto 0;
  border-left: 3px solid #ED2B2B;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  padding-left: 40px;
  max-width: 540px;
}
.why .steps__item-box {
  position: relative;
}
.why .steps__item-box::before {
  position: absolute;
  left: -66px;
  top: 0;
  content: "";
  width: 48px;
  height: 48px;
  background: #FFF;
  border-radius: 50%;
  border: 2px solid #ED2B2B;
  color: #ED2B2B;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.25;
}
.why .steps__item-box:nth-child(1)::before, .why .steps__item-box:nth-child(7)::before {
  background: #ED2B2B;
  color: #FFF;
}
.why .steps__item-box:nth-child(1)::before {
  content: "01";
}
.why .steps__item-box:nth-child(2)::before {
  content: "02";
}
.why .steps__item-box:nth-child(3)::before {
  content: "03";
}
.why .steps__item-box:nth-child(4)::before {
  content: "04";
}
.why .steps__item-box:nth-child(5)::before {
  content: "05";
}
.why .steps__item-box:nth-child(6)::before {
  content: "06";
}
.why .steps__item-box:nth-child(7)::before {
  content: "07";
}
.why .steps__item-box:nth-child(7)::after {
  position: absolute;
  content: "";
  top: 48px;
  width: 7px;
  height: 100%;
  left: -45px;
  background: #FFF;
}
.why .steps__item-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  color: #171717;
  font-weight: 900;
  line-height: 1.2;
}
.why .steps__item-desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  color: #171717;
  font-weight: 400;
  line-height: 1;
  margin-top: 12px;
}

@media (max-width: 1180px) and (min-width: 769px) {
  .why__box {
    padding: 40px 36px;
  }
  .why__box-title p:nth-child(2) {
    font-size: clamp(20px, 1.25rem + 0.8vw, 24px);
  }
  .why__box-txt {
    margin-top: 32px;
  }
}
@media only screen and (max-width:768px) {
  .why {
    padding-top: 340px;
  }
  .why .contact {
    padding: 0 20px;
  }
  .why .section__title {
    line-height: 1.2;
    text-align: center;
  }
  .why__title-wrapper {
    height: 95px;
  }
  .why__bg-txt {
    bottom: 48px;
  }
  .why__nine-strengths {
    margin-top: 85px;
  }
  .why__nine-strengths p:last-child {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #171717;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0;
  }
  .why__nine-strengths p:last-child span {
    font-size: 48px;
    font-family: "din-2014", "DIN Alternate", sans-serif;
    font-weight: bold;
    color: #ED2B2B;
    line-height: 1.29;
  }
  .why__contents__wrapper {
    background-size: calc(40vw + 5px);
    background-position: 73vw 35%;
  }
  .why__box-container {
    max-width: 600px;
    gap: 10px;
    align-items: flex-start;
    justify-content: left;
  }
  .why__box {
    padding: 0;
    width: calc((100% - 10px) / 2);
    width: 100%;
    max-width: 295px;
    min-width: unset;
  }
  .why__box.open .why__box-txt {
    opacity: 1;
    padding-top: 0;
    padding-bottom: 36px;
  }
  .why__box.open .why__box-toggle::after {
    transform: translateX(-50%) rotate(90deg);
  }
  .why__box-title {
    padding: 30px;
    position: relative;
  }
  .why__box-title:hover {
    cursor: pointer;
  }
  .why__box-title p:nth-child(2) {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.22;
  }
  .why__box-txt {
    opacity: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
    padding-left: 30px;
    padding-right: 30px;
  }
  .why__box-toggle {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .why__box-toggle::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    background: #171717;
  }
  .why__box-toggle::after {
    position: absolute;
    top: 0;
    left: 50%;
    content: "";
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    background: #171717;
  }
  .why__box-toggle::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    background: #171717;
  }
  .why__box-toggle::after {
    transition: transform 0.3s ease;
  }
  .why .steps {
    max-width: 600px;
    margin-top: 80px;
    padding: 80px 80px 70px;
  }
  .why .steps__title {
    font-size: 24px;
  }
  .why .steps__item-wrapper {
    margin-top: 48px;
    row-gap: 20px;
  }
  .why .steps__item-desc {
    line-height: 1.78;
  }
}
@media screen and (max-width: 639px) {
  .why__contents__wrapper {
    background-position: 73vw 57%;
  }
  .why__box-container {
    justify-content: center;
  }
  .why__box {
    max-width: 100%;
  }
  .why .steps {
    padding: 80px 20px 72px 20px;
  }
  .why .steps__item-container {
    padding: 0 20px 0 24px;
  }
  .why .steps__item-box:nth-child(7)::after {
    top: 48px;
  }
}
@media only screen and (max-width:430px) {
  .why__contents__wrapper {
    background-position: 73vw 50%;
  }
  .why .steps__item-title {
    font-size: 18px;
  }
}
/*====================================================================
    headless
/*==================================================================*/
.headless {
  background: #F5F5F5;
  padding-top: 162px;
  padding-bottom: 150px;
  position: relative;
}
.headless__inner {
  width: 100%;
  margin: 0 auto;
}
.headless .why__title-wrapper {
  width: 100%;
  height: 76px;
}
.headless .why__bg-txt {
  font-size: clamp(80px, 1rem + 10vw, 157px);
  bottom: -70px;
}
.headless .section__title {
  position: absolute;
  z-index: 5;
}
.headless__title-desc {
  margin-top: 48px;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #171717;
  line-height: 1.2;
}
.headless__box {
  background: #FFF;
  max-width: 820px;
}
.headless__box__sub-title {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: #ED2B2B;
  text-align: center;
}
.headless__box__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  color: #171717;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  margin-top: 9px;
}
.headless__about {
  margin: 80px auto 0;
  padding: 80px 40px 86px;
  max-width: 840px;
}
.headless__about-desc {
  margin: 55px auto 0;
  text-align: center;
}
.headless__benefits {
  padding: 80px 40px;
  margin: 100px auto 0;
  max-width: 840px;
}
.headless__benefits__wrapper {
  background-image: url(../images/shopify_logo.svg);
  background-repeat: no-repeat;
  background-position: -131px 323px;
  height: 1025px;
}
.headless__benefits-list {
  margin: 60px auto 0;
  max-width: 520px;
  padding-left: 23px;
  display: flex;
  flex-direction: column;
  row-gap: 37px;
}
.headless__benefits-row {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
}
.headless__benefits-row p:first-child {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.26;
  position: relative;
}
.headless__benefits-row p:first-child::before {
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  left: -23px;
  width: 18px;
  height: 18px;
  content: "";
  background-image: url("../images/check_black.svg");
  background-repeat: no-repeat;
  background-size: cover;
  letter-spacing: 0;
}
.headless__benefits-row p:last-child {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 10px;
  letter-spacing: 0;
}
.headless__benefits-annotation {
  max-width: 520px;
  margin: 34px auto 0;
  padding-left: 23px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  color: #171717;
  letter-spacing: 0;
}
.headless .contact {
  position: absolute;
  bottom: -231px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

@media screen and (max-width: 840px) {
  .headless .contact {
    bottom: -287px;
  }
}
@media only screen and (max-width:768px) {
  .headless {
    padding-top: 150px;
    padding-bottom: 260px;
  }
  .headless__title-wrapper, .headless__title__desc, .headless__box {
    max-width: 600px;
  }
  .headless .why__title-wrapper {
    height: 95px;
    width: 100%;
  }
  .headless .why__bg-txt {
    line-height: 1.071;
    font-size: 70px;
    bottom: unset;
    top: -67px;
  }
  .headless .section__title {
    text-align: center;
    line-height: 1.2;
    row-gap: 0;
  }
  .headless__title-desc {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.8;
  }
  .headless__box__title {
    font-size: 24px;
  }
  .headless__about {
    margin-top: 56px;
    padding: 50px 20px 56px;
  }
  .headless__about-desc {
    margin-top: 34px;
    line-height: 1.8;
  }
  .headless__benefits {
    margin-top: 50px;
    padding: 50px 20px;
  }
  .headless__benefits__wrapper {
    height: 800px;
    background-size: calc(40vw + 5px);
    background-position: -83px 420px;
  }
}
@media only screen and (max-width:768px) and (-webkit-min-device-pixel-ratio: 0) {
  .headless__benefits _::-webkit-full-page-media, .headless__benefits _:future, .headless__benefits__wrapper {
    background-position: -60px 538px;
  }
}
@media only screen and (max-width:768px) {
  .headless__benefits-list {
    margin-top: 39px;
    row-gap: 30px;
  }
  .headless__benefits-row p:first-child {
    font-size: 18px;
    line-height: 1.4;
  }
  .headless__benefits-row p:last-child {
    margin-top: 12px;
  }
  .headless__benefits-annotation {
    margin-top: 19px;
  }
  .headless .contact {
    bottom: -223px;
  }
}
@media only screen and (max-width:430px) {
  .headless {
    padding-bottom: 320px;
  }
  .headless__benefits__wrapper {
    background-position: -45px 612px;
  }
}
/*====================================================================
    flow
/*==================================================================*/
.flow {
  padding-top: 380px;
  padding-bottom: 158px;
  background: #FFF;
  position: relative;
}
.flow__inner {
  max-width: 820px;
  margin: 0 auto;
}
.flow__container {
  margin-top: 87px;
  display: flex;
  flex-direction: column;
  row-gap: 79px;
}
.flow__box {
  background: #F5F5F5;
  position: relative;
  padding: 40px 52px 46px 70px;
}
.flow__box::before {
  position: absolute;
  left: 50%;
  bottom: -40px;
  content: "";
  transform: translateY(-25%) rotate(135deg) translateX(calc(50% + 4px));
  width: 27px;
  height: 27px;
  border: 1px solid #171717;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  font-size: 19.1px;
}
.flow__box:last-child::before {
  display: none;
}
.flow__box-title__wrapper {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  align-items: center;
}
.flow__step {
  border: 1px solid #ED2B2B;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: bold;
  color: #ED2B2B;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 2px;
  line-height: 1;
}
.flow__step span {
  font-size: 12px;
}
.flow__box-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #171717;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.flow__box-description {
  margin-top: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 14px;
  line-height: 1.548;
  padding-left: 90px;
  letter-spacing: -0.1px;
}
.flow__contact {
  background: #ED2B2B;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 23px auto 0;
  width: 320px;
  height: 70px;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  transition: opacity 0.1s;
}
.flow__contact:hover {
  opacity: 0.5;
}
.flow__contact img {
  margin-right: 7px;
}

@media only screen and (max-width:768px) {
  .flow {
    padding-top: 324px;
    padding-bottom: 100px;
  }
  .flow__inner {
    max-width: 440px;
  }
  .flow__container {
    margin-top: 55px;
    row-gap: 59px;
  }
  .flow__box {
    padding: 36px 30px 55px;
  }
  .flow__box::before {
    bottom: -30px;
  }
  .flow__box-title__wrapper {
    flex-direction: column;
    row-gap: 23px;
  }
  .flow__step {
    width: 56px;
    height: 56px;
    font-size: 23px;
  }
  .flow__step span {
    font-size: 10px;
  }
  .flow__box-title {
    font-size: 24px;
    line-height: 1.209;
  }
  .flow__box-description {
    padding: 0;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.658;
  }
  .flow__contact {
    margin-top: 35px;
    font-size: 18px;
    max-width: 275px;
    width: 100%;
    height: 60px;
  }
  .flow__contact img {
    width: 18px;
    height: 13px;
    margin-top: 3px;
  }
}
/*====================================================================
    faq
/*==================================================================*/
.faq {
  background: #F5F5F5;
  padding-top: 150px;
  padding-bottom: 150px;
}
.faq__container {
  width: 100%;
  max-width: 814px;
  margin: 87px auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
.faq__question {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 64px;
  padding-right: 52.5px;
  position: relative;
  min-height: 57px;
}
.faq__icon {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 44px;
  height: 44px;
  background-color: #171717;
  color: #FFF;
  font-size: 32px;
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq__title {
  flex-grow: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.584;
  color: #171717;
  letter-spacing: -0.1px;
}
.faq__toggle {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  background-color: #000;
  transition: transform 0.3s ease;
}
.faq__toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq__toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq__item.open .faq__toggle::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq__answer {
  padding-left: 64px;
  padding-right: 52.5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s, padding-top 0.3s ease;
  opacity: 0;
  padding-top: 0;
}
.faq__answer p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  line-height: 1.668;
}
.faq__item.open .faq__answer {
  max-height: 600px;
  opacity: 1;
  padding-top: 16px;
}

@media only screen and (max-width:768px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .faq__container {
    max-width: 440px;
    margin-top: 55px;
    row-gap: 48px;
  }
  .faq__icon {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  .faq__question {
    min-height: 74px;
    padding-left: 54px;
    padding-right: 40px;
  }
  .faq__title {
    font-size: 16px;
  }
  .faq__toggle {
    width: 18px;
    height: 18px;
  }
  .faq__answer {
    padding-left: 54px;
    padding-right: 40px;
  }
}
@media only screen and (max-width:430px) {
  .faq__title br {
    display: none;
  }
}
/*====================================================================
    contact-form
/*==================================================================*/
.contact-form {
  padding: 150px 40px;
  /* チェックボックスのスタイル */
}
.contact-form__inner {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form__title {
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 40px;
  color: #000;
  font-weight: 900;
  display: flex;
  row-gap: 9px;
  flex-direction: column;
  line-height: 1;
}
.contact-form__title span {
  font-family: "din-2014", "DIN Alternate", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #E43231;
  line-height: 1.29;
}
.contact-form__description {
  margin-top: 57px;
  font-size: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000;
  text-align: center;
}
.contact-form .required-mark {
  background: #ED2B2B;
  color: #FFF;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  margin-left: 10px;
}
.contact-form form {
  margin: 90px auto 0;
}
.contact-form label {
  display: block;
  margin-bottom: 17px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 900;
}
.contact-form input {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  color: #171717;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 21px 20px 19px;
  margin-bottom: 40px;
  border: 1px solid #171717;
  border-radius: 4px;
}
.contact-form .form-alert {
  color: red;
}
.contact-form input::placeholder, .contact-form select::placeholder, .contact-form textarea::placeholder {
  color: #BFBFBF;
}
.contact-form .select-wrapper {
  position: relative;
}
.contact-form .select-wrapper::after {
  content: "";
  position: absolute;
  top: calc(50% - 24px);
  right: 28px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #383838;
  border-bottom: 2px solid #383838;
  transform: rotate(45deg) translateY(-50%);
}
.contact-form select {
  -webkit-appearance: none;
  appearance: none;
  color: #171717;
}
.contact-form textarea {
  height: 150px;
  margin-bottom: 44px;
}
.contact-form .checkbox-group {
  margin: 40px 0 50px;
  display: flex;
  flex-direction: row;
  column-gap: 6px;
  align-items: baseline;
}
.contact-form .submit-button {
  display: block;
  width: fit-content;
  padding: 25px 119px;
  background-color: #171717;
  color: #FFF;
  border: none;
  border-radius: 47px;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #171717;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.036em;
}
.contact-form .submit-button:hover {
  background-color: #FFF;
  color: black;
}
.contact-form input[type=checkbox] {
  appearance: none;
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0;
  border: 1px solid #171717;
  border-radius: 2px;
  background-color: #FFF;
  position: relative;
}
.contact-form input[type=checkbox]:checked {
  background-color: #FFF;
}
.contact-form input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-form .agreement-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #171717;
  line-height: 1.75;
}
.contact-form .agreement-text a {
  -webkit-text-decoration: underline #171717;
  text-decoration: underline #171717;
  text-underline-offset: 1px;
}

@media only screen and (max-width:768px) {
  .contact-form {
    padding: 100px 20px;
  }
  .contact-form__inner {
    max-width: 440px;
  }
  .contact-form__title {
    font-size: 30px;
  }
  .contact-form__title span {
    font-size: 18px;
  }
  .contact-form__description {
    margin-top: 50px;
  }
  .contact-form form {
    margin-top: 60px;
  }
  .contact-form input {
    padding: 17px 20px 13px;
  }
  .contact-form .agreement-text {
    font-size: 14px;
  }
  .contact-form .checkbox-group {
    margin-top: 46px;
  }
  .contact-form .submit-button {
    font-size: 18px;
    padding: 22px 110px 20px;
  }
}
/*====================================================================
    company-location
/*==================================================================*/
.company-location {
  background: #F5F5F5;
  padding-top: 150px;
  padding-bottom: 155px;
}
.company-location__inner {
  margin: 0 auto;
  max-width: 820px;
}
.company-location__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 60px;
  margin-top: 77px;
}
.company-location__box {
  background: #FFF;
  padding: 60px 40px 55px;
}
.company-location__box-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  color: #171717;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}
.company-location__box-img {
  margin: 45px auto 40px;
}
.company-location__box-img img {
  width: 100%;
  height: auto;
}
.company-location__info {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  color: #000;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  line-height: 1.322;
}
.company-location__postcode {
  margin-bottom: 9px;
  line-height: 1.072;
}

@media only screen and (max-width:768px) {
  .company-location {
    padding-top: 80px;
    padding-bottom: 85px;
  }
  .company-location__container {
    row-gap: 30px;
    flex-direction: column;
    max-width: 440px;
    margin: 62px auto 0;
  }
  .company-location__box {
    padding: 57px 31px 55px;
  }
  .company-location__box-title {
    font-size: 24px;
  }
  .company-location__box-img {
    margin: 34px auto 30px;
  }
  .company-location__info {
    row-gap: 25px;
  }
}
/*====================================================================
    footer
/*==================================================================*/
.footer {
  background: #383838;
  padding: 120px 80px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  margin-top: auto;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer__location {
  display: flex;
  flex-direction: column;
  row-gap: 34px;
  width: 60%;
}
.footer__company-logo {
  width: 244px;
  height: 23px;
}
.footer__company-logo img {
  width: 100%;
  height: auto;
}
.footer__address {
  display: flex;
  flex-direction: column;
}
.footer__address p {
  color: #FFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.406;
  letter-spacing: 0.015em;
}
.footer__address a {
  color: #FFF !important;
}
.footer__nav-area {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: flex-end;
  width: 40%;
}
.footer__linkin-page {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__linkin-page li a {
  display: block;
  height: 100%;
  width: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.015em;
  transition: all 0.3s;
}
.footer__linkin-page li a:hover {
  opacity: 0.5;
}
.footer__company-nav {
  display: flex;
  column-gap: 23px;
  justify-content: flex-end;
}
.footer__company-nav li a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #FFF;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.015em;
  transition: all 0.3s;
}
.footer__company-nav li a:hover {
  opacity: 0.5;
}
.footer__copyright {
  margin-top: 10px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 12px;
  color: #FFF;
  letter-spacing: 0.015em;
}

@media only screen and (max-width:768px) {
  .footer {
    padding: 100px 40px 40px;
    flex-direction: column;
  }
  .footer__location {
    row-gap: 30px;
    width: 100%;
  }
  .footer__address p {
    font-size: 12px;
    line-height: 1.39;
  }
  .footer__address p:last-child {
    margin-top: 18px;
  }
  .footer__nav-area {
    row-gap: 55px;
    align-items: flex-start;
    width: 100%;
  }
  .footer__linkin-page {
    gap: 26px 30px;
    justify-content: flex-start;
  }
  .footer__linkin-page li a {
    font-size: 14px;
  }
  .footer__company-nav {
    column-gap: 22px;
  }
  .footer__company-nav li a {
    font-size: 12px;
  }
  .footer__copyright {
    margin: 15px auto 0;
  }
}
/*====================================================================
    thanks page
/*==================================================================*/
.thanks {
  padding: 0 33px;
}
.thanks__inner {
  margin: 230px 0 150px;
}
.thanks__ttl {
  text-align: center;
  line-height: 1.2;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 30px;
  color: #222;
  font-weight: 900;
}
.thanks__txt {
  margin: 73px auto 0;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #171717;
  line-height: 1.8;
}
.thanks__btn {
  text-align: center;
  width: 320px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 47px;
  border: 3px solid #171717;
  margin: 88px auto 0;
  background: #171717;
  color: #FFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.thanks__btn:hover {
  background: #FFF;
  color: #171717;
}

@media only screen and (max-width:768px) {
  .thanks__inner {
    margin: 167px auto 100px;
  }
  .thanks__ttl {
    font-size: 24px;
    line-height: 1.3;
  }
  .thanks__txt {
    margin-top: 60px;
  }
  .thanks__btn {
    margin-top: 67px;
    max-width: 260px;
    width: 100%;
  }
}
@media only screen and (max-width:430px) {
  .thanks__txt {
    letter-spacing: -0.1px;
  }
  .thanks__btn {
    max-width: 260px;
    font-size: 18px;
    height: 60px;
  }
}