@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

:root {
  --color-primary: #5738AB;
  --color-second: #52B36E;
  --color-blue: #1DA1F2;
  --color-green: #06C755;
  --color-yellow: #FFFF05;
  --color-grey: #E6E6E6;
  --color-light-grey: #999999;
  --page-bg: #FFF6F6;
  --font-gothic: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

body {
  background-image: url(../img/common/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-size: 15px;
  font-family: var(--font-gothic);
}

.l-container {
  max-width: 440px;
  margin: 90px 15% 0 auto;
  font-weight: 400;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: var(--page-bg);
}
@media screen and (max-width: 440px) {
  .l-container {
    margin: 0 auto;
  }
}

.c-heading {
  position: relative;
  margin: 60px 0 30px;
  color: var(--color-second);
  font-size: 30px;
  text-align: center;
}
.c-heading.-accent {
  width: 80%;
  margin: 40px auto;
  padding: 10px 0;
  border-left: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
}
.c-heading.-standing {
  padding: 20px 0;
  color: var(--color-primary);
  background: var(--color-yellow);
  border-radius: 20px;
  border: 3px solid var(--color-primary);
  animation: blink 2s linear infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-heading.-bar::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: var(--color-second);
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 42px;
  margin: 30px auto 0;
  border-radius: 6px;
  background: var(--color-primary);
  border: none;
  color: #fff;
  font-weight: bold;
}

.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.l-header {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 15px;
  background: var(--color-primary);
  height: 60px;
}
.l-header__logo {
  display: block;
  width: 127px;
}
.l-header__menu {
  display: none;
}

/* ハンバーガー */
.l-header__hamburger {
  display: block;
  position: absolute;
  top: 16px;
  right: 25px;
  z-index: 2;
  height: 23px;
  cursor: pointer;
  color: #fff;
  text-align: center;
}

.l-header__hamburger > div {
  margin-top: 24px;
  font-size: 8px;
}

.l-header__hamburger span {
  display: block;
  position: relative;
  top: 10px;
  width: 33px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: 0.3s;
}

.l-header__hamburger span::before,
.l-header__hamburger span::after {
  content: "";
  display: block;
  position: absolute;
  width: 33px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: 0.3s;
}

.l-header__hamburger span::before {
  bottom: 10px;
}

.l-header__hamburger span::after {
  top: 10px;
}

/* ハンバーガー 閉じる */
.l-header__hamburger.is-open span {
  background: transparent;
}

.l-header__hamburger.is-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

.l-header__hamburger.is-open span::after {
  top: 0;
  transform: rotate(135deg);
}

.l-header__menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100svh;
  padding: 40px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
  overflow-y: scroll;
}
@media screen and (max-width: 440px) {
  .l-header__menu {
    position: fixed;
  }
}


body:has(.l-header__hamburger.is-open){
  overflow: hidden;
}



.l-menu {
  position: fixed;
  width: 33%;
  max-width: 850px;
  top: 8%;
  left: 5%;
  padding: 40px;
  background: rgba(0, 0, 0, 0.55);
}
@media screen and (max-width: 1060px) {
  .l-menu {
    display: none;
  }
}

.c-menu {
  gap: 36px;
  color: #fff;
  font-family: var(--font-mincho);
}

@media (max-width: 1199.98px) {
  .c-menu {
    gap: 20px;
  }
}
.c-menu__item {
  margin-bottom: 20px;
  text-align: center;
}

.c-menu__link {
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.28;
  text-align: center;
  background-image: linear-gradient(transparent calc(100% - 1px), #fff 0);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.3s ease;
}

.c-menu__link span {
  font-size: 12px;
}

.c-menu__link:hover {
  background-size: 100% 100%;
}

.c-sub-menu{
  margin-top: 10px;
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 13px;
}

.l-header__menu .c-sub-menu{
  margin-bottom: 40px;
}

.c-sub-menu__link{
  color: #fff;
}

.c-menu_products {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.c-menu_products__item {
  position: relative;
  border: 1px solid #E7DDD5;
  border-radius: 5px;
  padding: 10px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.2);
}

.c-menu_products__img {
  margin-bottom: 5px;
}

.c-menu_products__label {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 3px 11px;
  border-radius: 99rem;
  background: #3D3124;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.c-menu_products__title {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.c-menu__bnr {
  display: block;
}

.c-menu__bnr + .c-menu__bnr {
  margin-top: 30px;
}

.l-main__inner {
  padding: 0 10px 120px;
}
.l-main__inner.static-page .c-heading {
  margin: 70px 0 30px;
}
.l-main__inner.static-page .c-heading::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: var(--color-second);
}
.l-main__inner.static-page p {
  margin-bottom: 1.5em;
}
.l-main__inner.static-page h2, .l-main__inner.static-page h3, .l-main__inner.static-page h4 {
  margin-bottom: 1.2em;
  font-size: 1em;
  font-weight: bold;
}
.l-main__container {
  padding: 10px;
  border: 1px solid #000;
  border-radius: 6px;
  background: #fff;
}

.c-fv {
  width: 100%;
}

.u-center {
  text-align: center;
}

.p-2way {
  margin: 20px 0 10px;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-primary);
}
.p-2way__heading {
  margin-bottom: 15px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.p-2way__col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.p-2way__btn {
  display: block;
  padding: 20px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 1;
}
.p-2way__btn.-mail {
  background: var(--color-blue);
}
.p-2way__btn.-line {
  background: var(--color-green);
}

.p-push {
  margin-bottom: 40px;
}
.p-push__heading {
  margin: 22px;
  padding: 20px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  line-height: 1;
}
.p-push__desc {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.p-push__lists {
  margin-bottom: 10px;
}
.p-push__lists li {
  position: relative;
  width: 40%;
  padding-top: 50px;
  background: #F5F5F5;
  text-align: center;
}
.p-push__lists .slick-list {
  margin: 0 -15px;
}
.p-push__lists .slick-slide {
  margin: 0 15px;
}
.p-push__lists .slick-next, .p-push__lists .slick-prev {
  z-index: 10;
}
.p-push__lists .slick-prev {
  left: 20px;
}
.p-push__lists .slick-next {
  right: 28px;
}
.p-push__lists .slick-prev:before,
.p-push__lists .slick-next:before {
  color: var(--color-primary);
  font-size: 30px;
}
.p-push__tags {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
}
.p-push__tag {
  border: 1px solid var(--color-primary);
  border-radius: 99rem;
  padding: 4px 8px;
  background: #fff;
  color: var(--color-primary);
  font-size: 11px;
}
.p-push__img {
  height: 160px;
  width: auto;
  margin: 0 auto;
}
.p-push__name {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: bold;
}
.p-push__type {
  margin-bottom: 3px;
  font-size: 8px;
  font-weight: bold;
}
.p-push__label {
  width: 90%;
  margin: 0 auto 12px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
}
.p-push__price {
  margin-bottom: 3px;
  font-size: 8px;
}
.p-push__price.-standard span {
  font-size: 11px;
  font-weight: bold;
}
.p-push__price.-push {
  font-weight: bold;
}
.p-push__price.-push span {
  font-size: 20px;
}
.p-push__text {
  margin-top: 25px;
  margin-bottom: 3px;
  padding: 20px;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.p-push__note {
  padding: 0 20px;
  font-size: 10px;
}

.p-achieve {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-primary);
  border-radius: 20px;
  padding: 20px;
}
.p-achieve__img {
  width: 105px;
}
.p-achieve__inner {
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}
.p-achieve__head {
  font-weight: bold;
}
.p-achieve__price {
  position: relative;
  margin-top: 15px;
  margin-bottom: 4px;
  padding: 10px 0;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-size: 30px;
}
.p-achieve__title {
  display: inline-block;
  padding: 0 5px;
  position: absolute;
  left: 50%;
  top: -0.8em;
  transform: translateX(-50%);
  font-size: 15px;
  background: var(--color-primary);
}

.p-reason__lists {
  padding: 20px 15px;
  background: var(--color-primary);
  border-radius: 20px;
}
.p-reason__list {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--color-yellow);
  border-radius: 20px;
  color: #fff;
}
.p-reason__no {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 30px;
}
.p-reason__text {
  font-size: 25px;
  color: #000;
  font-weight: 600;
}
.p-reason__text span {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}

.p-list__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-bottom: 30px;
}
.p-list__list {
  background: #fff;
  text-align: center;
}
.p-list__head {
  padding: 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.p-list__body {
  padding: 10px;
  border-bottom: 2px solid var(--color-primary);
  background: var(--page-bg);
  font-size: 20px;
  font-weight: bold;
}
.p-list__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--color-primary);
  border-radius: 20px;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
.p-list__img {
  width: 57px;
}

.p-flow__mail {
  position: relative;
  margin-top: 50px;
  margin-bottom: 66px;
  background: #EEEFEF;
  padding: 22px 8px 32px;
  border-radius: 10px;
}
.p-flow__line {
  position: relative;
}
.p-flow__line .p-flow__label {
  top: 30px;
}
.p-flow__label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  transform: rotate(-15deg);
  width: 90px;
  height: 90px;
  border-radius: 99rem;
  background: var(--color-yellow);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}
.p-flow__btn {
  display: block;
  margin: 22px 0 36px;
  padding: 20px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 1;
}
.p-flow__heading {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.p-flow__btn.-mail {
  background: var(--color-blue);
}
.p-flow__btn.-line {
  background: var(--color-green);
}
.p-flow__steps li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.p-flow__steps li + li {
  margin-top: 15px;
}
.p-flow__subheading {
  margin: 6px 0;
  font-size: 15px;
  font-weight: bold;
}
.p-flow__text {
  font-size: 12px;
  font-weight: 500;
}

.p-faq__list {
/*  padding-left: 50px;
  padding-right: 15px;*/
}
.p-faq dt {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  background: var(--color-primary);
  padding: 20px 10px 20px 45px;
  color: #fff;
  border-radius: 20px;
  z-index: 10;
}
.p-faq dd {
  position: relative;
  margin: -10px 0 28px 0;
  padding: 20px 30px 20px 45px;
  background: #fff;
  border-radius: 20px;
  z-index: 1;
}
.p-faq dt::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 99rem;
  background: var(--color-yellow);
}
.p-faq dt::after {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 48%;
  transform: translateY(-50%);
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-shadow:
    0.5px 0   0 #fff,
   -0.5px 0   0 #fff,
    0   0.5px 0 #fff,
    0  -0.5px 0 #fff,
    0.5px 0.5px 0 #fff,
   -0.5px 0.5px 0 #fff,
    0.5px -0.5px 0 #fff,
   -0.5px -0.5px 0 #fff;
}
.p-faq dd::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 99rem;
  border: 1px solid var(--color-primary);
}
.p-faq dd::after {
  content: "A";
  position: absolute;
  left: 17.5px;
  top: 49%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: bold;
  text-shadow:
    0.5px 0   0 #000,
   -0.5px 0   0 #000,
    0   0.5px 0 #000,
    0  -0.5px 0 #000,
    0.5px 0.5px 0 #000,
   -0.5px 0.5px 0 #000,
    0.5px -0.5px 0 #000,
   -0.5px -0.5px 0 #000;
}

.l-footer {
  padding: 40px 20px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-mincho);
}
.l-footer__logo {
  display: block;
  width: 188px;
  margin-bottom: 10px;
}
.l-footer__x {
  display: block;
  width: 186px;
}
.l-footer__lists {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
}
.l-footer__lists li + li {
  margin-top: 12px;
}
.l-footer__lists.-statics {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: normal;
  color: var(--color-grey);
}
.l-footer__lists.-statics li + li {
  margin-top: 16px;
}
.l-footer__copy {
  color: var(--color-light-grey);
}

.c-scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: block;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .c-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 80px;
  }
}

.p-form__group {
  margin-bottom: 24px;
}
.p-form__label {
  display: block;
  margin-bottom: 4px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
}
.p-form__required {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 23px;
  margin-left: 10px;
  border-radius: 4px;
  background: var(--color-second);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.p-form__input input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 15px;
}
.p-form__upload {
  margin-top: 10px;
}
.p-form input[type=file] {
  width: 100%;
  cursor: pointer;
  color: #333;
}
.p-form ::file-selector-button,
.p-form ::-webkit-file-upload-button {
  color: #fff;
  border-radius: 6px;
  border: none;
  background: var(--color-primary);
  margin-right: 20px;
  padding-right: 20px;
  padding-left: 20px;
  width: auto;
  height: 42px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}
.p-form__note {
  margin-top: 10px;
  font-size: 13px;
}
.p-form__scroll {
  height: 152px;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow-y: scroll;
  border: 1px solid #000;
}
.p-form__checkblock {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-form__checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-form__checkbox input[type=checkbox] {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 6px;
}
.p-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 42px;
  margin: 30px auto 0;
  border-radius: 6px;
  color: #fff;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
}
.p-form .wpcf7-list-item {
  margin: 0;
}

.p-list {
  margin-bottom: 8px;
}
.p-list a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 6px;
  background: #fff;
}

.wp-pagenavi .pages {
  display: none;
}

.p-pagination,
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 60px 0;
}
.p-pagination__prev,
.p-pagination .previouspostslink,
.wp-pagenavi__prev,
.wp-pagenavi .previouspostslink {
  display: block;
  width: 30px;
  height: 16px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid transparent;
  border-right: 15px solid var(--color-primary);
}
.p-pagination__next,
.p-pagination .nextpostslink,
.wp-pagenavi__next,
.wp-pagenavi .nextpostslink {
  display: block;
  width: 30px;
  height: 16px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 15px solid transparent;
  border-left: 15px solid var(--color-primary);
}
.p-pagination span, .p-pagination__page,
.p-pagination .page,
.wp-pagenavi span,
.wp-pagenavi__page,
.wp-pagenavi .page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  font-weight: bold;
}
.p-pagination__page.is-active,
.p-pagination .current,
.wp-pagenavi__page.is-active,
.wp-pagenavi .current {
  color: var(--color-yellow);
}
.p-pagination__page:hover,
.p-pagination .page:hover,
.wp-pagenavi__page:hover,
.wp-pagenavi .page:hover {
  color: var(--color-yellow);
}
.p-pagination .first,
.p-pagination .last,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 5px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 6px;
}

.p-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.p-case {
  background: #fff;
}
.p-case__head {
  position: relative;
  padding: 50px 10px 25px;
}
.p-case__tags {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
}
.p-case__tag {
  border: 1px solid var(--color-primary);
  border-radius: 99rem;
  padding: 4px 8px;
  color: var(--color-primary);
  font-size: 11px;
}
.p-case__img {
  height: 100px;
}
.p-case__img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-case__title {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.p-case__label {
  width: 90%;
  margin: 0 auto 12px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.7em;
}
.p-case__price {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.p-case__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
}

.p-voice {
  margin-top: 40px;
}
.p-voice__block {
  margin: 20px 0 10px;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-primary);
}

.voice_container_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 4px;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 100px;
  background-color: #5738AB;
}

.voice_container_btn_badge {
  border-radius: 20px;
  color: white;
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, 1px 0px 0px #000, -1px 0px 0px #000, 0px 1px 0px #000, 0px -1px 0px #000;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.voice_container_btn_badge.-blue {
  background: var(--color-blue);
}
.voice_container_btn_badge.-green {
  background: #08D9BA;
}
.voice_container_btn_badge.-yellow {
  background: var(--color-yellow);
}
.voice_container_btn_badge.-star {
  padding: 0;
  font-size: 30px;
}

.voice_container_text {
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, 1px 0px 0px #000, -1px 0px 0px #000, 0px 1px 0px #000, 0px -1px 0px #000;
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;
}

.p-thanks {
  height: 387.5px;
  background-image: url("../img/common/thanks_top.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0;
  padding: 0;
}
.p-thanks__lead {
  padding-top: 24px;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}
.p-thanks .c-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65%;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
}
.p-thanks__img {
  display: flex;
  justify-content: flex-end;
}
.p-thanks__body {
  display: flex;
  justify-content: center;
  background-color: #F5F5F5;
}
.p-thanks__body img {
  width: 75%;
  padding-top: 40px;
  padding-bottom: 80px;
}

.p-about {
  margin-top: 40px;
}
.p-about__block {
  margin: 20px 0 10px;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-primary);
}/*# sourceMappingURL=style.css.map */