@charset "UTF-8";
/* ------------------------------------------------------
変数
------------------------------------------------------ */
:root {
  --black:#222222;
  --white: #FFFFFF;
  --blue01: #004EA2;
  --blue02: #002D57;
  --orange: #DD3E20;
  --background01: #F1F5FB;
}

/* =======================================================

共通

======================================================= */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5% !important;
  min-height: 100%;
}

body {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7em;
  color: var(--black);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: relative;
  transform-origin: top; /* スケール時の基準位置 */
  padding-top: 70px;
}
@media (max-width: 428px) {
  body {
    font-size: 1.3rem;
    padding-top: 50px;
  }
}

p {
  line-height: 1.7em;
}

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

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

@media (max-width: 428px) {
  br.pc {
    display: none;
  }
}

br.tab {
  display: none;
}
@media (max-width: 834px) {
  br.tab {
    display: block;
  }
}

br.sp {
  display: none;
}
@media (max-width: 428px) {
  br.sp {
    display: block;
  }
}

@media (max-width: 834px) {
  br.tab-none {
    display: none;
  }
}

@media (max-width: 428px) {
  br.sp-none {
    display: none;
  }
}

main {
  overflow: hidden;
}

.container {
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 428px) {
  .container {
    padding: 0 20px;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.btn--contact {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1.9rem;
  font-weight: bold;
  color: var(--white);
  background: var(--orange);
  border-radius: 40px;
  transition: ease 0.3s opacity;
  text-align: center;
  line-height: 1.4em;
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 428px) {
  .btn--contact {
    box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.15);
    padding: 12px 18px;
    font-size: 1.5rem;
  }
}
.btn--contact span {
  text-decoration: underline;
}
.btn--contact i {
  font-size: 1.3em;
}
.btn--contact:hover {
  opacity: 0.7;
}

.contacts__subtext {
  text-align: center;
  font-size: 1.3rem;
}

.ttls--cmn {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 428px) {
  .ttls--cmn {
    margin-bottom: 30px;
  }
}
.ttls--cmn .h2 {
  font-size: 2.8rem;
  color: var(--black);
  font-weight: bold;
}
@media (max-width: 428px) {
  .ttls--cmn .h2 {
    font-size: 2.2rem;
  }
}
.ttls--cmn .h2.white {
  color: #fff;
}
.ttls--cmn .ttls--sub-txt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 428px) {
  .ttls--cmn .ttls--sub-txt {
    font-size: 1.4rem;
  }
}
.ttls--cmn .ttls--sub-txt .big {
  font-size: 1.3em;
}

.blue {
  color: var(--blue01);
}

.orange {
  color: var(--orange);
}

/* =======================================================

header

======================================================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--white);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1100px) {
  .header {
    padding: 20px;
  }
}
@media (max-width: 428px) {
  .header {
    box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.15);
    padding: 12px 20px;
  }
}

@media (max-width: 428px) {
  .header__logo {
    width: 200px;
  }
}

.header__nav__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1100px) {
  .header__nav__links {
    font-size: 1.35rem;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media (max-width: 834px) {
  .header__nav__links {
    display: none;
  }
}
.header__nav__links a {
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: ease 0.3s color;
  gap: 5px;
}
.header__nav__links a i {
  color: var(--blue01);
}
.header__nav__links a:hover {
  color: var(--blue01);
}

.btn--contact--fixed.pc {
  position: fixed;
  right: 0;
  bottom: 0;
  transition: ease 0.3s opacity;
  z-index: 999;
}
.btn--contact--fixed.pc:hover {
  opacity: 0.8;
}
@media (max-width: 428px) {
  .btn--contact--fixed.pc {
    display: none;
  }
}

.btn--contact--fixed.sp {
  display: none;
}
@media (max-width: 428px) {
  .btn--contact--fixed.sp {
    display: flex;
    position: fixed;
    justify-content: center;
    gap: 5px;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 14px 20px;
    color: var(--white);
    background: var(--orange);
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    transition: ease 0.3s background-color;
    z-index: 999;
  }
}
.btn--contact--fixed.sp span {
  text-decoration: underline;
}

/* =======================================================

MV

======================================================= */
.mv {
  background: linear-gradient(180deg, #DDE8F9 0%, #F1F5FB 100%);
  background-size: 100%;
  height: 540px;
  position: relative;
}
@media (max-width: 834px) {
  .mv {
    height: unset;
  }
}
.mv::before {
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  background: url(../images/mv__bg.png) no-repeat center bottom;
  background-size: 100%;
}
@media (max-width: 428px) {
  .mv::before {
    background-size: 150%;
  }
}
.mv > .container {
  max-width: 1200px;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 834px) {
  .mv > .container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
}

.mv__logo {
  text-align: center;
}
@media (max-width: 834px) {
  .mv__logo img {
    width: 95%;
  }
}

.mv__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (max-width: 428px) {
  .mv__texts {
    gap: 20px;
  }
}

.mv__copy {
  text-align: center;
  font-weight: 700;
  font-size: 2.6rem;
}
@media (max-width: 834px) {
  .mv__copy {
    font-size: clamp(12px, 4.5vw, 25px);
  }
}
.mv__copy .lg {
  font-size: 1.3em;
}

.mv__imgs {
  text-align: center;
}

/* =======================================================

お悩み

======================================================= */
.problem {
  padding: 40px 0 60px;
}
@media (max-width: 428px) {
  .problem {
    padding: 40px 0;
  }
}

.problem__list {
  display: flex;
  gap: 20px;
  padding-top: 30px;
  margin-bottom: 20px;
  justify-content: center;
}
@media (max-width: 834px) {
  .problem__list {
    flex-wrap: wrap;
    padding-top: 0;
  }
}
@media (max-width: 428px) {
  .problem__list {
    gap: 20px 10px;
  }
}

.problem__list__item {
  padding: 5px;
  min-height: 120px;
  height: auto;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
  color: var(--black);
  text-align: center;
  font-weight: 700;
  line-height: 1.6em;
  position: relative;
}
@media (max-width: 834px) {
  .problem__list__item {
    flex: unset;
    width: calc(50% - 10px);
    padding: 20px 5px;
  }
}
@media (max-width: 428px) {
  .problem__list__item {
    flex: unset;
    padding: 10px 5px;
    min-height: 80px;
    width: calc(50% - 5px);
    box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.15);
  }
}
.problem__list__item:nth-child(even) {
  transform: translateY(-30px);
}
@media (max-width: 834px) {
  .problem__list__item:nth-child(even) {
    transform: none;
  }
}
.problem__list__item::before {
  position: absolute;
  content: "";
  top: 100%;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #FFF transparent transparent transparent;
}

.problem__img {
  text-align: center;
  display: block;
}

/* =======================================================

効果

======================================================= */
.effect {
  padding: 80px 0 60px;
  position: relative;
  background: var(--background01);
}
@media (max-width: 428px) {
  .effect {
    padding-top: 60px;
  }
}
.effect::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 150px 0 150px;
  border-color: #FFF transparent transparent transparent;
}
@media (max-width: 428px) {
  .effect::before {
    border-width: 40px 100px 0 100px;
  }
}

.solve__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 70px;
}
@media (max-width: 428px) {
  .solve__block {
    margin-bottom: 30px;
    gap: 15px;
  }
}

.solve__copy {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2em;
}
@media (max-width: 428px) {
  .solve__copy {
    font-size: 1.8rem;
    line-height: 1.8em;
  }
}
.solve__copy .lg {
  font-size: 1.2em;
  padding: 0 0.2em;
}
@media (max-width: 428px) {
  .solve__copy .lg {
    font-size: 1.3em;
  }
}
.solve__copy .orange {
  background: linear-gradient(transparent 60%, rgba(255, 209, 41, 0.3) 40%);
}
.solve__copy .blue {
  background: linear-gradient(transparent 60%, rgba(0, 78, 162, 0.1) 40%);
}

.solve__img {
  text-align: center;
  display: block;
}
@media (max-width: 428px) {
  .solve__img img {
    max-width: 220px;
  }
}

.solve__sub {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 428px) {
  .solve__sub {
    font-size: 1.5rem;
  }
}

.effect__block {
  padding: 40px 20px;
  display: flex;
  position: relative;
  background: #fff;
  border-radius: 40px;
  border: 2px solid var(--blue01);
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 834px) {
  .effect__block {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 428px) {
  .effect__block {
    border-radius: 20px;
    padding: 30px 20px 0;
  }
}

.effect__ttl {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue01);
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 10px;
  white-space: preserve nowrap;
}
@media (max-width: 428px) {
  .effect__ttl {
    font-size: 2rem;
    top: -15px;
  }
}

.effect__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (max-width: 834px) {
  .effect__item {
    flex: unset;
    padding: 20px 0;
  }
}
@media (max-width: 428px) {
  .effect__item {
    gap: 10px;
  }
}
.effect__item:not(:last-child) {
  border-right: var(--blue01) 1px solid;
}
@media (max-width: 834px) {
  .effect__item:not(:last-child) {
    border-right: 0;
    border-bottom: var(--blue01) 1px solid;
  }
}
.effect__item .num {
  width: 60px;
  height: 70px;
  background: url(../images/logobg__blue.png) no-repeat center;
  background-size: contain;
  color: var(--blue01);
  text-align: center;
  padding-top: 20px;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
@media (max-width: 428px) {
  .effect__item .num {
    width: 50px;
    height: 55px;
    font-size: 2.2rem;
    padding-top: 15px;
  }
}
@media (max-width: 428px) {
  .effect__item img {
    width: 150px;
  }
}
.effect__item .ttl {
  text-align: center;
  color: var(--blue01);
  font-size: 2.6rem;
  font-weight: 700;
}
@media (max-width: 428px) {
  .effect__item .ttl {
    font-size: 2rem;
  }
}
.effect__item p {
  text-align: center;
  font-weight: 700;
  text-align: center;
}

/* =======================================================

対応可能な文書

======================================================= */
.document {
  background: #F1F1F1;
  position: relative;
  padding: 60px 0;
}
.document > .container {
  position: relative;
  z-index: 2;
}

.document__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 834px) {
  .document__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 428px) {
  .document__list {
    gap: 10px;
  }
}

.document__list__item {
  background: #FFF;
  min-height: 100px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 428px) {
  .document__list__item {
    gap: 5px;
    min-height: 70px;
    border-radius: 5px;
  }
}
@media (max-width: 428px) {
  .document__list__item img {
    width: 35px;
  }
}
.document__list__item span {
  font-weight: 700;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4em;
}
@media (max-width: 428px) {
  .document__list__item span {
    font-size: 1.4rem;
  }
}

.document__detail {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 428px) {
  .document__detail {
    font-size: 1.5rem;
  }
}

.document__bg {
  position: absolute;
  z-index: 1;
}
.document__bg.bg01 {
  right: 0;
  top: 0;
}
@media (max-width: 428px) {
  .document__bg.bg01 img {
    width: 150px;
  }
}
.document__bg.bg02 {
  left: 0;
  bottom: 0;
}
@media (max-width: 428px) {
  .document__bg.bg02 img {
    width: 150px;
  }
}

/* =======================================================

CTA

======================================================= */
.cta {
  background: url(../images/cta__bg.jpg) no-repeat center;
  background-size: cover;
  padding: 40px 0;
  color: #fff;
}

.cta__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}
@media (max-width: 428px) {
  .cta__top {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.cta__top img:last-child {
  transform: scale(-1, 1);
}

.cta__copy {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media (max-width: 428px) {
  .cta__copy {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

/* =======================================================

特徴

======================================================= */
.feature {
  padding: 60px 0;
}

.feature__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
}
@media (max-width: 834px) {
  .feature__items {
    gap: 30px;
  }
}

.feature__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 834px) {
  .feature__item {
    flex-direction: column;
    gap: 0;
    max-width: 500px;
    width: 100%;
  }
}
.feature__item:not(:first-of-type) {
  margin-top: -30px;
}
@media (max-width: 834px) {
  .feature__item:not(:first-of-type) {
    margin-top: 0;
  }
}
.feature__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 834px) {
  .feature__item:nth-of-type(even) {
    flex-direction: column;
  }
}

.feature__img {
  width: 45%;
  text-align: center;
}
@media (max-width: 834px) {
  .feature__img {
    width: 100%;
  }
}
@media (max-width: 428px) {
  .feature__img {
    max-width: 300px;
  }
}

.feature__texts {
  width: 55%;
}
@media (max-width: 834px) {
  .feature__texts {
    width: 100%;
    margin-top: -20px;
  }
}
.feature__texts .num {
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  font-size: 12rem;
  color: #E7EDF7;
  margin-bottom: -0.3em;
  display: block;
  letter-spacing: 0.1em;
}
@media (max-width: 428px) {
  .feature__texts .num {
    font-size: 7rem;
  }
}
.feature__texts .ttl {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 428px) {
  .feature__texts .ttl {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}

/* =======================================================

うるるの紹介

======================================================= */
.company {
  background: radial-gradient(185.19% 50% at 50% 50%, #FFF 0%, #DDD 100%);
  padding: 60px 0;
}

.company__ttl {
  line-height: 1.4em;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 428px) {
  .company__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.company__ttl .lg {
  font-size: 1.2em;
}

.company__block {
  display: flex;
  gap: 40px;
}
@media (max-width: 834px) {
  .company__block {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 428px) {
  .company__block {
    gap: 20px;
  }
}

.company__img {
  flex: 1;
}
.company__img img {
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 428px) {
  .company__img img {
    box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.15);
  }
}

.company__list {
  flex: 1;
}
.company__list li {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.6em;
}
@media (max-width: 428px) {
  .company__list li {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.company__list li i {
  color: var(--orange);
  margin-right: 5px;
  font-size: 1.3em;
  position: absolute;
  left: 0;
  top: 0.2em;
}

/* =======================================================

スタッフのご紹介

======================================================= */
.staff {
  padding: 60px 0;
}

.staff__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  align-self: stretch;
}
@media (max-width: 834px) {
  .staff__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.staff__list__item {
  display: flex;
  max-width: 350px;
  padding: 30px 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 834px) {
  .staff__list__item {
    align-self: auto;
    max-width: 500px;
    width: 100%;
  }
}
@media (max-width: 428px) {
  .staff__list__item {
    padding: 20px;
    gap: 10px;
    box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.15);
  }
}
.staff__list__item .job {
  color: var(--blue01);
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 428px) {
  .staff__list__item .job {
    font-size: 1.6rem;
  }
}
@media (max-width: 428px) {
  .staff__list__item img {
    width: 130px;
  }
}
.staff__list__item .name {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 428px) {
  .staff__list__item .name {
    font-size: 1.6rem;
  }
}

/* =======================================================

ご利用の流れ

======================================================= */
.flow {
  background: #2C6DB3;
  padding: 60px 0;
}

.flow__list {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
@media (max-width: 834px) {
  .flow__list {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
  }
}

.flow__list__item {
  flex: 1;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFF;
  padding: 30px 20px 20px;
  border-radius: 20px;
  display: flex;
  position: relative;
  box-shadow: 10px 10px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 834px) {
  .flow__list__item {
    max-width: 500px;
    width: 100%;
    align-self: unset;
  }
}
@media (max-width: 428px) {
  .flow__list__item {
    border-radius: 10px;
    box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.15);
  }
}
.flow__list__item .num {
  width: 70px;
  height: 80px;
  background: url(../images/logobg__black.png) no-repeat center;
  background-size: contain;
  color: #fff;
  text-align: center;
  padding-top: 20px;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 428px) {
  .flow__list__item .num {
    width: 50px;
    height: 60px;
    font-size: 2rem;
    top: -25px;
    padding-top: 17px;
  }
}
@media (max-width: 428px) {
  .flow__list__item img {
    max-width: 100px;
  }
}
.flow__list__item p {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 428px) {
  .flow__list__item p {
    font-size: 1.6rem;
  }
}

.flow__list__arrow {
  padding: 0 20px;
}
@media (max-width: 834px) {
  .flow__list__arrow {
    padding: 0 0 20px;
  }
}
@media (max-width: 834px) {
  .flow__list__arrow img {
    transform: rotate(90deg);
  }
}

/* =======================================================

よくある質問

======================================================= */
.faq {
  padding: 60px 0;
}

.faq__item {
  border-bottom: #ddd 1px solid;
  padding: 25px 0;
}

.faq__head {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.faq__head .icon {
  width: 60px;
  height: 70px;
  background: url(../images/logobg__blue.png) no-repeat center;
  background-size: contain;
  color: var(--blue01);
  text-align: center;
  padding-top: 15px;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
@media (max-width: 428px) {
  .faq__head .icon {
    width: 45px;
    height: 50px;
    font-size: 2.6rem;
    padding-top: 10px;
  }
}
.faq__head h3 {
  width: auto;
  flex: 1;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6em;
}
@media (max-width: 428px) {
  .faq__head h3 {
    font-size: 1.6rem;
  }
}
.faq__head i {
  color: var(--blue01);
  font-size: 2rem;
}

.faq__content {
  padding-left: 70px;
  display: none;
  overflow: hidden;
}
@media (max-width: 428px) {
  .faq__content {
    padding-left: 55px;
    padding-top: 10px;
  }
}
.faq__content p {
  font-size: 1.6rem;
}
@media (max-width: 428px) {
  .faq__content p {
    font-size: 1.5rem;
  }
}

.faq__item.is-open .faq__head i {
  transform: rotate(180deg);
}

/* =======================================================

footer

======================================================= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 428px) {
  .footer {
    padding: 20px 20px 60px;
  }
}
.footer p {
  text-align: center;
}
.footer .bold {
  font-weight: bold;
}
.footer a {
  text-decoration: underline;
  text-align: center;
}