/* setting */
:root {
  --blue: #0072b7;
  --blue2: #f0f8ff;
  --red: #f96060;
  --black: #393939;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--black);
  -webkit-text-size-adjust: 100% !important;
}

figure {
  margin: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}


@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.pc-only,
.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .pc-only {
    display: inherit;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}
.maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.en {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.col-blue {
  color: var(--blue);
}
.col-red {
  color: var(--red);
}
.col-blue2 {
  color: var(--blue2);
}

.bg-blue {
  background: var(--blue);
}
.bg-red {
  background: var(--red);
}
.bg-blue2 {
  background: var(--blue2);
}
.bg-blue3 {
  background: rgb(0, 86, 138);
}
.bg-gray {
  background: #cecece;
}
.bg-pink {
  background: #ffefef;
}
.bg-gray2 {
  background: rgb(242, 242, 242);
}

.bold {
  font-weight: 700;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  line-height: 1.6;
}
@media (max-width: 520px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-active {
  position: fixed;
}

.inner {
  width: min(100%, 1000px);
  margin: 0 auto;
}
@media (max-width: 1020px) {
  .inner {
    padding: 0 20px;
  }
}

.inner2 {
  width: min(100%, 1170px);
  margin: 0 auto;
}
@media (max-width: 1170px) {
  .inner2 {
    padding: 0 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
.header .inner {
  width: 100%;
  padding: 3.125rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .header .inner {
    padding: 1.875rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .header .inner {
    padding: 1.25rem;
  }
}
@media (max-width: 768px) {
  .header-logo {
    width: clamp(123px, 40vw, 40%);
  }
}
@media (max-width: 768px) {
  .header-logo img {
    vertical-align: top;
  }
}
.header-nav {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 80px;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  padding: 0.625rem 2.5rem 0.625rem 1.25rem;
}
@media (max-width: 768px) {
  .header-nav {
    background: none;
    gap: 0;
    padding: 0;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .header-nav__list {
    display: none;
  }
}
.header-nav__item {
  width: 209px;
}
@media (max-width: 1200px) {
  .header-nav__item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.header-nav__item a {
  border-radius: 10px;
  color: #fff;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 1.4375rem;
  font-weight: 700;
  padding: 0.5rem;
}
@media (max-width: 1200px) {
  .header-nav__item a {
    font-size: 1.125rem;
  }
}
@media (max-width: 900px) {
  .header-nav__item a {
    font-size: 0.9375rem;
  }
}
.header-nav__item--line a {
  background: rgb(69, 196, 67);
}
.header-nav__item--line a::before {
  content: "";
  background: transparent url("../img/icon_header_line.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 28px;
  height: 28px;
}
@media (max-width: 900px) {
  .header-nav__item--line a::before {
    width: 20px;
    height: 20px;
  }
}
.header-nav__item--mail a {
  background: var(--blue);
}
.header-nav__item--mail a::before {
  content: "";
  background: transparent url("../img/icon_header_mail.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 28px;
  height: 28px;
}
@media (max-width: 900px) {
  .header-nav__item--mail a::before {
    width: 20px;
    height: 20px;
  }
}
.header-nav__item--tel a {
  background: var(--red);
}
.header-nav__item--tel a::before {
  content: "";
  background: transparent url("../img/icon_header_tel.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 28px;
  height: 28px;
}
@media (max-width: 900px) {
  .header-nav__item--tel a::before {
    width: 20px;
    height: 20px;
  }
}
.header-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.header-toggle span {
  background: var(--blue);
  border-radius: 4px;
  width: 37px;
  height: 4px;
  display: block;
  transition: 0.3s all;
}
.header-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.header-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -10px;
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background: var(--blue2);
  width: 100%;
  height: 100vh;
  padding: 12.5rem 0 0;
}
.menu.is-active {
  display: block;
}
.menu .inner {
  width: min(100%, 500px);
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.menu-list__item a {
  font-size: 1.125rem;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
}
.menu-list__item a::after {
  content: "";
  background: transparent url("../img/icon_menu_arrow.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 28px;
  height: 28px;
}

.main {
  overflow-x: hidden;
}

.mv {
  background: rgb(241, 250, 255) url("../img/bg_mv.png") no-repeat center top;
  background-size: auto 100%;
  padding: 15.625rem 0 8.75rem;
}
@media (max-width: 1000px) {
  .mv {
    background: rgb(241, 250, 255) url("../img/bg_mv2.png") no-repeat right top;
    background-size: auto 80%;
  }
}
@media (max-width: 768px) {
  .mv {
    background: rgb(241, 250, 255) url("../img/bg_mv_sp.png") no-repeat center 280px;
    background-size: 80% auto;
    padding: 7.5rem 0 2.5rem;
  }
}
@media (max-width: 520px) {
  .mv {
    padding: 5rem 0 2.5rem;
  }
}
.mv-lead {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-weight: 700;
}
@media (max-width: 768px) {
  .mv-lead {
    justify-content: center;
    text-align: center;
  }
}
.mv-lead__ballown {
  background: var(--blue);
  font-size: clamp(1.125rem, 3vw, 2.25rem);
  font-weight: 700;
  border-radius: 60px;
  padding: 0.625rem 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin-bottom: 3.125rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .mv-lead__ballown {
    margin: 0 auto 1.875rem;
  }
}
.mv-lead__ballown::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  display: block;
  width: 25px;
  height: 25px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.mv-lead__sub {
  font-size: clamp(1rem, 5vw, 2.25rem);
  margin-bottom: 0rem;
}
.mv-lead__title {
  font-size: clamp(3rem, 10vw, 5.625rem);
  line-height: 1.3;
}
.mv-sub {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media (max-width: 768px) {
  .mv-sub {
    flex-direction: column;
  }
}
.mv-sub__text {
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: clamp(1rem, 5vw, 1.75rem);
  padding: 0.75rem 1.5625rem;
}
@media (max-width: 768px) {
  .mv-sub__text {
    padding: 0.3125rem 1.25rem;
    gap: 0.625rem;
  }
}
.mv-sub__text::before {
  content: "";
  background: transparent url("../img/icon_mv_home.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 45px;
  height: 45px;
}
@media (max-width: 520px) {
  .mv-sub__text::before {
    width: 22px;
    height: 22px;
  }
}
.mv-sub img {
  width: 226px;
}
@media (max-width: 1000px) {
  .mv-sub img {
    position: absolute;
    top: 7.5rem;
    left: 0;
  }
}
@media (max-width: 768px) {
  .mv-sub img {
    display: none;
  }
}
.mv-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9375rem;
  left: 60px;
}
@media (max-width: 1300px) {
  .mv-icon {
    justify-content: flex-start;
  }
}
@media (max-width: 1100px) {
  .mv-icon {
    left: 0;
  }
}
@media (max-width: 768px) {
  .mv-icon {
    flex-wrap: wrap;
    gap: 0.3125rem;
    padding-top: 1.875rem;
    justify-content: center;
    padding-bottom: 8.75rem;
  }
}
@media (max-width: 600px) {
  .mv-icon {
    padding-bottom: 10rem;
  }
}
@media (max-width: 520px) {
  .mv-icon {
    padding-bottom: 1.25rem;
  }
}
.mv-icon__image {
  width: 60%;
  display: none;
}
@media (max-width: 1000px) {
  .mv-icon__image {
    position: absolute;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .mv-icon__image {
    display: block;
    margin: 1.25rem 0 0;
    top: 8.75rem;
  }
}
@media (max-width: 520px) {
  .mv-icon__image {
    position: relative;
    max-width: 180px;
    width: 100%;
    margin-left: 1.25rem;
    top: 0;
  }
}
.mv-icon__item {
  width: 187px;
  height: 187px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 5px solid var(--red);
  color: var(--red);
  margin-left: 11.25rem;
}
@media (max-width: 1300px) {
  .mv-icon__item {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .mv-icon__item {
    width: 130px;
    height: 130px;
    border: 2px solid var(--red);
  }
}
@media (max-width: 520px) {
  .mv-icon__item {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1000px) {
  .mv-icon__item--abs {
    display: none;
  }
}
.mv-icon__item--abssp {
  display: none;
}
@media (max-width: 1000px) {
  .mv-icon__item--abssp {
    display: flex;
    margin-top: 3.75rem;
    margin-bottom: 2.5rem;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .mv-icon__item--abssp {
    display: flex;
    margin-top: 8.125rem;
    margin-left: auto;
  }
}
.mv-icon-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 768px) {
  .mv-icon-child {
    gap: 0.3125rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .mv-icon-child {
    justify-content: center;
  }
}
.mv-icon-child__item {
  width: 187px;
  height: 187px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  color: #fff;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .mv-icon-child__item {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 600px) {
  .mv-icon-child__item {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 520px) {
  .mv-icon-child__item {
    width: 100px;
    height: 100px;
  }
}
.mv-icon__text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .mv-icon__text {
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .mv-icon__text {
    font-size: 0.75rem;
  }
}
.mv-icon__text .en.fz-50 {
  line-height: 1.2;
}

@-webkit-keyframes scrollHorizontalFirst {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 20px));
  }
}
@keyframes scrollHorizontalFirst {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 20px));
  }
}
.role {
  padding: 3.125rem 0;
}
@media (max-width: 768px) {
  .role {
    padding: 2.5rem 0 1.25rem;
  }
}
.role-list {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 4.375rem;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scrollHorizontalFirst 190s linear infinite;
  animation: scrollHorizontalFirst 190s linear infinite;
}
@media (max-width: 768px) {
  .role-list {
    gap: 1.25rem;
    margin-bottom: 3.125rem;
  }
}
.role-list__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--blue);
  border-radius: 60px;
  color: var(--blue);
  font-size: 1.375rem;
  padding: 0.625rem 3.125rem;
}
@media (max-width: 768px) {
  .role-list__item {
    font-size: 1rem;
  }
}
.role-list__item::before {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  content: "";
  background: var(--blue);
  display: block;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 22px;
}
.role-list__item::after {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 22px;
}
.role-lead {
  text-align: center;
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.role-lead::before {
  content: "";
  background: var(--black);
  width: 100px;
  height: 6px;
  border-radius: 8px;
  transform: rotate(-70deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: -100px;
}
@media (max-width: 768px) {
  .role-lead::before {
    right: -50px;
    height: 3px;
    width: 60px;
  }
}
.role-lead::after {
  content: "";
  background: var(--black);
  width: 100px;
  height: 6px;
  border-radius: 8px;
  transform: rotate(70deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: -100px;
}
@media (max-width: 768px) {
  .role-lead::after {
    left: -50px;
    height: 3px;
    width: 60px;
  }
}

.fixed-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  display: none;
  background: rgb(57, 57, 57);
  padding: 0.5rem 0 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .fixed-nav {
    display: grid;
  }
}
.fixed-nav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.3125rem;
  padding: 0.625rem 0;
}
.fixed-nav__item:nth-child(1) a {
  background: rgb(69, 196, 67);
  border-radius: 0 10px 0 0;
}
.fixed-nav__item:nth-child(1) a::before {
  content: "";
  background: transparent url("../img/icon_header_line.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.fixed-nav__item:nth-child(2) a {
  background: var(--blue);
  border-radius: 10px 10px 0 0;
}
.fixed-nav__item:nth-child(2) a::before {
  content: "";
  background: transparent url("../img/icon_header_mail.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.fixed-nav__item:nth-child(3) a {
  background: var(--red);
  border-radius: 10px 0 0 0;
}
.fixed-nav__item:nth-child(3) a::before {
  content: "";
  background: transparent url("../img/icon_header_tel.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.form {
  background: #f1f9ff;
  padding: 3.125rem 0 4.375rem;
}
.form-head {
  display: flex;
  flex-direction: column-reverse;
}
.form-ballown {
  background: var(--blue);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 3.125rem 0.3125rem 1.875rem;
  margin: 0 auto;
  border-radius: 60px;
  color: #fff;
  font-size: clamp(1.375rem, 5vw, 2rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 2.5rem;
}
.form-ballown::before {
  content: "";
  background: transparent url("../img/icon_form_home.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 46px;
  height: 46px;
}
.form-ballown::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  display: block;
  width: 25px;
  height: 25px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.form-title {
  font-size: clamp(1.25rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .form-title__big {
    font-size: 1.875rem;
  }
}
.form-main__set {
  display: none;
  padding-bottom: 1.25rem;
}
.form-main__set.is-active {
  display: block;
}
.form-main__lead {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
@media (max-width: 768px) {
  .form-main__lead {
    margin-bottom: 1.25rem;
  }
}
.form-main__wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 4.375rem;
}
@media (max-width: 768px) {
  .form-main__wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form-radio {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding-top: 1.25rem;
}
@media (max-width: 768px) {
  .form-radio {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form-radio__group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
}
.form-radio__group input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 3.4375rem;
}
.form-radio__group input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 48px;
  display: inline-block;
}
.form-radio__group input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 30px;
  display: inline-block;
}
.form-input {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding-top: 1.25rem;
}
.form-input__label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.form-input__text {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.5625rem 1.875rem;
  border-radius: 20px;
  background: #fff;
  width: 100%;
  border: none;
}
.form-input__group:last-child {
  margin-bottom: 3.75rem;
}
.form-progress {
  margin-bottom: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.form-progress span {
  width: 70px;
  height: 10px;
  border-radius: 10px;
  background: rgb(164, 164, 164);
}
.form-progress span.is-current {
  background: var(--blue);
}
.form-select {
  width: 33%;
}
@media (max-width: 768px) {
  .form-select {
    width: 100%;
  }
}
.form-select.is-hidden {
  opacity: 0;
}
.form-select::after {
  content: "";
  background: transparent url("../img/icon_select.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}
.form-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.5625rem 1.875rem;
  cursor: pointer;
  border-radius: 20px;
  background: #fff;
  width: 100%;
  color: var(--black);
}
.form-confirm {
  width: 100%;
  margin-top: 2.5rem;
}
.form-confirm th {
  background: #f1f5f7;
  border: 1px solid #c1d2df;
  padding: 0.625rem 0.9375rem;
  width: 30%;
}
@media (max-width: 768px) {
  .form-confirm th {
    width: 100%;
    display: block;
    border-bottom: none;
  }
}
.form-confirm td {
  background: #fff;
  border: 1px solid #ccc;
  padding: 0.625rem 0.9375rem;
}
@media (max-width: 768px) {
  .form-confirm td {
    width: 100%;
    display: block;
  }
}
.form-btn {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.form-btn__err, .form-btn__err2 {
  text-align: center;
  color: var(--red);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  display: none;
}
@media (max-width: 768px) {
  .form-btn__err, .form-btn__err2 {
    font-size: 1rem;
  }
}
.form-btn__err.is-active, .form-btn__err2.is-active {
  display: block;
}
.form-btn__next {
  background: var(--red);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 1.25rem 4.375rem 1.25rem 4.375rem;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-btn__next:hover {
  opacity: 0.8;
}
.form-btn__next::after {
  content: "";
  background: transparent url("../img/icon_btn_arrow.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.form-btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.form-btn__start {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--red);
  font-size: 1.75rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 1.25rem 3.75rem 1.25rem 6.875rem;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}
@media (max-width: 428px) {
 .form-btn__start {
    font-size: 1.45rem;
    padding: 1.25rem 2.75rem 1.25rem 4.875rem;
  }
}
@media (max-width: 428px) {
 .form-btn__confirm {
    font-size: 1.45rem;
    padding: 1.25rem 3.75rem 1.25rem 3.875rem;
  }
}
@media (max-width: 375px) {
 .form-btn__start {
    font-size: 1.25rem;
    padding: 1.25rem 1.75rem 1.25rem 3.875rem;
  }
}
@media (max-width: 375px) {
 .form-btn__confirm {
    font-size: 1.25rem;
    padding: 1.25rem 2.75rem 1.25rem 2.875rem;
  }
  .form-btn__confirm::after {
    right: 10px;
  }
}


.form-btn__start:hover {
  opacity: 0.8;
}
.form-btn__start::before {
  content: "";
  background: transparent url("../img/icon_btn2.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: 5;
}
@media (max-width: 428px) {
 .form-btn__start::before {
    width: 38px;
    height: 38px;
    left: 20px;
  }
}
@media (max-width: 375px) {
 .form-btn__start::before {
    width: 28px;
    height: 28px;
    left: 20px;
  }
}
.form-btn__send {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--red);
  font-size: 1.75rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 1.25rem 6.875rem 1.25rem 6.875rem;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}
.form-btn__send:hover {
  opacity: 0.8;
}
.form-btn__send::before {
  content: "";
  background: transparent url("../img/icon_btn2.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: 5;
}
.form-btn__sendmail {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--red);
  font-size: 1.75rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 1.25rem 6.875rem 1.25rem 6.875rem;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}
.form-btn__sendmail:hover {
  opacity: 0.8;
}
.form-btn__sendmail::before {
  content: "";
  background: transparent url("../img/icon_btn2.svg") no-repeat center center;
  background-size: cover;
  display: inline-block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: 5;
}
@media (max-width: 375px) {
 .form-btn__sendmail {
    font-size: 1.25rem;
    padding: 1.25rem 2.75rem 1.25rem 2.875rem;
    max-width: 400px;
    width: 100%;;
  }

}

.form-btn__back {
  margin: 1.875rem auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #f4f4f4;
  font-size: 1.75rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  border-radius: 10px;
  padding: 1.25rem 6.875rem 1.25rem 6.875rem;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
}
.form-btn__back:hover {
  opacity: 0.8;
}
.form-btn__back::before {
  content: "";
  background: transparent url("../img/icon_form_back.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 14px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  z-index: 5;
}

.thanks {
  padding: 16.25rem 0;
}
@media (max-width: 768px) {
  .thanks {
    padding: 8.75rem 0 6.25rem;
  }
}
.thanks .inner {
  width: min(100%, 600px);
}
.thanks-lead {
  color: var(--blue);
  font-size: clamp(1.5rem, 5vw, 2.125rem);
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .thanks-lead {
    margin-bottom: 1.25rem;
  }
}
.thanks-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}

.cta {
  background: var(--blue);
  padding: 1.875rem;
}
@media (max-width: 900px) {
  .cta {
    padding: 1.875rem 0;
  }
}
.cta .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .cta .inner {
    flex-direction: column;
  }
}
.cta-head {
  color: rgb(255, 196, 196);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .cta-head {
    flex-direction: column;
  }
}
.cta-head__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cta-head::after {
  content: "";
  display: block;
  width: 21px;
  height: 82px;
  background: transparent url("../img/icon_arrow.svg") no-repeat center center;
  background-size: cover;
  margin: 0 1.875rem;
}
@media (max-width: 900px) {
  .cta-head::after {
    transform: rotate(90deg);
    height: 50px;
  }
}
.cta-head__sub {
  font-size: 1.5rem;
}
@media (max-width: 520px) {
  .cta-head__sub {
    font-size: 1.25rem;
  }
}
.cta-head__text {
  font-size: 2.5rem;
}
@media (max-width: 520px) {
  .cta-head__text {
    font-size: 2rem;
  }
}
.cta-main {
  color: #fff;
  font-weight: 700;
}
.cta-main__text {
  font-size: 1.375rem;
  display: block;
}
.cta-main__text .en {
  font-size: 1.75rem;
}
.cta-main__tel.en {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .cta-main__tel.en {
    font-size: 1.25rem;
  }
}
.cta-main__num.en {
  font-size: 2.8125rem;
}
@media (max-width: 768px) {
  .cta-main__num.en {
    font-size: 2rem;
  }
}

.contents {
  padding: 7.5rem 0 0;
  background: transparent url("../img/bg_contents.svg") 220% top no-repeat;
  background-size: 70%;
}
@media (max-width: 768px) {
  .contents {
    padding: 5rem 0 0;
  }
}
.contents-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.3125rem 0;
  font-weight: 700;
  font-size: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(183, 221, 255, 0.5);
  text-align: center;
  margin-bottom: 4.375rem;
}
@media (max-width: 768px) {
  .contents-title {
    padding: 1.5625rem 0;
    line-height: 1.4;
    border-radius: 10px;
    margin-bottom: 1.875rem;
    gap: 0.625rem;
  }
}
@media (max-width: 520px) {
  .contents-title {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .contents-title .sp-only {
    display: none;
  }
}
@media (max-width: 520px) {
  .contents-title .sp-only {
    display: block;
  }
}
.contents-title .col-blue {
  font-size: clamp(2rem, 5vw, 3.125rem);
}
@media (max-width: 768px) {
  .contents-title .col-blue {
    text-align: left;
  }
}
.contents-set {
  padding-bottom: 6.875rem;
}
@media (max-width: 768px) {
  .contents-set {
    padding-bottom: 5rem;
  }
}
.contents-wrap {
  width: min(100%, 850px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contents-wrap {
    flex-direction: column;
  }
}
.contents-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media (max-width: 768px) {
  .contents-description {
    gap: 1.875rem;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 520px) {
  .contents-description {
    width: 100%;
  }
}
.contents-description__text {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 520px) {
  .contents-description__text {
    font-size: 1rem;
  }
}
.contents-image {
  width: min(50%, 420px);
}
@media (max-width: 768px) {
  .contents-image {
    width: min(90%, 420px);
    margin: 0 auto;
  }
}
.contents-table {
  width: min(100%, 700px);
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 8px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .contents-table {
    border-spacing: 4px;
  }
}
.contents-table__01 {
  width: 160px;
}
.contents-table__02 {
  width: 250px;
}
.contents-table__th {
  text-align: center;
  height: 80px;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
  font-size: 1.25rem;
  border-radius: 20px 20px 0 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .contents-table__th {
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .contents-table__th {
    font-size: 0.8125rem;
    height: 50px;
  }
}
@media (max-width: 520px) {
  .contents-table__th img {
    width: 80%;
  }
}
.contents-table__td {
  vertical-align: middle;
  text-align: center;
  padding: 1.875rem 1.25rem;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .contents-table__td {
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .contents-table__td {
    font-size: 0.8125rem;
    padding: 0.9375rem 0.4375rem;
  }
}
.contents-table__td.bg-blue {
  color: #fff;
  font-weight: 700;
}
.contents-table__bdrs1 {
  border-radius: 20px 0 0 0;
}
.contents-table__textinner {
  display: inline-block;
  text-align: left;
}

.reason {
  background: #f1f9ff;
  padding: 0 0 6.25rem;
}
@media (max-width: 768px) {
  .reason {
    padding: 0 0 2.5rem;
  }
}
.reason .inner {
  padding-top: 6.25rem;
}
@media (max-width: 768px) {
  .reason .inner {
    padding-top: 3.75rem;
  }
}
.reason .inner::after {
  content: "";
  display: inline-block;
  width: 1090px;
  height: 210px;
  background: transparent url("../img/bg_txt_reason.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: -200px;
  opacity: 0.9;
}
@media (max-width: 1400px) {
  .reason .inner::after {
    width: 100%;
    height: 16.5vw;
    left: 0px;
  }
}
@media (max-width: 768px) {
  .reason .inner::after {
    left: auto;
    right: 0;
    top: 30px;
  }
}
.reason-title {
  text-align: center;
  line-height: 1.3;
  z-index: 5;
  margin-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .reason-title {
    margin-bottom: 2.5rem;
  }
}
.reason-title__sub {
  font-size: 1.375rem;
  font-weight: 700;
  display: block;
}
@media (max-width: 768px) {
  .reason-title__sub {
    font-size: 1.125rem;
  }
}
.reason-title__text {
  display: block;
  font-size: clamp(2rem, 5vw, 3.125rem);
}
.reason-title__text::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background: transparent url("../img/icon_reason.svg") no-repeat center center;
  background-size: cover;
  margin: 0 0 0 10px;
  position: relative;
  top: 5px;
}
@media (max-width: 768px) {
  .reason-title__text::after {
    width: 40px;
    height: 40px;
  }
}
.reason-title__num {
  font-size: clamp(3.125rem, 5vw, 5rem);
}
.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.0625rem 1.25rem;
}
@media (max-width: 768px) {
  .reason-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.4375rem 1.25rem;
  }
}
@media (max-width: 520px) {
  .reason-list {
    grid-template-columns: 1fr;
    gap: 2.8125rem;
  }
}
.reason-list__item {
  border-radius: 16px 16px 0 0;
  border: 3px solid var(--blue);
  background: #fff;
}
.reason-list__num {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  line-height: 52px;
  border-radius: 50%;
  font-size: 1.875rem;
  font-weight: 700;
  z-index: 5;
  color: var(--blue);
  background: #fff;
  border: 3px solid var(--blue);
  text-align: center;
}
.reason-list__title {
  background: var(--blue);
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  line-height: 1.4;
}
.reason-list__title--t5 {
  top: 5px;
}
.reason-list__title--t10 {
  position: relative;
  top: 10px;
}
.reason-list__title--20 {
  font-size: 1.25rem;
}
.reason-list__title--40 {
  font-size: 2.5rem;
  top: 0px;
}
.reason-list__title--last {
  text-align: left;
}
.reason-list__image {
  margin: 0.625rem 0.625rem 0;
}
.reason-list__text {
  font-size: 0.875rem !important;
  margin: 0.625rem 0.625rem 1.25rem;
}

.voice {
  background: #f1f9ff;
  padding: 0 0 3.125rem;
}
@media (max-width: 768px) {
  .voice {
    padding: 0 0 1.875rem;
  }
}
.voice .inner {
  padding-top: 3.125rem;
  width: min(100%, 900px);
}
.voice .inner::after {
  content: "";
  display: inline-block;
  width: 1020px;
  height: 160px;
  background: transparent url("../img/bg_txt_voice.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 150px;
  opacity: 0.9;
}
@media (max-width: 1400px) {
  .voice .inner::after {
    width: 100%;
    height: 11.5vw;
  }
}
@media (max-width: 768px) {
  .voice .inner::after {
    left: auto;
    right: 0;
    top: 30px;
  }
}
.voice-title {
  text-align: center;
  z-index: 5;
  margin-bottom: 4.375rem;
}
@media (max-width: 768px) {
  .voice-title {
    margin-bottom: 1.25rem;
  }
}
.voice-title__text {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.125rem);
  display: block;
}
.voice-title__sub {
  display: block;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .voice-title__sub {
    font-size: 1.125rem;
    margin-bottom: 1.875rem;
  }
}
.voice-title__image {
  width: 226px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .voice-title__image {
    position: relative;
    top: 0;
    transform: none;
    margin-bottom: 0.625rem;
  }
}
.voice-set {
  box-shadow: 0 0 20px rgba(183, 221, 255, 0.5);
  border-radius: 20px;
  padding: 2.5rem 3.125rem;
  background: #fff;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .voice-set {
    padding: 1.875rem 1.25rem;
  }
}
.voice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .voice-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.voice-head__inner {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .voice-head__inner {
    gap: 0.625rem;
  }
}
.voice-head-title {
  text-align: left;
  flex: 1;
}
.voice-head-title__text {
  font-size: 1.25rem;
  display: block;
  font-weight: 700;
  margin-bottom: 0.3125rem;
}
.voice-head-title__sub {
  font-size: 0.875rem;
  display: block;
}
.voice-thum {
  width: 64px;
}
.voice-icon {
  color: var(--blue);
  background: var(--blue2);
  font-size: 0.875rem;
  border-radius: 30px;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
}
.voice-contents__text {
  font-weight: 400;
}
@media (max-width: 768px) {
  .voice-contents__text {
    line-height: 2.2;
  }
}
.voice-after {
  box-shadow: 0 0 20px rgba(183, 221, 255, 0.5);
  border-radius: 80px;
  padding: 1.875rem 2.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .voice-after {
    margin-top: 3.125rem;
    gap: 0.625rem;
    padding: 1.875rem 0.9375rem;
  }
}
.voice-after__icon {
  width: 84px;
}
@media (max-width: 768px) {
  .voice-after__icon {
    width: 64px;
  }
}
.voice-after__caption {
  font-size: 1.25rem;
  font-weight: 700;
  position: absolute;
  top: -70px;
  left: -10px;
  width: 120px;
  transform: rotate(-5deg);
}
@media (max-width: 768px) {
  .voice-after__caption {
    font-size: 0.875rem;
    width: 100px;
    top: -50px;
  }
}
.voice-after__title {
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.75rem);
  padding-bottom: 0.3125rem;
}
@media (max-width: 768px) {
  .voice-after__title .sp-only {
    display: none;
  }
}
@media (max-width: 520px) {
  .voice-after__title .sp-only {
    display: block;
  }
}
.voice-after__main {
  flex: 1;
}
.voice-after__link a {
  text-decoration: underline;
  font-weight: 400;
}
@media (max-width: 768px) {
  .voice-after__link a {
    font-size: 0.875rem;
  }
}

.cta2 {
  padding: 9.375rem 0 7.5rem;
}
@media (max-width: 768px) {
  .cta2 {
    padding: 5rem 0 3.75rem;
  }
}
.cta2::before {
  content: "";
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  height: 90px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f1f9ff;
}
@media (max-width: 768px) {
  .cta2::before {
    height: 40px;
  }
}
.cta2-ballown {
  background: var(--blue);
  font-size: clamp(1.25rem, 5vw, 1.625rem);
  font-weight: 700;
  border-radius: 60px;
  padding: 0.3125rem 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .cta2-ballown {
    padding: 0.625rem 3.125rem;
  }
}
.cta2-ballown::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  display: block;
  width: 25px;
  height: 25px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.cta2-title {
  font-size: clamp(1.25rem, 5vw, 2.375rem);
  font-weight: 700;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 1.25rem;
  text-align: center;
}
.cta2-title::before {
  content: "";
  background: var(--black);
  width: 100px;
  height: 5px;
  border-radius: 8px;
  transform: rotate(-70deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: -100px;
}
@media (max-width: 768px) {
  .cta2-title::before {
    right: -60px;
    height: 3px;
    width: 60px;
  }
}
.cta2-title::after {
  content: "";
  background: var(--black);
  width: 100px;
  height: 5px;
  border-radius: 8px;
  transform: rotate(70deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: -100px;
}
@media (max-width: 768px) {
  .cta2-title::after {
    left: -60px;
    height: 3px;
    width: 60px;
  }
}
.cta2-title .col-blue {
  font-size: clamp(1.125rem, 6vw, 2.375rem);
}
.cta2-main {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 0.625rem;
}
.cta2-main__icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  font-weight: 700;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-size: 1.125rem;
}
@media (max-width: 520px) {
  .cta2-main__icon {
    position: absolute;
    top: -15px;
    left: -10px;
    width: 52px;
    height: 52px;
    z-index: 5;
    font-size: 0.75rem;
  }
}
.cta2-main__btn {
  width: min(100%, 450px);
}
@media (max-width: 768px) {
  .cta2-main__btn {
    max-width: 90%;
  }
}
.cta2-main__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5625rem;
  background: #45c443;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 0.9375rem;
}
@media (max-width: 768px) {
  .cta2-main__btn a {
    font-size: 1.75rem;
    gap: 0.9375rem;
  }
}
.cta2-main__btn a img {
  width: 50px;
}
@media (max-width: 768px) {
  .cta2-main__btn a img {
    width: 40px;
  }
}
.cta2-after {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 520px) {
  .cta2-after {
    font-size: 0.875rem;
  }
}

.footer {
  background: var(--blue);
  padding: 7.5rem 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 8.75rem;
  }
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .inner {
    flex-direction: column-reverse;
    gap: 6.25rem;
  }
}
.footer-head {
  width: 50%;
}
@media (max-width: 768px) {
  .footer-head {
    width: 100%;
  }
}
.footer-logo {
  width: min(100%, 323px);
  margin-bottom: 1.5625rem;
}
@media (max-width: 768px) {
  .footer-logo {
    width: min(100%, 249px);
    margin: 0 auto 0.625rem;
  }
}
.footer-logo img {
  width: 100%;
}
.footer-copy {
  color: #fff;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .footer-copy {
    font-size: 0.875rem;
    text-align: center;
  }
}
.footer-main {
  flex: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-main {
    text-align: center;
  }
}
.footer-main__text {
  margin-bottom: 1.5625rem;
}
@media (max-width: 768px) {
  .footer-main__text {
    line-height: 2;
    text-align: left;
    margin-bottom: 0.625rem;
  }
}
.footer-main__tel {
  font-size: 1.875rem;
  font-weight: 700;
}

.fz-22 {
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .fz-22 {
    font-size: 0.9375rem;
  }
}
@media (max-width: 520px) {
  .fz-22 {
    font-size: 0.75rem;
  }
}
.fz-28 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .fz-28 {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .fz-28 {
    font-size: 1.125rem;
  }
}
@media (max-width: 520px) {
  .fz-28 {
    font-size: 1rem;
  }
}
.fz-30 {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  .fz-30 {
    font-size: 1.375rem;
  }
}
@media (max-width: 520px) {
  .fz-30 {
    font-size: 0.875rem;
  }
}
.fz-50 {
  font-size: 3.125rem;
}
@media (max-width: 768px) {
  .fz-50 {
    font-size: 2rem;
  }
}
@media (max-width: 520px) {
  .fz-50 {
    font-size: 1.75rem;
  }
}
/*# sourceMappingURL=layout.css.map */