@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* 色指定 */
/* フォント指定 */
.pc-block {
  display: block;
}

.tablet-block {
  display: none;
}

.sp-block {
  display: none;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  body .pc-block {
    display: none;
  }
  body .tablet-block {
    display: none;
  }
  body .sp-block {
    display: block;
  }
}

.page-wrapper {
  overflow-y: hidden;
  overflow-x: hidden;
  max-width: 1440px;
}

.header {
  width: 100%;
  background-color: #f6f6f6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header__container {
  width: 95%;
  max-width: 1054px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .header__container {
    width: 100%;
    height: 56px;
    padding: 0 16px;
  }
  .header__container .pc-block {
    display: none;
  }
  .header__container .tablet-block {
    display: none;
  }
  .header__container .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__container {
    width: 95%;
    gap: 16px;
  }
  .header__container .pc-block {
    display: block;
  }
  .header__container .tablet-block {
    display: block;
  }
  .header__container .sp-block {
    display: none;
  }
}

.navbar-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar-header {
    gap: 16px;
  }
  .navbar-header .pc-block {
    display: block;
  }
  .navbar-header .tablet-block {
    display: block;
  }
  .navbar-header .sp-block {
    display: none;
  }
}

.navbar-brand {
  text-decoration: none;
}
.navbar-brand.desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .navbar-brand.desktop {
    display: block;
  }
  .navbar-brand.desktop .pc-block {
    display: none;
  }
  .navbar-brand.desktop .tablet-block {
    display: none;
  }
  .navbar-brand.desktop .sp-block {
    display: block;
  }
}

.tsunagu-logo {
  display: flex;
  align-items: center;
}
.tsunagu-logo img {
  height: 32px;
  width: auto;
}

.navbar-collapse {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .navbar-collapse {
    display: none;
  }
  .navbar-collapse .pc-block {
    display: none;
  }
  .navbar-collapse .tablet-block {
    display: none;
  }
  .navbar-collapse .sp-block {
    display: block;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .navbar-nav {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .navbar-nav .pc-block {
    display: none;
  }
  .navbar-nav .tablet-block {
    display: none;
  }
  .navbar-nav .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar-nav {
    gap: 16px;
    text-align: center;
  }
  .navbar-nav .pc-block {
    display: block;
  }
  .navbar-nav .tablet-block {
    display: block;
  }
  .navbar-nav .sp-block {
    display: none;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0f0f0f;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  top: -2px;
}
.nav-link:hover {
  background: linear-gradient(to right, #e65525, #92255a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .nav-link {
    display: none;
  }
  .nav-link .pc-block {
    display: none;
  }
  .nav-link .tablet-block {
    display: none;
  }
  .nav-link .sp-block {
    display: block;
  }
}

.navbar-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(to right, #e65525, #92255a);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.navbar-toggle .toggleImage {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .navbar-toggle .toggleImage {
    letter-spacing: -1px;
  }
  .navbar-toggle .toggleImage .pc-block {
    display: none;
  }
  .navbar-toggle .toggleImage .tablet-block {
    display: none;
  }
  .navbar-toggle .toggleImage .sp-block {
    display: block;
  }
}
.navbar-toggle img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .navbar-toggle {
    padding: 8px 16px;
  }
  .navbar-toggle .pc-block {
    display: none;
  }
  .navbar-toggle .tablet-block {
    display: none;
  }
  .navbar-toggle .sp-block {
    display: block;
  }
}

.footer {
  width: 100%;
  background-color: #2c3e50;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0;
  }
  .footer .pc-block {
    display: none;
  }
  .footer .tablet-block {
    display: none;
  }
  .footer .sp-block {
    display: block;
  }
}
.footer__container {
  width: 55%;
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1054px;
  margin: 0 auto;
  padding: 18px 88px;
}
@media screen and (max-width: 767px) {
  .footer__container {
    width: 100%;
    align-items: flex-start;
    height: 49px;
    padding: 18px 16px;
  }
  .footer__container .pc-block {
    display: none;
  }
  .footer__container .tablet-block {
    display: none;
  }
  .footer__container .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__container {
    width: 100%;
  }
  .footer__container .pc-block {
    display: block;
  }
  .footer__container .tablet-block {
    display: block;
  }
  .footer__container .sp-block {
    display: none;
  }
}
.footer__text {
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 10px;
  }
  .footer__text .pc-block {
    display: none;
  }
  .footer__text .tablet-block {
    display: none;
  }
  .footer__text .sp-block {
    display: block;
  }
}
.footer__policy {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  line-height: 1.3;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .footer__policy {
    font-size: 10px;
  }
  .footer__policy .pc-block {
    display: none;
  }
  .footer__policy .tablet-block {
    display: none;
  }
  .footer__policy .sp-block {
    display: block;
  }
}

.section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
  .section .pc-block {
    display: none;
  }
  .section .tablet-block {
    display: none;
  }
  .section .sp-block {
    display: block;
  }
}
.section__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .section__container {
    padding: 0 15px;
  }
  .section__container .pc-block {
    display: none;
  }
  .section__container .tablet-block {
    display: none;
  }
  .section__container .sp-block {
    display: block;
  }
}
.section__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #0f0f0f;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .section__title .pc-block {
    display: none;
  }
  .section__title .tablet-block {
    display: none;
  }
  .section__title .sp-block {
    display: block;
  }
}
.section__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: rgba(76, 59, 45, 0.6);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.top {
  background-color: #f6f6f6;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 35px;
    min-height: auto;
  }
  .top .pc-block {
    display: none;
  }
  .top .tablet-block {
    display: none;
  }
  .top .sp-block {
    display: block;
  }
}
.top__container {
  width: 95%;
  max-width: 1054px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 540px;
  padding: 0px 16px;
}
@media screen and (max-width: 767px) {
  .top__container {
    width: 100%;
    flex-direction: column;
    padding: 0 12px;
    min-height: auto;
  }
  .top__container .pc-block {
    display: none;
  }
  .top__container .tablet-block {
    display: none;
  }
  .top__container .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__container {
    width: 90%;
  }
  .top__container .pc-block {
    display: block;
  }
  .top__container .tablet-block {
    display: block;
  }
  .top__container .sp-block {
    display: none;
  }
}
.top__content {
  position: relative;
  top: 0px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top__content {
    padding-left: 4px;
  }
  .top__content .pc-block {
    display: none;
  }
  .top__content .tablet-block {
    display: none;
  }
  .top__content .sp-block {
    display: block;
  }
}
.top__badge {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #e65525;
  border-radius: 24px;
  color: #e65525;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .top__badge {
    padding: 8px 6px;
    margin-bottom: 6px;
  }
  .top__badge .pc-block {
    display: none;
  }
  .top__badge .tablet-block {
    display: none;
  }
  .top__badge .sp-block {
    display: block;
  }
}
.top__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  background: linear-gradient(to right, #e65525, #92255a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 32px 0;
}
@media screen and (min-width: 768px) {
  .top__title span {
    letter-spacing: 0;
  }
  .top__title span:nth-child(1) {
    margin-left: -24px;
  }
  .top__title .pc-block {
    display: none;
  }
  .top__title .tablet-block {
    display: none;
  }
  .top__title .sp-block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .top__title {
    font-size: 30px;
    margin-bottom: 24px;
    letter-spacing: 0px;
  }
  .top__title span:nth-child(1) {
    margin-left: -14px;
  }
  .top__title .pc-block {
    display: none;
  }
  .top__title .tablet-block {
    display: none;
  }
  .top__title .sp-block {
    display: block;
  }
}
.top__description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #0f0f0f;
  margin: 0 0 32px 0;
}
@media screen and (max-width: 767px) {
  .top__description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .top__description .pc-block {
    display: none;
  }
  .top__description .tablet-block {
    display: none;
  }
  .top__description .sp-block {
    display: block;
  }
}
.top__buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top__buttons {
    justify-content: center;
    gap: 14px;
  }
  .top__buttons .pc-block {
    display: none;
  }
  .top__buttons .tablet-block {
    display: none;
  }
  .top__buttons .sp-block {
    display: block;
  }
}
.top__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  border-radius: 32px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.top__cta-btn img {
  width: 20px;
  height: 20px;
}
.top__cta-btn--outline {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #e65525, #92255a) border-box;
  border: 2px solid transparent;
  color: #e65525;
}
@media screen and (max-width: 767px) {
  .top__cta-btn--outline {
    letter-spacing: 2px;
  }
  .top__cta-btn--outline .pc-block {
    display: none;
  }
  .top__cta-btn--outline .tablet-block {
    display: none;
  }
  .top__cta-btn--outline .sp-block {
    display: block;
  }
}
.top__cta-btn--gradient {
  background: linear-gradient(to right, #e65525, #92255a);
  border: none;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__cta-btn {
    padding: 16px 24px;
    font-size: 15px;
    width: 267px;
  }
  .top__cta-btn img {
    width: 16px;
    height: 16px;
  }
  .top__cta-btn .pc-block {
    display: none;
  }
  .top__cta-btn .tablet-block {
    display: none;
  }
  .top__cta-btn .sp-block {
    display: block;
  }
}
.top__visual {
  position: absolute;
  top: 65px;
  right: -30px;
  height: 83%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
@media screen and (max-width: 767px) {
  .top__visual {
    position: static;
    height: 100%;
    width: auto;
    margin: 28px 0 24px;
    max-height: 320px;
    display: flex;
    justify-content: center;
  }
  .top__visual img {
    max-width: 349px;
  }
  .top__visual .pc-block {
    display: none;
  }
  .top__visual .tablet-block {
    display: none;
  }
  .top__visual .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__visual {
    height: 100%;
    width: auto;
    max-height: 320px;
  }
  .top__visual .pc-block {
    display: block;
  }
  .top__visual .tablet-block {
    display: block;
  }
  .top__visual .sp-block {
    display: none;
  }
}

.about {
  padding: 120px 0 0 6px;
  margin-bottom: 75px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 50px 0;
    margin-bottom: 12px;
  }
  .about .pc-block {
    display: none;
  }
  .about .tablet-block {
    display: none;
  }
  .about .sp-block {
    display: block;
  }
}
.about__container {
  width: 95%;
  max-width: 1054px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about__container {
    width: 100%;
  }
  .about__container .pc-block {
    display: none;
  }
  .about__container .tablet-block {
    display: none;
  }
  .about__container .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__container {
    width: 100%;
    padding: 0 16px;
  }
  .about__container .pc-block {
    display: block;
  }
  .about__container .tablet-block {
    display: block;
  }
  .about__container .sp-block {
    display: none;
  }
}
.about__label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #e65525;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-bottom: 1px solid #e65525;
  width: fit-content;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .about__label {
    font-size: 10px;
    line-height: 1.5;
  }
  .about__label .pc-block {
    display: none;
  }
  .about__label .tablet-block {
    display: none;
  }
  .about__label .sp-block {
    display: block;
  }
}
.about__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f0f0f;
  margin: 0 0 14px 0;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 28px;
    line-height: 1.3;
    padding: 8px 24px;
    margin: 0;
  }
  .about__title .pc-block {
    display: none;
  }
  .about__title .tablet-block {
    display: none;
  }
  .about__title .sp-block {
    display: block;
  }
}
.about__title-highlight {
  background: #e65525;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-underline-offset: 4px;
}
.about__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f0f0f;
  margin: 0 0 48px 0;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .about__subtitle .pc-block {
    display: none;
  }
  .about__subtitle .tablet-block {
    display: none;
  }
  .about__subtitle .sp-block {
    display: block;
  }
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 24px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 12px;
    justify-items: center;
  }
  .about__cards .pc-block {
    display: none;
  }
  .about__cards .tablet-block {
    display: none;
  }
  .about__cards .sp-block {
    display: block;
  }
}
.about__card {
  position: relative;
  background: linear-gradient(#f6f6f6, #f6f6f6) padding-box, linear-gradient(to right, #e65525, #92255a) border-box;
  border: 3px solid transparent;
  border-radius: 12px;
  padding: 54px 24px 32px;
  text-align: center;
  overflow: visible;
  transition: box-shadow 0.3s ease;
  height: 240px;
  box-shadow: 6px 6px 15px rgba(230, 230, 230, 0.9), -6px -6px 12px rgba(255, 255, 255, 0.9), 6px -6px 12px rgba(230, 230, 230, 0.2), -6px 6px 12px rgba(230, 230, 230, 0.2);
}
@media screen and (max-width: 767px) {
  .about__card {
    padding: 33px 16px;
    max-width: 165px;
    height: 160px;
  }
  .about__card .pc-block {
    display: none;
  }
  .about__card .tablet-block {
    display: none;
  }
  .about__card .sp-block {
    display: block;
  }
}
.about__card-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}
.about__card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .about__card-icon {
    width: 64px;
    height: 64px;
  }
  .about__card-icon img {
    width: 64px;
    height: 64px;
  }
  .about__card-icon .pc-block {
    display: none;
  }
  .about__card-icon .tablet-block {
    display: none;
  }
  .about__card-icon .sp-block {
    display: block;
  }
}
.about__card-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Roboto", sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: #e5e5e5;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .about__card-number {
    font-size: 120px;
  }
  .about__card-number .pc-block {
    display: none;
  }
  .about__card-number .tablet-block {
    display: none;
  }
  .about__card-number .sp-block {
    display: block;
  }
}
.about__card-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  height: 85%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f0f0f;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .about__card-text {
    font-size: 15px;
    height: 93%;
  }
  .about__card-text .pc-block {
    display: none;
  }
  .about__card-text .tablet-block {
    display: none;
  }
  .about__card-text .sp-block {
    display: block;
  }
}
.about__summary {
  position: relative;
  margin-top: 30px;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .about__summary {
    margin-top: 6px;
  }
  .about__summary .pc-block {
    display: none;
  }
  .about__summary .tablet-block {
    display: none;
  }
  .about__summary .sp-block {
    display: block;
  }
}
.about__summary-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__summary-arrow .triangle {
  width: 100px;
  height: 40px;
  background: linear-gradient(to right, #e65525, #92255a);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .about__summary-arrow .triangle {
    width: 80px;
    height: 32px;
  }
  .about__summary-arrow .triangle .pc-block {
    display: none;
  }
  .about__summary-arrow .triangle .tablet-block {
    display: none;
  }
  .about__summary-arrow .triangle .sp-block {
    display: block;
  }
}
.about__summary-box {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 8px;
  margin: 32px auto;
  padding: 32px 26px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__summary-box {
    padding: 25px 16px;
    margin: 16px auto;
  }
  .about__summary-box .pc-block {
    display: none;
  }
  .about__summary-box .tablet-block {
    display: none;
  }
  .about__summary-box .sp-block {
    display: block;
  }
}
.about__summary-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f0f0f;
  margin: 0 0 24px 0;
}
.about__summary-title .highlight {
  color: #e65525;
}
.about__summary-title .dotted-text {
  position: relative;
  display: inline-block;
}
.about__summary-title .dotted-text::before {
  content: "●";
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5px;
}
@media screen and (max-width: 767px) {
  .about__summary-title {
    font-size: 28px;
    letter-spacing: -2px;
  }
  .about__summary-title .pc-block {
    display: none;
  }
  .about__summary-title .tablet-block {
    display: none;
  }
  .about__summary-title .sp-block {
    display: block;
  }
}
.about__summary-feature {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .about__summary-feature {
    flex-direction: column;
    padding: 0 8px;
    gap: 23px;
  }
  .about__summary-feature .pc-block {
    display: none;
  }
  .about__summary-feature .tablet-block {
    display: none;
  }
  .about__summary-feature .sp-block {
    display: block;
  }
}
.about__summary-image {
  width: 24%;
  flex-shrink: 0;
}
.about__summary-image img {
  position: relative;
  left: 4px;
  top: 7px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .about__summary-image {
    max-width: 295px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about__summary-image img {
    left: 0;
    top: 0;
  }
  .about__summary-image .pc-block {
    display: none;
  }
  .about__summary-image .tablet-block {
    display: none;
  }
  .about__summary-image .sp-block {
    display: block;
  }
}
.about__summary-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__summary-text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #0f0f0f;
  margin: 0;
}
.about__summary-text p .highlight {
  font-size: 24px;
  line-height: 1.5;
  color: #e65525;
  font-weight: 700;
}
.about__summary-text p.about__summary-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #0f0f0f;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about__summary-text p.about__summary-desc {
    font-size: 20px;
    line-height: 1.6;
  }
  .about__summary-text p.about__summary-desc .pc-block {
    display: none;
  }
  .about__summary-text p.about__summary-desc .tablet-block {
    display: none;
  }
  .about__summary-text p.about__summary-desc .sp-block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .about__summary-text {
    gap: 28px;
  }
  .about__summary-text p .highlight {
    font-size: 20px;
  }
  .about__summary-text .pc-block {
    display: none;
  }
  .about__summary-text .tablet-block {
    display: none;
  }
  .about__summary-text .sp-block {
    display: block;
  }
}

.benefits {
  padding: 140px 0 90px;
  background: linear-gradient(to right, #e65525, #92255a);
  position: relative;
  clip-path: polygon(0 0, 5% 0.4%, 10% 0.8%, 15% 1.1%, 20% 1.4%, 25% 1.6%, 30% 1.76%, 35% 1.86%, 40% 1.96%, 45% 2%, 50% 2%, 55% 2%, 60% 1.96%, 65% 1.86%, 70% 1.76%, 75% 1.6%, 80% 1.4%, 85% 1.1%, 90% 0.8%, 95% 0.4%, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .benefits {
    padding: 50px 0 56px;
    clip-path: polygon(0 0, 5% 0.04%, 10% 0.08%, 15% 0.11%, 20% 0.14%, 25% 0.16%, 30% 0.176%, 35% 0.186%, 40% 0.196%, 45% 0.2%, 50% 0.2%, 55% 0.2%, 60% 0.196%, 65% 0.186%, 70% 0.176%, 75% 0.16%, 80% 0.14%, 85% 0.11%, 90% 0.08%, 95% 0.04%, 100% 0, 100% 100%, 0 100%);
  }
  .benefits .pc-block {
    display: none;
  }
  .benefits .tablet-block {
    display: none;
  }
  .benefits .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .benefits {
    padding: 50px 0 56px;
    clip-path: polygon(0 0, 5% 0.1%, 10% 0.2%, 15% 0.275%, 20% 0.35%, 25% 0.4%, 30% 0.44%, 35% 0.465%, 40% 0.49%, 45% 0.5%, 50% 0.5%, 55% 0.5%, 60% 0.49%, 65% 0.465%, 70% 0.44%, 75% 0.4%, 80% 0.35%, 85% 0.275%, 90% 0.2%, 95% 0.1%, 100% 0, 100% 100%, 0 100%);
  }
  .benefits .pc-block {
    display: block;
  }
  .benefits .tablet-block {
    display: block;
  }
  .benefits .sp-block {
    display: none;
  }
}
.benefits-triangle {
  margin: -2px auto 0;
  width: 100px;
  height: 40px;
  background: linear-gradient(to right, #e65525, #92255a);
  background-size: 100vw 100%;
  background-position: center top;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .benefits-triangle {
    width: 80px;
    height: 32px;
  }
  .benefits-triangle .pc-block {
    display: none;
  }
  .benefits-triangle .tablet-block {
    display: none;
  }
  .benefits-triangle .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .benefits-triangle {
    width: 90px;
    height: 36px;
  }
  .benefits-triangle .pc-block {
    display: block;
  }
  .benefits-triangle .tablet-block {
    display: block;
  }
  .benefits-triangle .sp-block {
    display: none;
  }
}
.benefits__container {
  width: 95%;
  max-width: 1054px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .benefits__container {
    width: 100%;
    padding: 0 16px;
  }
  .benefits__container .pc-block {
    display: none;
  }
  .benefits__container .tablet-block {
    display: none;
  }
  .benefits__container .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .benefits__container {
    width: 100%;
    padding: 0 32px;
  }
  .benefits__container .pc-block {
    display: block;
  }
  .benefits__container .tablet-block {
    display: block;
  }
  .benefits__container .sp-block {
    display: none;
  }
}
.benefits__header {
  text-align: center;
  margin: 1px 0 28px;
}
@media screen and (max-width: 767px) {
  .benefits__header {
    margin: 8px 0;
  }
  .benefits__header .pc-block {
    display: none;
  }
  .benefits__header .tablet-block {
    display: none;
  }
  .benefits__header .sp-block {
    display: block;
  }
}
.benefits__label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffcc00;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffcc00;
  padding-bottom: 4px;
  letter-spacing: 1px;
  width: fit-content;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .benefits__label {
    font-size: 10px;
    padding-bottom: 0;
  }
  .benefits__label .pc-block {
    display: none;
  }
  .benefits__label .tablet-block {
    display: none;
  }
  .benefits__label .sp-block {
    display: block;
  }
}
.benefits__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}
.benefits__title .highlight {
  color: #ffcc00;
}
@media screen and (max-width: 767px) {
  .benefits__title {
    font-size: 28px;
    line-height: 1.3;
    padding: 8px 0;
    margin: 0;
  }
  .benefits__title .pc-block {
    display: none;
  }
  .benefits__title .tablet-block {
    display: none;
  }
  .benefits__title .sp-block {
    display: block;
  }
}
.benefits__intro {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 10px 86px 18px;
}
@media screen and (max-width: 767px) {
  .benefits__intro {
    margin: 0 0px 54px 0px;
    flex-direction: column;
    gap: 12px;
  }
  .benefits__intro .pc-block {
    display: none;
  }
  .benefits__intro .tablet-block {
    display: none;
  }
  .benefits__intro .sp-block {
    display: block;
  }
}
.benefits__intro-image {
  flex-shrink: 0;
}
.benefits__intro-image img {
  width: 252px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .benefits__intro-image {
    padding-right: 4px;
  }
  .benefits__intro-image .pc-block {
    display: none;
  }
  .benefits__intro-image .tablet-block {
    display: none;
  }
  .benefits__intro-image .sp-block {
    display: block;
  }
}
.benefits__intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .benefits__intro-content {
    gap: 18px;
  }
  .benefits__intro-content .pc-block {
    display: none;
  }
  .benefits__intro-content .tablet-block {
    display: none;
  }
  .benefits__intro-content .sp-block {
    display: block;
  }
}
.benefits__intro-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .benefits__intro-lead {
    font-size: 20px;
  }
  .benefits__intro-lead .pc-block {
    display: none;
  }
  .benefits__intro-lead .tablet-block {
    display: none;
  }
  .benefits__intro-lead .sp-block {
    display: block;
  }
}
.benefits__intro-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .benefits__intro-desc .pc-block {
    display: none;
  }
  .benefits__intro-desc .tablet-block {
    display: none;
  }
  .benefits__intro-desc .sp-block {
    display: block;
  }
}
.benefits__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin: 0 0 32px 10px;
}
.benefits__subtitle .highlight {
  color: #ffcc00;
}
.benefits__subtitle .zoom {
  font-size: 54px;
}
@media screen and (max-width: 767px) {
  .benefits__subtitle {
    font-size: 26px;
    padding-top: 12px;
    line-height: 1.4;
  }
  .benefits__subtitle .highlight {
    font-size: 28px;
  }
  .benefits__subtitle .zoom {
    font-size: 34px;
  }
  .benefits__subtitle .pc-block {
    display: none;
  }
  .benefits__subtitle .tablet-block {
    display: none;
  }
  .benefits__subtitle .sp-block {
    display: block;
  }
}
.benefits__block {
  display: flex;
  gap: 48px;
  margin-bottom: 62px;
  padding: 2px 18px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .benefits__block {
    flex-direction: column;
    margin-bottom: 50px;
    padding: 0;
    gap: 2px;
  }
  .benefits__block .pc-block {
    display: none;
  }
  .benefits__block .tablet-block {
    display: none;
  }
  .benefits__block .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .benefits__block {
    flex-direction: column;
    margin-bottom: 50px;
    padding: 0;
    gap: 2px;
  }
  .benefits__block .pc-block {
    display: block;
  }
  .benefits__block .tablet-block {
    display: block;
  }
  .benefits__block .sp-block {
    display: none;
  }
}
.benefits__block:last-child {
  margin-bottom: 0;
}
.benefits__block-side {
  width: 144px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .benefits__block-side {
    order: -1;
    width: 100%;
    padding: 16px 24px;
    justify-content: space-between;
  }
  .benefits__block-side .pc-block {
    display: none;
  }
  .benefits__block-side .tablet-block {
    display: none;
  }
  .benefits__block-side .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .benefits__block-side {
    order: -1;
    width: 100%;
    padding: 16px 24px;
    justify-content: space-between;
  }
  .benefits__block-side .pc-block {
    display: block;
  }
  .benefits__block-side .tablet-block {
    display: block;
  }
  .benefits__block-side .sp-block {
    display: none;
  }
}
.benefits__block-meta {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .benefits__block-meta {
    margin-bottom: 0;
  }
  .benefits__block-meta .pc-block {
    display: none;
  }
  .benefits__block-meta .tablet-block {
    display: none;
  }
  .benefits__block-meta .sp-block {
    display: block;
  }
}
.benefits__block-meta-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  position: relative;
}
.benefits__block-meta-label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .benefits__block-meta-label::after {
    bottom: -5px;
    height: 3px;
  }
  .benefits__block-meta-label .pc-block {
    display: none;
  }
  .benefits__block-meta-label .tablet-block {
    display: none;
  }
  .benefits__block-meta-label .sp-block {
    display: block;
  }
}
.benefits__block-number {
  font-family: "Roboto", sans-serif;
  font-size: 124px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.benefits__block-vertical {
  font-family: "Roboto", sans-serif;
  font-size: 150px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1.5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .benefits__block-vertical {
    font-size: 72px;
    writing-mode: horizontal-tb;
    position: absolute;
    top: 80px;
    padding-left: 0;
  }
  .benefits__block-vertical .pc-block {
    display: none;
  }
  .benefits__block-vertical .tablet-block {
    display: none;
  }
  .benefits__block-vertical .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .benefits__block-vertical {
    font-size: 96px;
    writing-mode: horizontal-tb;
    position: absolute;
    top: 72px;
    padding-left: 0;
    letter-spacing: 10px;
  }
  .benefits__block-vertical .pc-block {
    display: block;
  }
  .benefits__block-vertical .tablet-block {
    display: block;
  }
  .benefits__block-vertical .sp-block {
    display: none;
  }
}
.benefits__block-main {
  flex: 1;
  background: #fff;
  padding: 48px;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .benefits__block-main {
    padding: 24px;
  }
  .benefits__block-main .pc-block {
    display: none;
  }
  .benefits__block-main .tablet-block {
    display: none;
  }
  .benefits__block-main .sp-block {
    display: block;
  }
}
.benefits__block-header {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 32px;
  margin-bottom: 32px;
}
.benefits__block-header--spacing {
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .benefits__block-header {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
  }
  .benefits__block-header .pc-block {
    display: none;
  }
  .benefits__block-header .tablet-block {
    display: none;
  }
  .benefits__block-header .sp-block {
    display: block;
  }
}
.benefits__block-header img {
  width: 100%;
  height: auto;
}
.benefits__block-headerText {
  width: calc((100% - 32px) * 0.75);
  padding-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .benefits__block-headerText {
    width: 100%;
    padding-bottom: 0;
  }
  .benefits__block-headerText .pc-block {
    display: none;
  }
  .benefits__block-headerText .tablet-block {
    display: none;
  }
  .benefits__block-headerText .sp-block {
    display: block;
  }
}
.benefits__block-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #e65525;
  padding-bottom: 14px;
  margin: 0 0 24px 0;
  border-bottom: 2px solid #e65525;
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .benefits__block-title {
    font-size: 26px;
    padding-bottom: 7px;
    margin: 0 0 16px 0;
  }
  .benefits__block-title .pc-block {
    display: none;
  }
  .benefits__block-title .tablet-block {
    display: none;
  }
  .benefits__block-title .sp-block {
    display: block;
  }
}
.benefits__block-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #0f0f0f;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .benefits__block-lead {
    line-height: 1.55;
  }
  .benefits__block-lead .pc-block {
    display: none;
  }
  .benefits__block-lead .tablet-block {
    display: none;
  }
  .benefits__block-lead .sp-block {
    display: block;
  }
}
.benefits__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #2c3e50;
  margin: 0 0 24px 0;
}
.benefits__card-title--spacing {
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .benefits__card-title {
    font-size: 24px;
  }
  .benefits__card-title .pc-block {
    display: none;
  }
  .benefits__card-title .tablet-block {
    display: none;
  }
  .benefits__card-title .sp-block {
    display: block;
  }
}
.benefits__card-item {
  background: #f6f6f6;
  border-radius: 8px;
  margin-bottom: 35px;
  padding: 15px;
}
.benefits__card-item:last-child {
  margin-bottom: 0;
}
.benefits__card-item:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .benefits__card-item {
    padding: 16px;
    margin-bottom: 16px;
  }
  .benefits__card-item--spacing {
    margin-bottom: 24px;
  }
  .benefits__card-item .pc-block {
    display: none;
  }
  .benefits__card-item .tablet-block {
    display: none;
  }
  .benefits__card-item .sp-block {
    display: block;
  }
}
.benefits__card-item-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e65525;
}
@media screen and (max-width: 767px) {
  .benefits__card-item-header {
    margin-bottom: 8px;
  }
  .benefits__card-item-header .pc-block {
    display: none;
  }
  .benefits__card-item-header .tablet-block {
    display: none;
  }
  .benefits__card-item-header .sp-block {
    display: block;
  }
}
.benefits__card-item-number {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e65525;
  line-height: 1.3;
}
.benefits__card-item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f0f0f;
  margin: 0;
}
.benefits__card-item-title .highlight {
  color: #e65525;
}
@media screen and (max-width: 767px) {
  .benefits__card-item-title {
    font-size: 18px;
    line-height: 1.3;
  }
  .benefits__card-item-title .pc-block {
    display: none;
  }
  .benefits__card-item-title .tablet-block {
    display: none;
  }
  .benefits__card-item-title .sp-block {
    display: block;
  }
}
.benefits__card-item-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0f0f0f;
  margin: 0;
}

.page-wrapper {
  overflow: visible;
}

.pricing {
  padding: 80px 0 90px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .pricing {
    padding: 28px 0 62px;
  }
  .pricing .pc-block {
    display: none;
  }
  .pricing .tablet-block {
    display: none;
  }
  .pricing .sp-block {
    display: block;
  }
}
.pricing__container {
  width: 95%;
  max-width: 1054px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .pricing__container {
    width: 100%;
  }
  .pricing__container .pc-block {
    display: none;
  }
  .pricing__container .tablet-block {
    display: none;
  }
  .pricing__container .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pricing__container {
    width: 100%;
    padding: 0 32px;
  }
  .pricing__container .pc-block {
    display: block;
  }
  .pricing__container .tablet-block {
    display: block;
  }
  .pricing__container .sp-block {
    display: none;
  }
}
.pricing__header {
  text-align: center;
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .pricing__header {
    margin-bottom: 32px;
  }
  .pricing__header .pc-block {
    display: none;
  }
  .pricing__header .tablet-block {
    display: none;
  }
  .pricing__header .sp-block {
    display: block;
  }
}
.pricing__label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #e65525;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e65525;
  width: fit-content;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .pricing__label {
    font-size: 10px;
    padding-bottom: 0;
  }
  .pricing__label .pc-block {
    display: none;
  }
  .pricing__label .tablet-block {
    display: none;
  }
  .pricing__label .sp-block {
    display: block;
  }
}
.pricing__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f0f0f;
  margin: 0 0 32px 0;
  letter-spacing: 1px;
}
.pricing__title .highlight {
  color: #e65525;
}
@media screen and (max-width: 767px) {
  .pricing__title {
    font-size: 28px;
  }
  .pricing__title .pc-block {
    display: none;
  }
  .pricing__title .tablet-block {
    display: none;
  }
  .pricing__title .sp-block {
    display: block;
  }
}
.pricing__decs {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #0f0f0f;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .pricing__decs {
    text-align: left;
    line-height: 1.55;
  }
  .pricing__decs .pc-block {
    display: none;
  }
  .pricing__decs .tablet-block {
    display: none;
  }
  .pricing__decs .sp-block {
    display: block;
  }
}
.pricing__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(76, 59, 45, 0.6);
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .pricing__subtitle {
    font-size: 20px;
    padding: 0px 16px;
  }
  .pricing__subtitle .pc-block {
    display: none;
  }
  .pricing__subtitle .tablet-block {
    display: none;
  }
  .pricing__subtitle .sp-block {
    display: block;
  }
}
.pricing__risk-free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1054px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pricing__risk-free {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
  }
  .pricing__risk-free .pc-block {
    display: none;
  }
  .pricing__risk-free .tablet-block {
    display: none;
  }
  .pricing__risk-free .sp-block {
    display: block;
  }
}
.pricing__risk-free-image {
  flex-shrink: 0;
  height: 240px;
}
.pricing__risk-free-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .pricing__risk-free-image img {
    width: auto;
  }
  .pricing__risk-free-image .pc-block {
    display: none;
  }
  .pricing__risk-free-image .tablet-block {
    display: none;
  }
  .pricing__risk-free-image .sp-block {
    display: block;
  }
}
.pricing__risk-free-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .pricing__risk-free-content {
    gap: 24px;
  }
  .pricing__risk-free-content .pc-block {
    display: none;
  }
  .pricing__risk-free-content .tablet-block {
    display: none;
  }
  .pricing__risk-free-content .sp-block {
    display: block;
  }
}
.pricing__risk-free-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f0f0f;
  padding: 4px;
}
@media screen and (max-width: 767px) {
  .pricing__risk-free-title {
    font-size: 26px;
    padding: 4px 20px;
  }
  .pricing__risk-free-title .pc-block {
    display: none;
  }
  .pricing__risk-free-title .tablet-block {
    display: none;
  }
  .pricing__risk-free-title .sp-block {
    display: block;
  }
}
.pricing__risk-free-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #0f0f0f;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 767px) {
  .pricing__risk-free-desc {
    text-align: left;
    top: -11px;
  }
  .pricing__risk-free-desc .pc-block {
    display: none;
  }
  .pricing__risk-free-desc .tablet-block {
    display: none;
  }
  .pricing__risk-free-desc .sp-block {
    display: block;
  }
}
.pricing__cta-btn {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: linear-gradient(to right, #e65525, #92255a);
  color: #fff;
  border: none;
  border-radius: 32px;
  margin: 0 auto;
  padding: 20px 32px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.pricing__cta-btn img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .pricing__cta-btn {
    padding: 16px 24px;
    line-height: 1;
  }
  .pricing__cta-btn .pc-block {
    display: none;
  }
  .pricing__cta-btn .tablet-block {
    display: none;
  }
  .pricing__cta-btn .sp-block {
    display: block;
  }
}
.pricing__comparison {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 767px) {
  .pricing__comparison {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0 0 30px;
  }
  .pricing__comparison .pc-block {
    display: none;
  }
  .pricing__comparison .tablet-block {
    display: none;
  }
  .pricing__comparison .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pricing__comparison {
    flex-wrap: wrap;
  }
  .pricing__comparison .pc-block {
    display: block;
  }
  .pricing__comparison .tablet-block {
    display: block;
  }
  .pricing__comparison .sp-block {
    display: none;
  }
}
.pricing__compare-card {
  flex: 1;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e65525;
  box-shadow: 6px 6px 15px rgba(230, 230, 230, 0.9), -6px -6px 12px rgba(255, 255, 255, 0.9), 6px -6px 12px rgba(230, 230, 230, 0.2), -6px 6px 12px rgba(230, 230, 230, 0.2), -1px -1px 2px rgba(230, 230, 230, 0.5) inset, 1px 1px 2px rgba(255, 255, 255, 0.3) inset;
}
.pricing__compare-card:not(.pricing__compare-card--tsunagu) {
  position: relative;
  top: 10px;
}
.pricing__compare-card--tsunagu {
  border: 3px solid #e65525;
  position: relative;
  transform: translateY(10px);
  z-index: 10;
  box-shadow: 6px 6px 15px rgba(230, 230, 230, 0.9), -6px -6px 12px rgba(255, 255, 255, 0.9), 6px -6px 12px rgba(230, 230, 230, 0.2), -6px 6px 12px rgba(230, 230, 230, 0.2), -1px -1px 2px rgba(230, 230, 230, 0.5) inset, 1px 1px 2px rgba(255, 255, 255, 0.3) inset;
}
@media screen and (max-width: 767px) {
  .pricing__compare-card--tsunagu {
    transform: translateY(0);
    order: -1;
  }
  .pricing__compare-card--tsunagu .pc-block {
    display: none;
  }
  .pricing__compare-card--tsunagu .tablet-block {
    display: none;
  }
  .pricing__compare-card--tsunagu .sp-block {
    display: block;
  }
}
.pricing__compare-card--tsunagu-header {
  background: #e65525;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  padding-bottom: 10px;
}
.pricing__compare-card--tsunagu__compare-value {
  color: #0f0f0f;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pricing__compare-card {
    width: 100%;
  }
  .pricing__compare-card:not(.pricing__compare-card--tsunagu) {
    position: relative;
    top: 0;
  }
  .pricing__compare-card .pc-block {
    display: none;
  }
  .pricing__compare-card .tablet-block {
    display: none;
  }
  .pricing__compare-card .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pricing__compare-card {
    flex: 0 0 calc(50% - 12px);
    max-width: none;
  }
  .pricing__compare-card .pc-block {
    display: block;
  }
  .pricing__compare-card .tablet-block {
    display: block;
  }
  .pricing__compare-card .sp-block {
    display: none;
  }
}
.pricing__compare-card-header {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.pricing__compare-card-header:not(.pricing__compare-card-header--tsunagu)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #e65525;
  z-index: 10;
}
.pricing__compare-card-header--tsunagu {
  height: 66px;
  background: #e65525;
  color: #fff;
  font-size: 32px;
  padding: 5px;
  top: -1px;
  left: -1px;
  width: 101%;
  border-radius: 10px 10px 0 0;
}
.pricing__compare-card-header:not(.pricing__compare-card-header--tsunagu) {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .pricing__compare-card-header--tsunagu {
    font-size: 26px;
    padding: 0;
    top: -1px;
    left: -1px;
    width: 101%;
    border-radius: 10px 10px 0 0;
  }
  .pricing__compare-card-header:not(.pricing__compare-card-header--tsunagu) {
    padding-top: 16px;
    font-size: 20px;
    height: 66px;
  }
  .pricing__compare-card-header .pc-block {
    display: none;
  }
  .pricing__compare-card-header .tablet-block {
    display: none;
  }
  .pricing__compare-card-header .sp-block {
    display: block;
  }
}
.pricing__compare-card-body {
  padding: 22px 20px;
}
.pricing__compare-card-body:not(.pricing__compare-card-body--tsunagu) {
  padding: 0 15px 32px;
}
@media screen and (max-width: 767px) {
  .pricing__compare-card-body {
    padding: 8px 14px 20px;
  }
  .pricing__compare-card-body:not(.pricing__compare-card-body--tsunagu) {
    padding: 0 15px 28px;
  }
  .pricing__compare-card-body .pc-block {
    display: none;
  }
  .pricing__compare-card-body .tablet-block {
    display: none;
  }
  .pricing__compare-card-body .sp-block {
    display: block;
  }
}
.pricing__compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 18px;
  border-bottom: 1px solid #cccccc;
}
.pricing__compare-row:last-child {
  border-bottom: none;
}
.pricing__compare-row:not(.pricing__compare-row--tsunagu) {
  padding: 20px 0 18px;
}
@media screen and (max-width: 767px) {
  .pricing__compare-row {
    padding: 14px 0 4px;
  }
  .pricing__compare-row:not(.pricing__compare-row--tsunagu) {
    padding: 16px 0 3px;
  }
  .pricing__compare-row .pc-block {
    display: none;
  }
  .pricing__compare-row .tablet-block {
    display: none;
  }
  .pricing__compare-row .sp-block {
    display: block;
  }
}
.pricing__compare-item {
  display: flex;
  align-items: center;
}
.pricing__compare-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.pricing__compare-label {
  font-size: 12px;
  color: rgba(76, 59, 45, 0.6);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .pricing__compare-label {
    font-size: 10px;
  }
  .pricing__compare-label .pc-block {
    display: none;
  }
  .pricing__compare-label .tablet-block {
    display: none;
  }
  .pricing__compare-label .sp-block {
    display: block;
  }
}
.pricing__compare-value {
  text-align: right;
  font-weight: 400;
  line-height: 1.4;
  color: #0f0f0f;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.pricing__compare-value--bold {
  font-weight: 700;
}
.pricing__compare-value--size {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .pricing__compare-value--bold {
    letter-spacing: -1px;
  }
  .pricing__compare-value .pc-block {
    display: none;
  }
  .pricing__compare-value .tablet-block {
    display: none;
  }
  .pricing__compare-value .sp-block {
    display: block;
  }
}
.pricing__compare-card-vector {
  position: absolute;
  top: -23px;
  left: -18px;
  z-index: 100;
  width: 60px;
  height: 30px;
}
.pricing__compare-card-vector img {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}
.pricing__compare-card-vector img:nth-child(1) {
  top: 18px;
  left: -7px;
  width: 14px;
  height: 10px;
}
.pricing__compare-card-vector img:nth-child(2) {
  top: 2px;
  left: -5px;
  width: 20px;
  height: 16px;
}
.pricing__compare-card-vector img:nth-child(3) {
  top: -2px;
  left: 12px;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 767px) {
  .pricing__compare-card-vector img:nth-child(1) {
    top: 16px;
    left: 4px;
    width: 12px;
    height: 11px;
  }
  .pricing__compare-card-vector img:nth-child(2) {
    top: 7px;
    left: 5px;
    width: 15px;
    height: 13px;
  }
  .pricing__compare-card-vector img:nth-child(3) {
    top: 3px;
    left: 13px;
    width: 16px;
    height: 14px;
  }
  .pricing__compare-card-vector .pc-block {
    display: none;
  }
  .pricing__compare-card-vector .tablet-block {
    display: none;
  }
  .pricing__compare-card-vector .sp-block {
    display: block;
  }
}
.pricing__compare-card-header-star {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.pricing__compare-card-header-star img {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}
.pricing__compare-card-header-star img:nth-child(1) {
  top: 15%;
  left: 19%;
}
.pricing__compare-card-header-star img:nth-child(2) {
  top: 35%;
  left: 23%;
}
.pricing__compare-card-header-star img:nth-child(3) {
  top: 30%;
  left: 75%;
}
.pricing__compare-card-header-star img:nth-child(4) {
  top: 22%;
  left: 73%;
}
.pricing__compare-card-header-star img:nth-child(1),
.pricing__compare-card-header-star img:nth-child(3) {
  width: 12px;
  height: 12px;
}
.pricing__compare-card-header-star img:nth-child(2),
.pricing__compare-card-header-star img:nth-child(4) {
  width: 6px;
  height: 6px;
}

.company {
  padding: 84px 0 127px;
  position: relative;
  overflow: hidden;
}
.company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/company_background.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.company::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2c3e50;
  opacity: 0.8;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 26px 0 35px;
  }
  .company .pc-block {
    display: none;
  }
  .company .tablet-block {
    display: none;
  }
  .company .sp-block {
    display: block;
  }
}
.company__container {
  width: 95%;
  max-width: 1054px;
  position: relative;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .company__container {
    width: 100%;
  }
  .company__container .pc-block {
    display: none;
  }
  .company__container .tablet-block {
    display: none;
  }
  .company__container .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__container {
    width: 100%;
    padding: 0 32px;
  }
  .company__container .pc-block {
    display: block;
  }
  .company__container .tablet-block {
    display: block;
  }
  .company__container .sp-block {
    display: none;
  }
}
.company__bg-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto", sans-serif;
  font-size: 310px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.5;
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .company__bg-text {
    font-size: 80px;
    bottom: 0;
  }
  .company__bg-text .pc-block {
    display: none;
  }
  .company__bg-text .tablet-block {
    display: none;
  }
  .company__bg-text .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__bg-text {
    font-size: 200px;
    bottom: 0;
  }
  .company__bg-text .pc-block {
    display: block;
  }
  .company__bg-text .tablet-block {
    display: block;
  }
  .company__bg-text .sp-block {
    display: none;
  }
}
.company__header {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .company__header {
    margin-bottom: 30px;
    padding: 0 28px;
  }
  .company__header .pc-block {
    display: none;
  }
  .company__header .tablet-block {
    display: none;
  }
  .company__header .sp-block {
    display: block;
  }
}
.company__label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  width: fit-content;
  display: inline-block;
  line-height: 1.5;
  padding-bottom: 3px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .company__label {
    font-size: 10px;
    padding-bottom: 0;
  }
  .company__label .pc-block {
    display: none;
  }
  .company__label .tablet-block {
    display: none;
  }
  .company__label .sp-block {
    display: block;
  }
}
.company__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 32px 0;
}
.company__title .highlight {
  color: #e65525;
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: 28px;
  }
  .company__title .pc-block {
    display: none;
  }
  .company__title .tablet-block {
    display: none;
  }
  .company__title .sp-block {
    display: block;
  }
}
.company__info-box {
  width: 95%;
  background: #fff;
  border-radius: 12px;
  padding: 24px 48px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .company__info-box {
    width: 92%;
    padding: 16px 24px;
  }
  .company__info-box .pc-block {
    display: none;
  }
  .company__info-box .tablet-block {
    display: none;
  }
  .company__info-box .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__info-box {
    width: 92%;
    padding: 16px 24px;
  }
  .company__info-box .pc-block {
    display: block;
  }
  .company__info-box .tablet-block {
    display: block;
  }
  .company__info-box .sp-block {
    display: none;
  }
}
.company__logo {
  display: block;
  text-align: center;
}
.company__logo img {
  width: auto;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .company__logo img {
    height: 39px;
  }
  .company__logo .pc-block {
    display: none;
  }
  .company__logo .tablet-block {
    display: none;
  }
  .company__logo .sp-block {
    display: block;
  }
}
.company__table {
  width: 100%;
  border-collapse: collapse;
}
.company__table tr {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
.company__table tr:last-child {
  border-bottom: none;
}
.company__table th {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 22%;
  text-align: left;
  padding: 19px 0;
  color: #0f0f0f;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1.5;
  position: relative;
}
.company__table th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #ccc;
}
@media screen and (max-width: 767px) {
  .company__table th {
    width: 42%;
    padding: 11px 5px 5px 0;
  }
  .company__table th .pc-block {
    display: none;
  }
  .company__table th .tablet-block {
    display: none;
  }
  .company__table th .sp-block {
    display: block;
  }
}
.company__table td {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 18px 0 16px 25px;
  color: #0f0f0f;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .company__table td {
    padding: 11px 0 5px 16px;
    line-height: 1.55;
  }
  .company__table td .pc-block {
    display: none;
  }
  .company__table td .tablet-block {
    display: none;
  }
  .company__table td .sp-block {
    display: block;
  }
}

.contact {
  padding: 84px 0 63px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 26px 0 114px;
  }
  .contact .pc-block {
    display: none;
  }
  .contact .tablet-block {
    display: none;
  }
  .contact .sp-block {
    display: block;
  }
}
.contact .error {
  color: #ff3333;
  margin-top: 4px;
  margin-bottom: 24px;
}
.contact__container {
  width: 95%;
  max-width: 1054px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .contact__container {
    width: 100%;
  }
  .contact__container .pc-block {
    display: none;
  }
  .contact__container .tablet-block {
    display: none;
  }
  .contact__container .sp-block {
    display: block;
  }
}
.contact__header {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .contact__header {
    margin-bottom: 30px;
  }
  .contact__header .pc-block {
    display: none;
  }
  .contact__header .tablet-block {
    display: none;
  }
  .contact__header .sp-block {
    display: block;
  }
}
.contact__label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #e65525;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 1px solid #e65525;
  width: fit-content;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__label {
    font-size: 10px;
    padding-bottom: 0;
  }
  .contact__label .pc-block {
    display: none;
  }
  .contact__label .tablet-block {
    display: none;
  }
  .contact__label .sp-block {
    display: block;
  }
}
.contact__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f0f0f;
  margin: 0 0 32px 0;
}
.contact__title .highlight {
  color: #e65525;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 28px;
  }
  .contact__title .pc-block {
    display: none;
  }
  .contact__title .tablet-block {
    display: none;
  }
  .contact__title .sp-block {
    display: block;
  }
}
.contact__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-top: 16px;
  color: #0f0f0f;
}
.contact__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  color: #ff3333;
  font-weight: 500;
  margin: 0 auto 16px;
  border-bottom: 1px solid #ff3333;
  width: fit-content;
  padding: 4px 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__note {
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
  .contact__note .pc-block {
    display: none;
  }
  .contact__note .tablet-block {
    display: none;
  }
  .contact__note .sp-block {
    display: block;
  }
}
.contact__form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  .contact__form-wrapper {
    padding: 0 16px;
  }
  .contact__form-wrapper .pc-block {
    display: none;
  }
  .contact__form-wrapper .tablet-block {
    display: none;
  }
  .contact__form-wrapper .sp-block {
    display: block;
  }
}
.contact__form-group {
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .contact__form-group {
    margin-bottom: 9px;
  }
  .contact__form-group .pc-block {
    display: none;
  }
  .contact__form-group .tablet-block {
    display: none;
  }
  .contact__form-group .sp-block {
    display: block;
  }
}
.contact__form-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0f0f0f;
  margin-bottom: 8px;
}
.contact__form-label .required {
  color: #ff3333;
  margin-left: 4px;
  font-size: 12px;
}
.contact__form-input, .contact__form-textarea {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  padding: 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
  color: #0f0f0f;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
.contact__form-input::placeholder, .contact__form-textarea::placeholder {
  color: #cccccc;
}
@media screen and (max-width: 767px) {
  .contact__form-input, .contact__form-textarea {
    padding: 8px;
  }
  .contact__form-input .pc-block, .contact__form-textarea .pc-block {
    display: none;
  }
  .contact__form-input .tablet-block, .contact__form-textarea .tablet-block {
    display: none;
  }
  .contact__form-input .sp-block, .contact__form-textarea .sp-block {
    display: block;
  }
}
.contact__form-textarea {
  min-height: 160px;
  resize: none;
}
.contact__privacy {
  text-align: center;
  margin: 43px 0 24px;
}
.contact__privacy-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
  gap: 12px;
  cursor: pointer;
  margin: 45px 0 24px;
}
.contact__privacy-label .error {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__privacy-label {
    margin: 20px 0 16px;
    gap: 4px;
  }
  .contact__privacy-label .pc-block {
    display: none;
  }
  .contact__privacy-label .tablet-block {
    display: none;
  }
  .contact__privacy-label .sp-block {
    display: block;
  }
}
.contact__privacy-checkbox {
  position: absolute;
  opacity: 0;
}
.contact__privacy-box {
  width: 24px;
  height: 24px;
  border: 1.5px solid #000;
  border-radius: 2px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}
.contact__privacy-checkbox:checked + .contact__privacy-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0px;
  width: 9px;
  height: 18px;
  border-right: 2px solid #e65525;
  border-bottom: 2px solid #e65525;
  transform: rotate(45deg);
}
.contact__privacy-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #0f0f0f;
  text-decoration: none;
  border-bottom: 1px solid #0f0f0f;
}
.contact__submit {
  text-align: center;
}
.contact__submit-btn {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: linear-gradient(to right, #e65525, #92255a);
  color: #fff;
  border: none;
  border-radius: 32px;
  line-height: 1;
  padding: 24px 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact__submit-btn img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .contact__submit-btn {
    padding: 16px 24px;
    justify-content: center;
  }
  .contact__submit-btn .pc-block {
    display: none;
  }
  .contact__submit-btn .tablet-block {
    display: none;
  }
  .contact__submit-btn .sp-block {
    display: block;
  }
}
.contact__back-to-top_wrapper {
  width: 75%;
  max-width: 1400px;
  min-width: 1056px;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  bottom: 80px;
  z-index: 100;
}
@media screen and (max-width: 1110px) {
  .contact__back-to-top_wrapper {
    width: 95%;
    min-width: unset;
  }
}
.contact__back-to-top {
  margin-left: auto;
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, #e65525, #92255a);
  padding: 8px 8px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.contact__back-to-top img {
  width: 12px;
  height: 8px;
}
@media screen and (max-width: 767px) {
  .contact__back-to-top {
    right: 16px;
  }
  .contact__back-to-top .pc-block {
    display: none;
  }
  .contact__back-to-top .tablet-block {
    display: none;
  }
  .contact__back-to-top .sp-block {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__back-to-top {
    right: 32px;
  }
  .contact__back-to-top .pc-block {
    display: block;
  }
  .contact__back-to-top .tablet-block {
    display: block;
  }
  .contact__back-to-top .sp-block {
    display: none;
  }
}

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