@font-face {
  font-family: "YuGothic";
  src: url("../fonts/YuGothic-Regular.woff2") format("woff2"), url("../fonts/YuGothic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YuGothic";
  src: url("../fonts/YuGothic-Bold.woff2") format("woff2"), url("../fonts/YuGothic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YuMincho";
  src: url("../fonts/YuMincho-Regular.woff2") format("woff2"), url("../fonts/YuMincho-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YuMincho";
  src: url("../fonts/YuMincho-Light.woff2") format("woff2"), url("../fonts/YuMincho-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YuMincho";
  src: url("../fonts/YuMincho-Bold.woff2") format("woff2"), url("../fonts/YuMincho-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Regular.woff2") format("woff2"), url("../fonts/Futura-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Medium.woff2") format("woff2"), url("../fonts/Futura-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Bold.woff2") format("woff2"), url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 10px;
}

@media (max-width: 1439px) {
  html {
    font-size: 0.69vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.67vw;
  }
}
body {
  margin: 0;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2c2a2a;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: #f32322;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin: 0;
}

.container {
  max-width: 144rem;
  margin: 0 auto;
}

.section {
  width: 100%;
}

.section--hero {
  height: 78rem;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .section--hero {
    height: auto;
    min-height: 50rem;
  }
}

.section--about {
  height: 76.9rem;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .section--about {
    height: auto;
    margin-bottom: 10.85rem;
  }
}

.section--services {
  background-color: #f32322;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .section--services {
    padding-bottom: 6rem;
  }
}

.section--company {
  background-color: #ffffff;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .section--company {
    height: auto;
    padding-bottom: 6rem;
  }
}

.header {
  width: 100%;
  height: 10rem;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header {
    height: 4.8rem;
  }
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5.6rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0.36rem 0rem 0.36rem 1.6rem;
  }
}

.header__logo {
  height: 4rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .header__logo {
    height: 4.07rem;
  }
}

.header__nav {
  display: flex;
  gap: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__button {
  width: 13.75rem;
  height: 10rem;
  background-color: #f32322;
  border: 0.2rem solid #f32322;
  color: #ffffff;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__button {
    width: 10rem;
    height: 6rem;
    font-size: 1.2rem;
  }
}
.header__button:hover {
  opacity: 0.9;
}
.header__button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2.4rem;
  width: 0.1rem;
  background-color: #fff;
}

.header__nav > .header__button:last-child::after {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__background {
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .hero__background {
    width: 100%;
    height: auto;
    margin-bottom: -0.1rem;
  }
}

.hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__logo {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 21.5rem;
  transform: translateX(-64%);
  width: 9.6rem;
  height: 22.1rem;
}
@media screen and (max-width: 768px) {
  .hero__logo {
    top: 20.1rem;
    transform: translateX(-50%);
  }
}

.hero__title {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 54rem;
  transform: translateX(-50%);
  width: auto;
  height: 12rem;
  padding-right: 2.5rem;
  padding-bottom: 2.3rem;
}
.hero__title img {
  width: auto;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .hero__title {
    top: 48.7rem;
    width: 19.8rem;
    padding-bottom: 3.2rem;
    margin-left: 0.3rem;
  }
}

.hero__line {
  position: absolute;
  right: 13.9rem;
  top: 63.9rem;
  width: 1.3rem;
  height: 20rem;
  z-index: 1;
}
.hero__line::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0.1rem;
  height: 100%;
  background-color: #2c2a2a;
  left: 50%;
  transform: translateX(-50%);
}
.hero__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: #ff0000;
  border-radius: 50%;
  animation: lineRunDown 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .hero__line {
    right: 2.4rem;
    top: unset;
    bottom: 0;
    transform: translateX(-50%);
    width: 0.1rem;
    height: 8rem;
  }
  .hero__line::before {
    width: 0.1rem;
    height: 100%;
  }
}

.hero__line-image {
  display: none;
}

@keyframes lineRunDown {
  0% {
    bottom: 100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 0;
    opacity: 0;
  }
}
.about {
  position: relative;
  width: 100%;
  height: 76.9rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    height: auto;
    min-height: 60rem;
  }
}

.about__bg {
  position: absolute;
  left: 0;
  top: 8.5rem;
  width: 66.5rem;
  height: 55.6rem;
  z-index: 0;
  mask-image: url("../images/about-mask.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 768px) {
  .about__bg {
    position: static;
    width: 100%;
    height: auto;
    top: 5rem;
  }
}

.about__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__line {
  position: absolute;
  right: 0;
  top: 22.7rem;
  width: 40.3rem;
  max-width: 40.3rem;
  height: 0.2rem;
  z-index: 1;
}
.about__line img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .about__line {
    position: absolute;
    width: 15.2rem;
    top: 24.4rem;
  }
}

.about__header {
  position: absolute;
  left: 71.15rem;
  top: 9.1rem;
  width: 29.4rem;
  height: 13.8rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about__header {
    position: static;
    left: auto;
    top: auto;
    width: 50%;
    height: auto;
    margin: 3.1rem 0rem 2.2rem 2.2rem;
  }
}

.about__header-fill {
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 98.6%;
  height: 97.1%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .about__header-fill {
    position: static;
    width: 18.5rem;
    height: 8.7rem;
  }
}

.about__header-stroke {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about__header-stroke {
    display: none;
  }
}

.about__content {
  position: absolute;
  left: 71.3rem;
  top: 26.4rem;
  width: 54rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about__content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 0 2.4rem;
  }
}

.about__label {
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #2c2a2a;
  margin: 0 0 2.4rem 0;
  line-height: 2.4rem;
}
@media screen and (max-width: 768px) {
  .about__label {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

.about__text {
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #2c2a2a;
  line-height: 2.4rem;
  display: flex;
  flex-direction: column;
}
.about__text p, .about__text .about__text__item {
  margin: 0 0 2.4rem 0;
}
.about__text p:last-child, .about__text .about__text__item:last-child {
  margin-bottom: -0.1rem;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

.section--services {
  background-color: #f32322;
  width: 100%;
  position: relative;
}

.service__img--top {
  position: absolute;
  right: 0;
  top: -17rem;
  width: 38rem;
  height: 27rem;
}
@media screen and (max-width: 768px) {
  .service__img--top {
    position: static;
    width: 100%;
    height: 25.5rem;
  }
}

.services {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .services {
    gap: 4rem;
  }
}

.services__header-area {
  position: relative;
  width: 144rem;
  max-width: 100%;
  height: 26.9rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .services__header-area {
    width: 100%;
    height: auto;
    padding: 2.1rem 2.4rem 2rem 2.3rem;
  }
}

.services__line-top {
  position: absolute;
  right: 0;
  top: 16.1rem;
  width: 94.4rem;
  height: 0.1rem;
}
.services__line-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .services__line-top {
    top: 6rem;
    width: 11.1rem;
  }
}

.services__header {
  position: absolute;
  left: 10.8rem;
  top: 3.6rem;
  width: 35rem;
  height: 12.8rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .services__header {
    position: static;
    margin-left: 0.3rem;
    width: 22rem;
    height: 8.1rem;
  }
  .services__header img {
    width: 22rem;
    height: 8.1rem;
  }
}

.services__label {
  position: absolute;
  left: 10.4rem;
  top: 19.7rem;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .services__label {
    position: static;
    margin-top: 2rem;
    margin-left: 0.1rem;
  }
}

.services__description {
  position: absolute;
  left: 10.4rem;
  top: 24.6rem;
  width: 54rem;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 2.4rem;
}
@media screen and (max-width: 768px) {
  .services__description {
    position: static;
    width: 100%;
    margin-top: 1.1rem;
  }
}

.services__container {
  width: 100rem;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .services__container {
    width: 100%;
    padding: 0 2.4rem;
    gap: 2.36rem;
  }
}

.services__card {
  background-color: #ffffff;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 8rem 3.2rem;
}
@media screen and (max-width: 768px) {
  .services__card {
    flex-direction: column;
    gap: 0.4rem;
    padding: 2.4rem 2.4rem 2.3rem;
  }
}

.services__card--first {
  gap: 4rem;
  padding: 8rem 7.3rem 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .services__card--first {
    flex-direction: column;
    gap: 0.4rem;
    padding: 2.4rem 2.4rem 2.3rem;
  }
}
.services__card--first .services__card-text {
  font-size: 1.6rem;
  line-height: 3.6rem;
}
@media screen and (max-width: 768px) {
  .services__card--first .services__card-text {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .services__card--first .services__card-title-row {
    gap: 2.4rem;
  }
}
.services__card--first .services__card-icon {
  margin-left: -0.8rem;
  margin-right: 0.8rem;
}
@media screen and (max-width: 768px) {
  .services__card--first .services__card-icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.services__card--first .services__card-content {
  margin-left: -0.8rem;
}
.services__card--first .services__card-title-row {
  margin-bottom: -0.4rem;
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  .services__card--first .services__card-title-row {
    margin-bottom: unset;
    margin-top: unset;
  }
}

.services__card--002 .services__card-text {
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .services__card--002 .services__card-text {
    letter-spacing: -0.01em;
  }
}

.services__card--003 .services__card-text {
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .services__card--003 .services__card-text {
    letter-spacing: -0.01em;
  }
}

.services__card--last .services__card-number {
  height: 4.4rem;
}
@media screen and (max-width: 768px) {
  .services__card--last .services__card-title {
    margin: 0.9rem 0rem;
  }
}
.services__card--last .services__card-text {
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .services__card--last .services__card-text {
    letter-spacing: -0.01em;
  }
}

.services__card-icon {
  flex-shrink: 0;
  width: 16rem;
  height: 16rem;
  overflow: hidden;
  position: relative;
}

.services__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .services__card-content {
    width: 100%;
  }
}

.services__card-title-row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 0;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .services__card-title-row {
    max-width: max-content;
    margin: 0 auto;
    gap: 2.8rem;
  }
}

.services__card-number {
  height: 4.1rem;
  flex-shrink: 0;
}
.services__card-number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .services__card-number {
    width: 4.3rem;
    height: 2.8rem;
  }
}

.services__card-title {
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #f32322;
  text-align: center;
  line-height: 4.8rem;
  line-height: 3.2rem;
  margin: 0.9rem 0rem 0.8rem;
}
@media screen and (max-width: 768px) {
  .services__card-title {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.services__card-text {
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #2c2a2a;
  line-height: 2.4rem;
  text-align: justify;
  letter-spacing: 0.002em;
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  .services__card-text {
    font-size: 1.4rem;
    line-height: 2.1rem;
    letter-spacing: 0.03em;
    margin-top: 0rem;
  }
}

.services__other {
  position: relative;
  height: 28rem;
  margin: 0 auto;
  background-color: #2c2a2a;
}
@media screen and (max-width: 768px) {
  .services__other {
    width: 100%;
    height: auto;
    padding: 6.1rem 2.4rem 6rem;
  }
}

.services__other-content {
  position: relative;
}

.services__other-line {
  position: absolute;
  left: 0;
  top: 13.4rem;
  width: 10.4rem;
  height: 0.2rem;
}
@media screen and (max-width: 768px) {
  .services__other-line {
    display: none;
  }
}
.services__other-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__other-title {
  position: absolute;
  left: 10.4rem;
  top: 9.8rem;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .services__other-title {
    position: static;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}

.services__other-text {
  position: absolute;
  left: 11rem;
  top: 15.8rem;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 2.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .services__other-text {
    position: static;
    white-space: normal;
    margin-top: 2.3rem;
  }
}

.company {
  position: relative;
  width: 100%;
  height: 78.7rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company {
    height: auto;
  }
}

.company__bg {
  position: absolute;
  right: 0;
  top: 12.3rem;
  width: 64rem;
  height: 66.4rem;
  mask-image: url("../images/company-mask.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .company__bg {
    mask-image: none;
    position: static;
    width: 100%;
    height: 16.9rem;
  }
}

.company__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

@media screen and (max-width: 768px) {
  .company__bg {
    border-radius: 0;
    overflow: visible;
  }
  .company__bg .company__bg-image {
    border-radius: 0 !important;
  }
}
.company__line-top {
  position: absolute;
  right: 44.1rem;
  top: 24.3rem;
  width: 39rem;
  height: 0.2rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .company__line-top {
    top: 22.8rem;
    right: 0rem;
    width: 4.1rem;
  }
}
.company__line-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company__header {
  position: absolute;
  left: 11.2rem;
  top: 11.9rem;
  width: 46.6rem;
  height: 15.9rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .company__header {
    position: static;
    width: 29.2rem;
    height: 10.1rem;
    margin: 2.2rem 0rem 0rem 2.6rem;
  }
}

.company__header-fill {
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .company__header-fill {
    position: static;
  }
}

.company__header-stroke {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .company__header-stroke {
    display: none;
  }
}

.company__label-main {
  position: absolute;
  left: 10.4rem;
  top: 28rem;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #2c2a2a;
  line-height: normal;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .company__label-main {
    position: static;
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
    line-height: 2.1rem;
    margin-left: 2.4rem;
  }
}

.company__info {
  position: absolute;
  left: 10.4rem;
  top: 38.9rem;
  width: 72rem;
  max-width: 61.6rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .company__info {
    position: static;
    width: 100%;
    padding: 0rem 2.4rem;
  }
}

.company__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 768px) {
  .company__row {
    flex-direction: column;
    margin-bottom: 0rem;
    padding: 0.7rem 2.4rem 0.9rem;
  }
  .company__row::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0rem;
    height: 0.1rem;
    background-color: #F32322;
  }
  .company__row:nth-child(1)::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    top: -0.1rem;
    height: 0.1rem;
    background-color: #F32322;
  }
}
.company__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .company__row:last-child {
    padding-bottom: 0.7rem;
  }
}

.company__label {
  position: relative;
  width: 12rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .company__label {
    width: 100%;
    margin-bottom: 0.7rem;
  }
}
.company__label span {
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #f32322;
  line-height: normal;
  white-space: nowrap;
}

.company__row:nth-child(1) .company__label::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2.1rem;
  width: 12rem;
  height: 0.1rem;
  background-color: #F32322;
}
@media screen and (max-width: 768px) {
  .company__row:nth-child(1) .company__label::after {
    display: none;
  }
}
.company__row:nth-child(1) .company__value::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2.1rem;
  width: 48rem;
  height: 0.1rem;
  background-color: #DED2D2;
}
@media screen and (max-width: 768px) {
  .company__row:nth-child(1) .company__value::after {
    display: none;
  }
}

.company__label-line {
  position: absolute;
  left: 0;
  bottom: -1.8rem;
  width: 12rem;
  height: 0.1rem;
}
@media screen and (max-width: 768px) {
  .company__label-line {
    display: none;
  }
}

.company__value {
  position: relative;
  margin-left: 1.6rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .company__value {
    margin-left: 0;
    width: 100%;
  }
}
.company__value span {
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #2c2a2a;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .company__value span {
    white-space: normal;
    line-height: 2.4rem;
  }
}

.company__value-line {
  position: absolute;
  left: 0;
  bottom: -1.8rem;
  width: 48rem;
  height: 0.1rem;
}
@media screen and (max-width: 768px) {
  .company__value-line {
    display: none;
  }
}

.footer {
  width: 100%;
  height: 43rem;
  background-color: #da2a29;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    height: auto;
    min-height: 30rem;
    padding: 6rem 2rem 7rem;
  }
}

.footer__container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 144rem;
  margin: 0 auto;
}

.footer__logo {
  position: absolute;
  left: 16rem;
  top: 6.6rem;
  width: 11rem;
  height: 25.5rem;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    position: static;
    width: 6.5rem;
    height: auto;
    margin: 0 auto 6.1rem;
  }
}

.footer__copyright {
  position: absolute;
  right: 0rem;
  top: 38.5rem;
  transform: translateX(-50%);
  font-family: "Futura", "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  line-height: normal;
  width: 15.8rem;
  height: 1.7rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    top: unset;
    bottom: -7.7rem;
    left: calc(50% + 0.1rem);
  }
}

.footer-up {
  position: absolute;
  right: 8rem;
  top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .footer-up {
    display: none;
  }
}

.btn-up {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  /* animate the arrow image on hover / focus */
}
.btn-up img {
  display: block;
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.btn-up {
  /* move arrow upwards on hover or keyboard focus */
}
.btn-up:hover img {
  transform: translateY(-6px);
}
.btn-up {
  /* small bounce on active (press) */
}
.btn-up:active img {
  transform: translateY(-2px);
}
.btn-up {
  /* visible focus ring for keyboard users */
}
.btn-up:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.12);
  outline-offset: 3px;
}

.footer-up__text {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-family: "Jost", sans-serif;
}

.footer__nav {
  position: absolute;
  left: 79.4rem;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    position: static;
    align-items: center;
    gap: 3.2rem;
    margin-bottom: 3rem;
  }
}

.footer__link {
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .footer__link {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}
.footer__link:hover {
  opacity: 0.8;
}

.privacy {
  width: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding-top: 4.8rem;
  }
}

.privacy__container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 10rem 0rem 8rem;
}
@media screen and (max-width: 768px) {
  .privacy__container {
    padding: 8rem 2.4rem 7.9rem;
  }
}

.privacy__intro {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .privacy__intro {
    gap: 1.31rem;
  }
}

.privacy__page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  color: #f32322;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  margin-top: -0.1rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
  .privacy__page-title {
    font-size: 2.8rem;
    width: 100%;
    text-align: left;
    margin: 0;
  }
}

.privacy__intro-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2c2a2a;
  line-height: 1.7;
  text-align: center;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy__intro-text {
    text-align: left;
  }
}

.privacy__section {
  padding: 4rem 0 3.925rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  .privacy__section {
    padding: 4rem 0 3.915rem;
    border-color: #f32322;
  }
}
.privacy__section--last {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .privacy__section--first {
    border-color: transparent;
  }
}

.privacy__section--007 {
  padding-bottom: 3.9rem;
}
@media screen and (max-width: 768px) {
  .privacy__section--007 {
    padding-top: 4rem;
  }
}

.privacy__section--010 {
  padding-top: 3.9rem;
}
@media screen and (max-width: 768px) {
  .privacy__section--010 {
    padding-top: 4rem;
  }
}
.privacy__section--010 .privacy__title::before {
  margin-left: 0.8rem;
  margin-right: 0.5rem;
}

.privacy__section--last .privacy__title::before {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.privacy__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #f32322;
  line-height: 1.15;
  margin: -0.1rem 0rem 0.1rem;
  padding: 0;
  list-style-position: outside;
  position: relative;
}
.privacy__title::after {
  content: "";
  position: absolute;
  left: -101.5vw;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: #f32322;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .privacy__title::after {
    display: none;
  }
}
.privacy__title {
  counter-increment: privacy-section;
}
.privacy__title::before {
  content: counter(privacy-section) ". ";
  margin-right: 0.2rem;
  margin-left: 0.5rem;
  position: relative;
  z-index: 1;
}

.privacy__container {
  counter-reset: privacy-section;
}

.privacy__content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2c2a2a;
  line-height: 1.71;
  margin: 0;
}
.privacy__content p {
  margin: 0;
  width: 100%;
}

/* Example component styles using BEM naming */
/* NOTE: Use full BEM class names in SCSS. Do NOT use `&__...` or `&--...` shorthand. */
.button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 0.6rem;
  background: #f32322;
  color: #fff;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 0;
  /* Allowed: using & for pseudo-classes is fine */
}
.button:hover {
  opacity: 0.95;
}
.button:focus {
  outline: 0.2rem solid rgba(30, 136, 229, 0.18);
}

.button--secondary {
  background: #da2a29;
  color: #111;
}

/* Preferred: write element and modifier classes explicitly (BEM). */
.card {
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.06);
  padding: 2.4rem;
  border-radius: 0.8rem;
}

.card__title {
  font-size: 1.125rem;
  margin: 0 0 0.8rem 0;
}

main {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 0rem;
  }
}

.sp {
  display: none;
}

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

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