@charset "UTF-8";
:root {
  /* font */
  --FONT_FAMILY: "Yu Gothic", sans-serif;
  /* color */
  --COLOR_PRIMARY: #fff;
  --COLOR_SECONDARY: #ddd;
  --COLOR_FONT: #666666;
  --COLOR_GRAY: #707070;
  --COLOR_STRONG: #e11515;
  --COLOR_BTN: #FDB0A3;
  --COLOR_BTN2: #D88273;
  --COLOR_BTN3: #B0D2E8;
  --COLOR_BEIGE: #FEF4E7;
  /* width */
  --FONT_SIZE: px-to-rem(16);
  /* width */
  --WIDTH_CONTENT: 1400px;
  /* margin */
  --MODULE_MARGIN: 24px;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
dl,
dt,
dd,
button,
figure {
  margin: 0;
  padding: 0;
}

img,
button {
  border: 0;
}

button {
  background-color: transparent;
}
button:not([disabled]) {
  cursor: pointer;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  color: var(--COLOR_FONT);
  font-family: var(--FONT_FAMILY);
  font-feature-settings: "palt";
  font-size: var(--FONT_SIZE);
  height: 100%;
  line-height: var(--LINE_HEIGHT);
  overflow-x: hidden;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
strong,
b {
  font-weight: bold;
}

em {
  font-style: normal;
  color: var(--COLOR_BRAND_PRIMARY);
}

strong {
  color: var(--COLOR_ROLE_DANGER_DARK);
}

sub,
sup {
  bottom: -0.2em;
  font-size: 50%;
}

img,
svg {
  height: auto;
  max-width: 100%;
  width: auto;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}
a img {
  pointer-events: none;
}

[type=text],
[type=date],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=week],
select {
  line-height: 1;
}

[type=text],
[type=date],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=week],
select,
textarea {
  appearance: none;
  border-radius: 0;
  color: currentColor;
  font-size: 1rem;
}

[type=date]::-webkit-inner-spin-button, [type=date]::-webkit-clear-button {
  appearance: none;
}
[type=date]::-webkit-calendar-picker-indicator {
  height: 100%;
  left: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

::placeholder {
  opacity: 1;
}

textarea {
  overflow: auto hidden;
  resize: vertical;
}

summary::-webkit-details-marker {
  display: none;
}

li {
  list-style: none;
}

.m-heading-01 {
  margin: 0 auto 96px;
}
.m-heading-01__inner {
  width: fit-content;
  margin: 0 auto;
}
.m-heading-01__text {
  color: var(--COLOR_FONT);
  font-size: 3rem;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 8px dotted var(--COLOR_BTN);
}

.m-heading-02 {
  margin: 0 auto 64px;
}
.m-heading-02__inner {
  width: fit-content;
  margin: 0 auto;
}
.m-heading-02__text {
  color: var(--COLOR_FONT);
  font-size: 2rem;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 8px dotted var(--COLOR_BTN);
}

.m-heading-03 {
  margin: 0 auto 48px;
}
.m-heading-03__inner {
  width: fit-content;
  margin: 0 auto;
}
.m-heading-03__text {
  color: var(--COLOR_FONT);
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 8px dotted var(--COLOR_BTN);
}

.m-text {
  color: var(--COLOR_FONT);
}

.m-texts {
  color: var(--COLOR_FONT);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-leadText {
  color: var(--COLOR_FONT);
  font-size: 2rem;
}

.m-leadCenterText {
  color: var(--COLOR_FONT);
  font-size: 2rem;
  text-align: center;
}

.m-link {
  margin-top: 30px;
  margin-bottom: 30px;
}
.m-link__textLink {
  position: relative;
  color: #333;
  text-decoration: none;
}
@media (any-hover: hover) {
  .m-link__textLink:hover {
    color: rgb(147, 205, 147);
  }
}
.m-link__textLink:focus-visible {
  color: rgb(147, 205, 147);
}
.m-link__textLink:active {
  color: rgb(147, 205, 147);
}
.m-link__textLink::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ceb849;
  transition: width 0.3s;
}
@media (any-hover: hover) {
  .m-link__textLink::after:hover {
    width: 100%;
  }
}
.m-link__textLink::after:focus-visible {
  width: 100%;
}
.m-link__textLink::after:active {
  width: 100%;
}

.list-news-01 {
  margin-bottom: 2em;
}
.list-news-01 > li {
  padding: 1.25em 0;
  border-bottom: solid 2px --COLOR_SECONDARY;
}
.list-news-01 > li .date {
  display: inline-block;
  margin-right: 20px;
  font-size: 1.5rem;
  color: --COLOR_SECONDARY;
  vertical-align: middle;
}
.list-news-01 > li [class^=label-] {
  display: inline-block;
  min-width: 90px;
  padding: 0 6px;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
}
.list-news-01 > li .label-01 {
  line-height: 1.5;
  color: --COLOR_SECONDARY;
  border: solid 2px --COLOR_SECONDARY;
}
.list-news-01 > li .label-02 {
  color: --COLOR_SECONDARY;
  background-color: --COLOR_SECONDARY;
}
.list-news-01 > li .label-03 {
  color: --COLOR_SECONDARY;
  background-color: --COLOR_SECONDARY;
}
.list-news-01 > li .label-04 {
  background-color: --COLOR_SECONDARY;
}
.list-news-01 > li .content {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.list-news-01 > li .content a {
  color: inherit;
  text-decoration: underline;
  vertical-align: middle;
  transition: color 0.2s;
}
.list-news-01 > li .content .new {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: bold;
  color: --COLOR_STRONG;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .list-news-01 {
    font-size: 1.5rem;
  }
  .list-news-01 > li {
    padding: 0.5em 0;
  }
  .list-news-01 > li .date {
    font-size: 1.4rem;
  }
  .list-news-01 > li .content {
    margin-top: 0.2em;
  }
  .list-news-01 > li .content .new {
    font-size: 1.4rem;
  }
}

.fp-box {
  border-radius: 10px;
  background-color: var(--COLOR_BEIGE);
}
.fp-box__inner {
  padding: 40px;
}
.fp-box__title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .fp-box__title {
    font-size: 1.875rem;
  }
}

.m-box {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .m-box {
    margin-bottom: 64px;
  }
}
.m-box__inner {
  background-color: var(--COLOR_BEIGE);
  width: 100%;
  border-radius: 32px;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.m-box__inner [class^=m-] {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .m-box__inner {
    padding: 40px 32px;
  }
}
.m-box--color01 .m-box__inner {
  background-color: #FEF2EE;
  border-radius: 24px;
}
.m-box--color02 .m-box__inner {
  background-color: #ECF5F5;
  border-radius: 24px;
}
.m-box--color03 .m-box__inner {
  background-color: #EEFBE7;
  border-radius: 24px;
}
.m-box--color04 .m-box__inner {
  background-color: var(--COLOR_PRIMARY);
  border-radius: 24px;
}
.m-box--center {
  text-align: center;
}

.m-card {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .m-card {
    margin-bottom: 80px;
  }
}
.m-card__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 64px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .m-card__inner {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 64px;
  }
}
.m-card__item {
  text-align: center;
}
.m-card__title {
  margin-bottom: 32px;
  font-size: 1.5rem;
}
.m-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.m-card__images {
  max-width: 120px;
  max-height: 120px;
  min-width: 120px;
  min-height: 120px;
}

.m-order {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .m-order {
    margin-bottom: 80px;
  }
}
.m-order__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 64px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .m-order__inner {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 64px;
  }
}
.m-order__item {
  text-align: center;
  background-color: var(--COLOR_BEIGE);
  width: 100%;
  border-radius: 32px;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.m-order__item [class^=m-]:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .m-order__item {
    padding: 64px 32px;
    gap: 26px;
  }
}
.m-order__item::after {
  content: "";
  width: 24px;
  height: 20px;
  position: absolute;
  top: none;
  right: 50%;
  bottom: -15%;
  transform: translateX(50%) rotate(0deg);
  background-image: url(/images/icon-triangle.png);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .m-order__item::after {
    transform: translateY(-50%) rotate(-90deg);
    top: 50%;
    right: -30px;
  }
}
.m-order__item:last-child::after {
  display: none;
}
.m-order__icon {
  width: 64px;
  height: 64px;
  background-color: var(--COLOR_BTN);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .m-order__icon {
    top: -46px;
    width: 84px;
    height: 84px;
  }
}
.m-order__iconText {
  padding-top: 8px;
  color: var(--COLOR_PRIMARY);
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .m-order__iconText {
    padding-top: 16px;
    font-size: 2.5rem;
  }
}
.m-order__title {
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .m-order__title {
    font-size: 2rem;
  }
}
.m-order__text {
  font-size: 1.125rem;
}
.m-order__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.m-order__images {
  max-width: 120px;
  max-height: 120px;
  min-width: 120px;
  min-height: 120px;
}

.m-accordon {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .m-accordon {
    margin-bottom: 80px;
  }
}
.m-accordon__summary {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
}
.m-accordon__summary::-webkit-details-marker {
  display: none;
}
.m-accordon__summaryIcon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--COLOR_BTN3);
  position: relative;
}
@media screen and (min-width: 768px) {
  .m-accordon__summaryIcon {
    width: 64px;
    height: 64px;
  }
}
.m-accordon__summaryIcontext {
  color: var(--COLOR_PRIMARY);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.m-accordon__contentInner {
  border-radius: 24px;
  background-color: var(--COLOR_BEIGE);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .m-accordon__contentInner {
    flex-direction: row;
    align-items: flex-start;
  }
}
.m-accordon__contentIcon {
  display: block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background-color: var(--COLOR_BTN);
  position: relative;
}
@media screen and (min-width: 768px) {
  .m-accordon__contentIcon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
  }
}
.m-accordon__contentIcontext {
  color: var(--COLOR_PRIMARY);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .m-accordon__contentIcontext {
    font-size: 2rem;
  }
}

.m-accordon[open] {
  gap: 24px;
}

.m-accordonList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .m-accordonList {
    margin-bottom: 80px;
  }
}
.m-accordonList .m-accordon {
  margin-bottom: 0;
}

.fp-image {
  text-align: center;
}

.m-media {
  margin: 0 auto 64px;
}
.m-media__inner {
  text-align: center;
}
.m-media__link {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.m-media__link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.m-media__media {
  width: fit-content;
  margin: 0 auto;
}
.m-media__text {
  color: var(--COLOR_FONT);
  font-size: 1.5rem;
}

.m-media-reverse {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .m-media-reverse {
    margin-bottom: 80px;
  }
}
.m-media-reverse__inner {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
}
.m-media-reverse__front, .m-media-reverse__back {
  transition: all 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  backface-visibility: hidden;
}
.m-media-reverse__front {
  transform: rotateY(-180deg);
}
.m-media-reverse:hover .m-media-reverse__front, .m-media-reverse:focus .m-media-reverse__front {
  transform: rotateY(0);
}
.m-media-reverse:hover .m-media-reverse__back, .m-media-reverse:focus .m-media-reverse__back {
  transform: rotateY(180deg);
}
.m-media-reverse__frontContent {
  background-color: var(--COLOR_BTN2);
  width: 100%;
  height: 100%;
  min-width: 200px;
  min-height: 200px;
  padding: 15px;
  border-radius: 20%;
  display: flex;
  flex-direction: column;
  display: 8px;
}
.m-media-reverse__frontTitle {
  font-size: 1.5rem;
  color: #ffffff;
}
.m-media-reverse__frontText {
  color: #ffffff;
}

.fp-btn {
  padding-top: 40px;
}
.fp-btn__inner {
  display: inline-block;
  background-color: var(--COLOR_BTN);
  text-decoration: none;
  border-radius: 40px;
  max-width: fit-content;
  min-width: 224px;
  width: 100%;
  box-shadow: 0 4px 0 var(--COLOR_BTN2);
  transition: box-shadow ease 0.3s, transform ease 0.3s;
  padding: 15px 40px;
}
@media (any-hover: hover) {
  .fp-btn__inner:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.fp-btn__inner:focus-visible {
  box-shadow: none;
  transform: translateY(4px);
}
.fp-btn__inner:active {
  box-shadow: none;
  transform: translateY(4px);
}
.fp-btn__text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--COLOR_PRIMARY);
}

.btn-box {
  padding-top: 40px;
  text-align: center;
}
.btn-box-more {
  display: inline-block;
  background-color: var(--COLOR_BTN);
  text-decoration: none;
  border-radius: 40px;
  max-width: fit-content;
  min-width: 224px;
  width: 100%;
  box-shadow: 0 4px 0 var(--COLOR_SECONDARY);
  transition: box-shadow ease 0.3s, transform ease 0.3s;
}
@media (any-hover: hover) {
  .btn-box-more:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.btn-box-more:focus-visible {
  box-shadow: none;
  transform: translateY(4px);
}
.btn-box-more:active {
  box-shadow: none;
  transform: translateY(4px);
}
.btn-box-more__item {
  padding: 15px 40px;
  width: 100%;
}
.btn-box-more__text {
  color: var(--COLOR_PRIMARY);
}

.m-btn {
  margin-bottom: 40px;
  text-align: center;
}
.m-btn__inner {
  display: inline-block;
  background-color: var(--COLOR_BTN);
  text-decoration: none;
  border-radius: 40px;
  max-width: fit-content;
  min-width: 224px;
  width: 100%;
  box-shadow: 0 4px 0 var(--COLOR_BTN2);
  transition: box-shadow ease 0.3s, transform ease 0.3s;
  padding: 15px 40px;
}
@media (any-hover: hover) {
  .m-btn__inner:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.m-btn__inner:focus-visible {
  box-shadow: none;
  transform: translateY(4px);
}
.m-btn__inner:active {
  box-shadow: none;
  transform: translateY(4px);
}
.m-btn__text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--COLOR_PRIMARY);
  display: flex;
  align-items: center;
  gap: 12px;
}
.m-btn__text::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/wp-content/uploads/2026/01/img-arrow.png") center center/cover no-repeat;
}

.fp-lyt-media__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 40px;
}
@media screen and (min-width: 768px) {
  .fp-lyt-media__inner {
    flex-direction: row;
  }
}
.fp-lyt-media--reverse .fp-lyt-media__inner {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .fp-lyt-media--reverse .fp-lyt-media__inner {
    flex-direction: row-reverse;
  }
}

.m-lyt-media {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .m-lyt-media {
    margin-bottom: 80px;
  }
}
.m-lyt-media__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .m-lyt-media__inner {
    flex-direction: row;
    gap: 32px;
  }
}
.m-lyt-media--reverse .m-lyt-media__inner {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .m-lyt-media--reverse .m-lyt-media__inner {
    flex-direction: row-reverse;
  }
}
.m-lyt-media__text {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-lyt-media__text {
    width: 50%;
    text-align: left;
  }
}
.m-lyt-media__media {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-lyt-media__media {
    width: 50%;
    text-align: right;
  }
}

.m-lyt-column {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .m-lyt-column {
    margin-bottom: 80px;
  }
}
.m-lyt-column__inner {
  display: grid;
  grid-row-gap: 64px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .m-lyt-column__inner {
    grid-column-gap: 32px;
    grid-row-gap: 64px;
  }
}
.m-lyt-column__inner > * {
  margin-bottom: 0;
}
.m-lyt-column__item {
  width: 100%;
}

.m-lyt-column[data-column="1"] .m-lyt-column__inner {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .m-lyt-column[data-column="1"] .m-lyt-column__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-lyt-column[data-column="2"] .m-lyt-column__inner {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .m-lyt-column[data-column="2"] .m-lyt-column__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.m-lyt-column[data-column="3"] .m-lyt-column__inner {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .m-lyt-column[data-column="3"] .m-lyt-column__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .m-lyt-column[data-column="3"] .m-lyt-column__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.no-gap {
  gap: 0;
}

.no-top {
  margin-top: 0 !important;
}

.no-bottom {
  margin-bottom: 0 !important;
}

.no-left {
  margin-left: 0 !important;
}

.no-right {
  margin-right: 0 !important;
}

.hidden {
  display: none;
}

.news-list-01 {
  margin-top: 20px;
  text-decoration: none;
  list-style: none;
  border-top: 1px #000 solid;
}
.news-list-01__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  border-bottom: 1px #000 solid;
  padding: 15px 0px;
}
.news-list-01__day {
  font-size: 18px;
  color: #000;
}
.news-list-01__type {
  font-size: 14px;
  background-color: #6e569d;
  color: #ffffff;
  min-width: 110px;
  width: 10%;
  text-align: center;
  border-radius: 10px;
}
.news-list-01__text {
  font-weight: bold;
  font-size: 20px;
  color: #000;
}

.l-content__inner {
  --content-width: calc(1152px + calc( 48px * 2));
  --content-padding-inline: 48px;
  max-width: var(--content-width);
  padding: 32px var(--content-padding-inline) 56px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-content__inner {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.m-heading-lv2 {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .m-heading-lv2 {
    margin-top: 48px;
  }
}

.m-heading-lv2__heading {
  --font-weight-bold: 600;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.37;
  letter-spacing: 0.68px;
}
@media screen and (min-width: 768px) {
  .m-heading-lv2__heading {
    font-size: 3.4rem;
  }
}

/* ===============================================
# loader
=============================================== */
.c-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.c-loader__dot {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  pointer-events: none;
}
.c-loader__dot > .c-loader__dotItem {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}
.c-loader__dot > .c-loader__dotItem + .c-loader__dotItem {
  margin-left: 3rem;
}

.fv {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100vh;
}

/* ===============================================
# bubble backgrond 
=============================================== */
.c-mv {
  position: relative;
  min-height: 100%;
}
.c-mv__bubble {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
.c-mv__bubbleInner {
  width: 100%;
  height: 100%;
}
.c-mv__content {
  position: relative;
  box-sizing: content-box;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0px 16px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-mv__content {
    padding: 4rem 10rem;
  }
}
.c-mv__title {
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .c-mv__title {
    margin-bottom: 200px;
  }
}
.c-mv__titleName {
  font-size: 2.625rem;
}
@media screen and (min-width: 768px) {
  .c-mv__titleName {
    font-size: 4rem;
  }
}
.c-mv__text {
  margin-top: 0.8rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-mv__text {
    font-size: 2rem;
  }
}
.c-mv__bubbleItem {
  animation: float 3s ease-in-out infinite alternate;
}
.c-mv__bubbleItem:nth-child(2) {
  animation-duration: 6.2s;
  animation-delay: 2s;
}
.c-mv__bubbleItem:nth-child(3) {
  animation-duration: 7.3s;
  animation-delay: 0.4s;
}
.c-mv__bubbleItem:nth-child(4) {
  animation-duration: 6s;
  animation-delay: 1s;
}
.c-mv__bubbleItem:nth-child(5) {
  animation-duration: 6.4s;
  animation-delay: 0.3s;
}
.c-mv__bubbleItem:nth-child(6) {
  animation-duration: 5.5s;
  animation-delay: 1.3s;
}
.c-mv__bubbleItem:nth-child(7) {
  animation-duration: 6.1s;
  animation-delay: 0.7s;
}
.c-mv__bubbleItem:nth-child(8) {
  animation-duration: 5.3s;
  animation-delay: 0.5s;
}
.c-mv__bubbleItem:nth-child(9) {
  animation-duration: 6.5s;
  animation-delay: 1.5s;
}
.c-mv__bubbleItem:nth-child(10) {
  animation-duration: 4.5s;
  animation-delay: 1s;
}
.c-mv__bubbleItem:nth-child(11) {
  animation-duration: 3.3s;
  animation-delay: 0.4s;
}
.c-mv__bubbleItem:nth-child(12) {
  animation-duration: 4.4s;
  animation-delay: 0.8s;
}
.c-mv__bubbleItem:nth-child(13) {
  animation-duration: 5.5s;
  animation-delay: 2s;
}
.c-mv__bubbleItem:nth-child(14) {
  animation-duration: 5.5s;
  animation-delay: 0.6s;
}
.c-mv__bubbleItem:nth-child(15) {
  animation-duration: 7.1s;
  animation-delay: 1.1s;
}
.c-mv__bubbleItem:nth-child(16) {
  animation-duration: 6.2s;
  animation-delay: 0.7s;
}
.c-mv__bubbleItem:nth-child(17) {
  animation-duration: 7s;
  animation-delay: 3s;
}
.c-mv__bubbleItem:nth-child(18) {
  animation-duration: 3.5s;
  animation-delay: 0.3s;
}
.c-mv__bubbleItem:nth-child(19) {
  animation-duration: 5.4s;
  animation-delay: 0s;
}
.c-mv__bubbleItem:nth-child(20) {
  animation-duration: 4.7s;
  animation-delay: 0.8s;
}
@media screen and (min-width: 768px) {
  .c-mv__bubbleItem {
    animation: float-lg 3s ease-in-out infinite alternate;
  }
  .c-mv__bubbleItem:nth-child(2) {
    animation-duration: 10.2s;
    animation-delay: 2s;
  }
  .c-mv__bubbleItem:nth-child(3) {
    animation-duration: 11.3s;
    animation-delay: 0.4s;
  }
  .c-mv__bubbleItem:nth-child(4) {
    animation-duration: 9s;
    animation-delay: 1s;
  }
  .c-mv__bubbleItem:nth-child(5) {
    animation-duration: 10.4s;
    animation-delay: 0.3s;
  }
  .c-mv__bubbleItem:nth-child(6) {
    animation-duration: 9.5s;
    animation-delay: 1.3s;
  }
  .c-mv__bubbleItem:nth-child(7) {
    animation-duration: 8.8s;
    animation-delay: 0.7s;
  }
  .c-mv__bubbleItem:nth-child(8) {
    animation-duration: 8.3s;
    animation-delay: 0.5s;
  }
  .c-mv__bubbleItem:nth-child(9) {
    animation-duration: 11.5s;
    animation-delay: 1.5s;
  }
  .c-mv__bubbleItem:nth-child(10) {
    animation-duration: 8.7s;
    animation-delay: 1s;
  }
  .c-mv__bubbleItem:nth-child(11) {
    animation-duration: 9.1s;
    animation-delay: 0.4s;
  }
  .c-mv__bubbleItem:nth-child(12) {
    animation-duration: 10.8s;
    animation-delay: 0.8s;
  }
  .c-mv__bubbleItem:nth-child(13) {
    animation-duration: 9.5s;
    animation-delay: 2s;
  }
  .c-mv__bubbleItem:nth-child(14) {
    animation-duration: 8.6s;
    animation-delay: 0.6s;
  }
  .c-mv__bubbleItem:nth-child(15) {
    animation-duration: 11.1s;
    animation-delay: 1.1s;
  }
  .c-mv__bubbleItem:nth-child(16) {
    animation-duration: 10.2s;
    animation-delay: 0.7s;
  }
  .c-mv__bubbleItem:nth-child(17) {
    animation-duration: 11s;
    animation-delay: 3s;
  }
  .c-mv__bubbleItem:nth-child(18) {
    animation-duration: 8.5s;
    animation-delay: 0.3s;
  }
  .c-mv__bubbleItem:nth-child(19) {
    animation-duration: 9.4s;
    animation-delay: 0s;
  }
  .c-mv__bubbleItem:nth-child(20) {
    animation-duration: 8.7s;
    animation-delay: 0.8s;
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5px, -5px);
  }
  100% {
    transform: translate(0, -10px);
  }
}
@keyframes float-lg {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0, -20px);
  }
}

.cls-1 {
  fill: url(#gradation);
  transform: translate(0px, -600px);
}
@media screen and (min-width: 768px) {
  .cls-1 {
    transform: none;
  }
}

.cls-2 {
  fill: url(#gradation_2);
  transform: translate(0px, -700px);
}
@media screen and (min-width: 768px) {
  .cls-2 {
    transform: none;
  }
}

.cls-3 {
  fill: url(#gradation_3);
  transform: translate(-100px, 800px);
}
@media screen and (min-width: 768px) {
  .cls-3 {
    transform: none;
  }
}

.cls-4 {
  fill: url(#gradation_4);
  transform: translate(0px, -400px);
}
@media screen and (min-width: 768px) {
  .cls-4 {
    transform: none;
  }
}

.cls-5 {
  fill: url(#gradation_5);
  transform: translate(-200px, 0px);
}
@media screen and (min-width: 768px) {
  .cls-5 {
    transform: none;
  }
}

.cls-6 {
  fill: url(#gradation_6);
  transform: translate(0px, 10%);
}
@media screen and (min-width: 768px) {
  .cls-6 {
    transform: none;
  }
}

.cls-7 {
  fill: url(#gradation_7);
  transform: translate(-700px, -200px);
}
@media screen and (min-width: 768px) {
  .cls-7 {
    transform: none;
  }
}

.cls-8 {
  fill: none;
}

.cls-9 {
  fill: url(#gradation_8);
  transform: translate(0px, -100px);
}
@media screen and (min-width: 768px) {
  .cls-9 {
    transform: none;
  }
}

.cls-10 {
  fill: url(#gradation_9);
  transform: translate(0px, 100px);
}
@media screen and (min-width: 768px) {
  .cls-10 {
    transform: none;
  }
}

.cls-11 {
  fill: url(#gradation_10);
  transform: translate(0px, 700px);
}
@media screen and (min-width: 768px) {
  .cls-11 {
    transform: none;
  }
}

.cls-12 {
  fill: url(#gradation_11);
  transform: translate(0px, -300px);
}
@media screen and (min-width: 768px) {
  .cls-12 {
    transform: none;
  }
}

.cls-13 {
  fill: url(#gradation_12);
  transform: translate(0px, 100px);
}
@media screen and (min-width: 768px) {
  .cls-13 {
    transform: none;
  }
}

.cls-14 {
  fill: url(#gradation_13);
  transform: translate(0px, 100px);
}
@media screen and (min-width: 768px) {
  .cls-14 {
    transform: none;
  }
}

.cls-15 {
  display: block;
  fill: url(#gradation_14);
  transform: translate(600px, 900px);
}
@media screen and (min-width: 768px) {
  .cls-15 {
    display: none;
  }
}

.cls-16 {
  display: block;
  fill: url(#gradation_15);
  transform: translate(500px, -500px);
}
@media screen and (min-width: 768px) {
  .cls-16 {
    display: none;
  }
}

.cls-17 {
  display: block;
  fill: url(#gradation_16);
  transform: translate(200px, 1000px);
}
@media screen and (min-width: 768px) {
  .cls-17 {
    display: none;
  }
}

.cls-18 {
  display: block;
  fill: url(#gradation_17);
  transform: translate(113px, 760px);
}
@media screen and (min-width: 768px) {
  .cls-18 {
    display: none;
  }
}

.cls-19 {
  display: block;
  fill: url(#gradation_18);
  transform: translate(300px, -760px);
}
@media screen and (min-width: 768px) {
  .cls-19 {
    display: none;
  }
}

.cls-20 {
  display: block;
  fill: url(#gradation_19);
  transform: translate(-300px, 700px);
}
@media screen and (min-width: 768px) {
  .cls-20 {
    display: none;
  }
}

/* ===============================================
# m-circle
=============================================== */
.m-circle {
  width: 100%;
  min-height: 78vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .m-circle {
    margin-bottom: 80px;
    min-height: 100vh;
  }
}
.m-circle__inner {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.m-circle__content {
  display: flex;
  flex-direction: column;
  gap: 84px;
}
@media screen and (min-width: 768px) {
  .m-circle__content {
    gap: 24px;
  }
}
.m-circle__title {
  font-size: 30px;
  text-align: center;
  font-family: "Signika Negative";
}
.m-circle__image {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.m-circle__imageInner {
  width: fit-content;
  margin: 0 auto;
  border-radius: 50%;
}
.m-circle__text {
  font-size: 18px;
  text-align: center;
  font-family: "Signika Negative";
}
.m-circle__circle {
  width: 350px;
  height: auto;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  z-index: -1;
  transform-origin: center center;
}
@media screen and (min-width: 768px) {
  .m-circle__circle {
    width: 800px;
    min-width: 700px;
    top: 50%;
    padding: 0 40px;
  }
}
.m-circle__circleInner {
  fill: none; /* 塗りつぶしをなしにする */
  stroke-width: 30; /* 円の線の太さ50 */
  stroke-dasharray: 1060 1413; /* 円の線のスタイルを指定。ここでは、線を75%(1060)と円周を(1413)に設定 */
  stroke-linecap: round; /* 円の線端を丸くする */
  /* transform: rotate(-90deg); /* 円を-90度回転させる 反転させたいときに使用 */
  transform-origin: center center; /* 回転の中心点を円の中心に設定 */
}

/* ===============================================
# splide
=============================================== */
.splide {
  margin-bottom: 40px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .splide {
    margin-bottom: 60px;
  }
}
.splide__images {
  max-width: 500px;
  width: 100%;
}
.splide__track {
  height: 100%;
}
.splide__body {
  margin-top: 10px;
}
.splide__date {
  font-size: 1.125rem;
  color: var(--COLOR_FONT);
}
.splide__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--COLOR_FONT);
}
.splide__slide img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ===============================================
# js-scroll-fadeinup
=============================================== */
.js-scroll-fadeinup {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.js-scroll-fadeinup.visible {
  opacity: 1;
  transform: translateY(0);
}

.omikuji-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--COLOR_BEIGE);
}

.omikuji {
  font-family: var(--FONT_FAMILY);
  text-align: center;
  padding: 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.omikuji h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.omikuji__result {
  font-size: 2rem;
  margin: var(--MODULE_MARGIN) 0;
  height: 3rem;
  overflow: hidden;
  position: relative;
  min-width: 200px;
}
.omikuji__resultText {
  display: block;
  transition: transform 0.1s;
}
.omikuji__btn {
  font-size: 1.25rem;
  padding: 15px 40px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--COLOR_BTN);
  color: var(--COLOR_PRIMARY);
  border-radius: 40px;
  box-shadow: 0 4px 0 var(--COLOR_BTN2);
  border: none;
}
@media (any-hover: hover) {
  .omikuji__btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.omikuji__btn:focus-visible {
  box-shadow: none;
  transform: translateY(4px);
}
.omikuji__btn:active {
  box-shadow: none;
  transform: translateY(4px);
}
.omikuji__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.spinning {
  animation: spin 0.1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes bounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.show-result {
  animation: bounce 0.8s ease-out, shake 0.5s ease-in-out 0.8s;
}

.body {
  font-weight: bold;
}

.main-visual {
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .main-visual {
    margin-bottom: 32px;
  }
}
.main-visual__inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url("/wp-content/uploads/2026/01/img-dummy.png") center center/cover no-repeat;
}
.main-visual__content {
  padding: 200px 0px 0px 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-visual__text {
  font-size: 3rem;
}
.main-visual__btn {
  padding-top: 70px;
  padding-left: 120px;
}
.main-visual__btnInner {
  display: inline-block;
  background-color: var(--COLOR_BTN);
  text-decoration: none;
  border-radius: 40px;
  max-width: fit-content;
  min-width: 224px;
  width: 100%;
  box-shadow: 0 4px 0 var(--COLOR_BTN2);
  transition: box-shadow ease 0.3s, transform ease 0.3s;
  padding: 15px 40px;
}
@media (any-hover: hover) {
  .main-visual__btnInner:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.main-visual__btnInner:focus-visible {
  box-shadow: none;
  transform: translateY(4px);
}
.main-visual__btnInner:active {
  box-shadow: none;
  transform: translateY(4px);
}
.main-visual__btnText {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--COLOR_PRIMARY);
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-visual__btnText::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/wp-content/uploads/2026/01/img-arrow.png") center center/cover no-repeat;
}
.main-visual__wave {
  margin-bottom: -6px;
}

.container {
  padding: 0 16px;
  margin: auto;
  max-width: 1280px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 120px;
  }
}

.section01 {
  margin-bottom: 120px;
}
.section01:first-of-type {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .section01:first-of-type {
    margin-top: 160px;
  }
}
@media screen and (min-width: 768px) {
  .section01 {
    margin-bottom: 160px;
  }
}
.section01 [class^=m-]:last-child {
  margin-bottom: 0;
}

.section02 {
  background-color: var(--COLOR_BEIGE);
  width: 100vw;
  margin: 0 calc(50% - 50vw) 120px;
}
@media screen and (min-width: 768px) {
  .section02 {
    margin: 0 calc(50% - 50vw) 160px;
  }
}
.section02__inner {
  padding: 120px;
}
.section02__inner [class^=m-]:last-child {
  margin-bottom: 0;
}
.section02__wave {
  margin-bottom: -7px;
}

@media screen and (min-width: 768px) {
  .header {
    margin: 0px 120px;
  }
}
@media screen and (min-width: 768px) {
  .header--nonePc {
    display: none;
  }
}
.header__inner {
  display: none;
  width: 100%;
}
.header__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  z-index: 10;
  width: 100%;
  transition: all 0.5s ease;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .header__nav {
    gap: 24px;
    padding: 64px 220px;
  }
}
.header__item {
  padding-bottom: 8px;
  border-bottom: 3px #fdb0a3 dotted;
  text-align: center;
  width: 100%;
}
.header__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .header__item {
    padding-bottom: 24px;
  }
}
.header__text {
  color: var(--COLOR_FONT);
  font-weight: bold;
  position: relative;
  z-index: 0;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header__text:hover {
    color: #fdb0a3;
  }
  .header__text:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #fef4e7;
    border-radius: 50%;
    z-index: -1;
  }
}
.header__text:focus-visible {
  color: #fdb0a3;
}
.header__text:focus-visible::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #fef4e7;
  border-radius: 50%;
  z-index: -1;
}
.header__text:active {
  color: #fdb0a3;
}
.header__text:active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #fef4e7;
  border-radius: 50%;
  z-index: -1;
}

.header.active .header__inner {
  display: block;
  height: 80px;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header.active .header__inner {
    height: 160px;
  }
}
.header.active .header__nav {
  position: fixed;
  top: 79px;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header.active .header__nav {
    top: 159px;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .hamburger {
    top: 30px;
    right: 10%;
  }
}
.hamburger__btn {
  position: relative;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .hamburger__btn {
    width: 60px;
    height: 60px;
  }
}
.hamburger__btn::before, .hamburger__btn::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--COLOR_FONT);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .hamburger__btn::before, .hamburger__btn::after {
    width: 32px;
  }
}
.hamburger__btn::before {
  top: 30%;
}
.hamburger__btn::after {
  top: 65%;
}
.hamburger__line {
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--COLOR_FONT);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .hamburger__line {
    width: 32px;
  }
}
.hamburger__caption {
  color: var(--COLOR_FONT);
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .hamburger__caption {
    font-size: 0.75rem;
  }
}

.hamburger.active .hamburger__btn {
  background-color: #fff;
}
.hamburger.active .hamburger__btn::before {
  transform: rotate(45deg);
  top: 46%;
  left: 30%;
}
@media screen and (min-width: 768px) {
  .hamburger.active .hamburger__btn::before {
    top: 56%;
    left: 25%;
  }
}
.hamburger.active .hamburger__btn::after {
  transform: rotate(-45deg);
  top: 46%;
  left: 30%;
}
@media screen and (min-width: 768px) {
  .hamburger.active .hamburger__btn::after {
    top: 56%;
    left: 25%;
  }
}
.hamburger.active .hamburger__btn .hamburger__line {
  display: none;
}

.header__background {
  display: none;
}

.header__background.active {
  display: block;
  position: fixed; /* 画面に固定 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒 */
  z-index: 5; /* 最前面に */
}

.footer {
  background-color: var(--COLOR_BEIGE);
  width: 100%;
  padding: 60px 30px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 120px;
  }
}
.footer__inner {
  background-color: var(--COLOR_PRIMARY);
  border-radius: 50px;
  padding: 30px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__content :last-child {
  margin-bottom: 0;
}
.footer__title {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 36px;
  }
}
.footer__textArea {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__text {
  font-size: 18px;
}