@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6227180527vw;
  }
}
@media (min-width: 986px) {
  html {
    font-size: 16px;
  }
}

body {
  background: #F5F1E5;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

.l-inner {
  width: 100%;
  max-width: 1036px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* fade */
.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.fade.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* floating */
.floating {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background: rgba(158, 19, 19, .7);
  padding: 15px 0;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .floating .l-inner {
    padding: 0 0.625rem;
  }
}

.floating__text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.floating__text span.sm {
  font-size: 16px;
  font-size: 1rem;
}
.floating__text span.md {
  font-size: 24px;
  font-size: 1.5rem;
}
.floating__text span.lg {
  font-size: 28px;
  font-size: 1.75rem;
}

.floating__btn {
  display: block;
  width: 500px;
  width: 31.25rem;
  max-width: 100%;
  margin: 8px auto 0;
  margin: 0.5rem auto 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .floating__btn {
    width: 25rem;
    margin-top: 0;
  }
}
.floating__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

/* footer */
.footer {
  text-align: center;
  color: #fff;
  background: #9E1313;
  padding: 55px 0 200px;
  padding: 3.4375rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.5rem 0 7.5rem;
  }
}

.footer__logo {
  width: 372px;
  width: 23.25rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 12.5rem;
  }
}

.footer__link {
  display: inline-block;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__link {
    font-size: 0.9375rem;
  }
}

.footer__copyright {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.9375rem;
    margin: 0.625rem;
  }
}

/* header */
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
  height: 6.875rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.375rem;
  }
}
.header .l-inner {
  max-width: 1250px;
  max-width: 78.125rem;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 11.25rem;
  }
}
.header__logo a {
  display: block;
}

.header__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__text {
    font-size: 0.625rem;
  }
}

/* heading */
.heading {
  background: url(../img/heading-bg.png) no-repeat center bottom/cover;
  padding: 12px 0 74px;
  padding: 0.75rem 0 4.625rem;
}
@media screen and (max-width: 767px) {
  .heading {
    padding-bottom: 3.125rem;
  }
}

.heading__img {
  width: 150px;
  width: 9.375rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .heading__img {
    width: 7.5rem;
  }
}

.heading__title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .heading__title {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}
.heading__title span {
  display: inline-block;
  line-height: 1.2;
  background: #E9BF3D;
  color: #9E1313;
  padding: 1px 8px;
  padding: 0.0625rem 0.5rem;
}
.heading__title small {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .heading__title small {
    font-size: 1rem;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* move */
.move {
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
  @media screen and (max-width: 767px) {
    0% {
      -webkit-transform: translateY(-10%);
              transform: translateY(-10%);
    }
  }
  100% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  @media screen and (max-width: 767px) {
    100% {
      -webkit-transform: translateY(10%);
              transform: translateY(10%);
    }
  }
}

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
  @media screen and (max-width: 767px) {
    0% {
      -webkit-transform: translateY(-10%);
              transform: translateY(-10%);
    }
  }
  100% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  @media screen and (max-width: 767px) {
    100% {
      -webkit-transform: translateY(10%);
              transform: translateY(10%);
    }
  }
}
/* about */
.about {
  padding: 88px 0 125px;
  padding: 5.5rem 0 7.8125rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 3.75rem 0 5rem;
  }
}

.about__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__logo {
  width: 389px;
  width: 24.3125rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .about__logo {
    width: 15.625rem;
  }
}

.about__text {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #9E1313;
  margin-left: 16px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1.75rem;
    margin-left: 0.5rem;
  }
}

.about__title-wrapper {
  text-align: center;
  background: #fff;
  border: 3px solid #9E1313;
  border: 0.1875rem solid #9E1313;
  margin-top: 41px;
  margin-top: 2.5625rem;
  padding: 20px 20px 12px;
  padding: 1.25rem 1.25rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .about__title-wrapper {
    margin-top: 1.5625rem;
    padding: 0.9375rem 0.9375rem;
  }
}

.about__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #9E1313;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 1.125rem;
  }
}
.about__title span {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .about__title span {
    font-size: 1.5rem;
  }
}

.about__img {
  width: 90%;
  margin-left: auto;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 80%;
    margin: 1.25rem auto 0;
  }
}

.about__box {
  width: 920px;
  width: 57.5rem;
  max-width: 100%;
  margin: 65px auto 0;
  margin: 4.0625rem auto 0;
  background: #fff;
  border-radius: 1.5rem;
  padding: 40px 20px 60px;
  padding: 2.5rem 1.25rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__box {
    margin-top: 2.5rem;
    padding: 3.75rem 1.25rem 1.875rem;
  }
}

.about__subtext {
  position: absolute;
  top: 48px;
  top: 3rem;
  left: 65px;
  left: 4.0625rem;
  width: 105px;
  width: 6.5625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .about__subtext {
    width: 4.6875rem;
    top: 1.25rem;
    left: 1.25rem;
  }
}

.about__subimg {
  position: absolute;
  bottom: 0;
  left: -100px;
  left: -6.25rem;
  width: 257px;
  width: 16.0625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .about__subimg {
    width: 9.375rem;
    left: unset;
    right: -1.875rem;
    bottom: -5rem;
  }
}

.about__subtitle {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 1.5rem;
  }
}

.about__list {
  margin-top: 22px;
  margin-top: 1.375rem;
  padding-left: 128px;
  padding-left: 8rem;
}
@media screen and (max-width: 767px) {
  .about__list {
    padding-left: 0;
  }
}

.about__list-item {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  background: url(../img/check-icon.png) no-repeat top 4px left/40px;
  background: url(../img/check-icon.png) no-repeat top 0.25rem left/2.5rem;
  padding: 5px 0 5px 65px;
  padding: 0.3125rem 0 0.3125rem 4.0625rem;
}
@media screen and (max-width: 767px) {
  .about__list-item {
    font-size: 1.125rem;
    background: url(../img/check-icon.png) no-repeat top 0.5rem left/1.5625rem;
    padding-left: 2.1875rem;
  }
}
.about__list-item + .about__list-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .about__list-item + .about__list-item {
    margin-top: 0.5rem;
  }
}
.about__list-item:last-child {
  padding-right: 60px;
  padding-right: 3.75rem;
}
.about__list-item span {
  font-weight: 800;
  color: #9E1313;
}

/* contact */
.contact {
  background: url(../img/contact-bg.jpg) no-repeat center/cover;
  padding: 155px 0 150px;
  padding: 9.6875rem 0 9.375rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 3.75rem 0;
  }
  .contact .l-inner {
    padding: 0 0.625rem;
  }
}

.contact__text {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 1.5rem;
  }
}

.contact__btn {
  display: block;
  width: 664px;
  width: 41.5rem;
  max-width: 100%;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    width: 25rem;
    margin-top: 1.5625rem;
  }
}
.contact__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(0.3125rem);
          transform: translateY(0.3125rem);
}

/* faq */
.faq {
  padding: 95px 0 50px;
  padding: 5.9375rem 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 3.75rem;
  }
}

.faq__title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.5rem;
  }
}

.faq__content {
  margin-top: 55px;
  margin-top: 3.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__content {
    margin-top: 2.5rem;
  }
}

.faq__img01, .faq__img02 {
  position: absolute;
  width: 120px;
  width: 7.5rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .faq__img01, .faq__img02 {
    display: none;
  }
}

.faq__img01 {
  top: -15px;
  top: -0.9375rem;
  left: 570px;
  left: 35.625rem;
}

.faq__img02 {
  top: 145px;
  top: 9.0625rem;
  left: -115px;
  left: -7.1875rem;
}

.faq__list-item + .faq__list-item {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .faq__list-item + .faq__list-item {
    margin-top: 0.9375rem;
  }
}

.faq__list-title, .faq__list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 17px;
  padding: 0.9375rem 1.0625rem;
}
@media screen and (max-width: 767px) {
  .faq__list-title, .faq__list-text {
    padding: 0.625rem 0.9375rem;
  }
}
.faq__list-title span, .faq__list-text span {
  display: inline-block;
  font-family: din-2014, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: #9E1313;
  margin-right: 13px;
  margin-right: 0.8125rem;
}

.faq__list-title {
  font-weight: 700;
  background: #fff;
  border-radius: 0.25rem;
}

/* flow */
.flow__content {
  padding: 70px 0 50px;
  padding: 4.375rem 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow__content {
    padding: 2.5rem 0 3.75rem;
  }
}
.flow__content .l-inner {
  max-width: 1250px;
  max-width: 78.125rem;
}

.flow__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 1.5rem;
  }
}

.flow__item-wrapper {
  overflow-x: auto;
  margin-top: 35px;
  margin-top: 2.1875rem;
  margin-right: calc(50% - 50vw);
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .flow__item-wrapper {
    padding-bottom: 1.25rem;
    margin-top: 1.25rem;
  }
}
.flow__item-wrapper::-webkit-scrollbar {
  height: 8px;
  height: 0.5rem;
  background: #fff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-wrapper::-webkit-scrollbar {
    height: 0.3125rem;
  }
}
.flow__item-wrapper::-webkit-scrollbar-thumb {
  background: #9E1313;
  border-radius: 0.5rem;
}

.flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flow__item {
  min-width: 356px;
  min-width: 22.25rem;
  background: #fff;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    min-width: 18.75rem;
  }
}
.flow__item + .flow__item {
  margin-left: 29px;
  margin-left: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .flow__item + .flow__item {
    margin-left: 0.9375rem;
  }
}
.flow__item:last-child {
  position: relative;
}
.flow__item:last-child::after {
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  height: 1px;
  height: 0.0625rem;
  width: 20px;
  width: 1.25rem;
  background-color: transparent;
}

.flow__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: #9E1313;
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 10px 10px 10px 17px;
  padding: 0.625rem 0.625rem 0.625rem 1.0625rem;
}

.flow__item-number {
  font-family: din-2014, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__item-number {
    font-size: 1.875rem;
  }
}

.flow__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
  padding-left: 11px;
  padding-left: 0.6875rem;
  margin-left: 11px;
  margin-left: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1.125rem;
  }
}

.flow__item-body {
  padding: 16px 22px 30px;
  padding: 1rem 1.375rem 1.875rem;
}

.flow__item-text {
  font-size: 14px;
  font-size: 0.875rem;
}
.flow__item-text span {
  display: inline-block;
}
.flow__item-text span.small {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.flow__item-text span.large {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__item-text span.large {
    font-size: 1rem;
  }
}

.flow__subtitle {
  text-align: center;
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 700;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .flow__subtitle {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}
.flow__subtitle span {
  color: #9E1313;
}
.flow__subtitle span span {
  font-family: din-2014, sans-serif;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .flow__subtitle span span {
    font-size: 2rem;
  }
}
.flow__subtitle sup {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.flow__caution {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .flow__caution {
    text-align: left;
    margin-top: 1.25rem;
  }
}

.flow__youtube-wrapper {
  width: 552px;
  width: 34.5rem;
  max-width: 100%;
  margin: 49px auto 0;
  margin: 3.0625rem auto 0;
}
@media screen and (max-width: 767px) {
  .flow__youtube-wrapper {
    margin-top: 1.875rem;
  }
}

.flow__youtube {
  width: 100%;
  padding-top: 57.0652173913%;
  position: relative;
}
.flow__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.flow__text {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

/* hearing */
.hearing__content {
  padding: 40px 0 145px;
  padding: 2.5rem 0 9.0625rem;
}
@media screen and (max-width: 767px) {
  .hearing__content {
    padding-bottom: 3.75rem;
  }
}

.hearing__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .hearing__text {
    text-align: left;
    font-size: 1rem;
  }
}
.hearing__text span {
  font-weight: 900;
  color: #9E1313;
  text-decoration: underline;
}

.hearing__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .hearing__imgs {
    display: block;
    margin-top: 2.5rem;
  }
}

.hearing__img {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .hearing__img {
    width: 100%;
  }
  .hearing__img:not(:first-child) {
    margin-top: 1.25rem;
  }
}
.hearing__img img {
  border-radius: 1rem;
}

/* listory */
.listory {
  background: #fff;
  padding: 75px 0 100px;
  padding: 4.6875rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .listory {
    padding: 3.75rem 0;
  }
}

.listory__content {
  background: #F5F1E5;
  padding: 60px 100px 40px;
  padding: 3.75rem 6.25rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .listory__content {
    padding: 3.75rem 1.25rem 2.5rem;
  }
}

.listory__subimg {
  position: absolute;
  left: -35px;
  left: -2.1875rem;
  top: -25px;
  top: -1.5625rem;
  width: 220px;
  width: 13.75rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .listory__subimg {
    width: 7.5rem;
    left: -0.625rem;
    top: -2.5rem;
  }
}

.listory__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  color: #C4A33B;
}
@media screen and (max-width: 767px) {
  .listory__title {
    font-size: 1.375rem;
  }
}

.listory__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.78;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .listory__text {
    text-align: left;
    font-size: 1rem;
  }
}

.listory__youtube-wrapper {
  width: 423px;
  width: 26.4375rem;
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}

.listory__youtube {
  width: 100%;
  padding-top: 57.68321513%;
  position: relative;
}
.listory__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.listory__caption {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.listory__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .listory__box {
    display: block;
  }
}

.listory__box-img {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .listory__box-img {
    width: 100%;
  }
}
.listory__box-img img {
  border-radius: 0.5rem 0 0 0.5rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .listory__box-img img {
    border-radius: 0.5rem 0.5rem 0 0;
    height: auto;
  }
}

.listory__box-body {
  width: 75%;
  background: #fff;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 30px 60px 30px 45px;
  padding: 1.875rem 3.75rem 1.875rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .listory__box-body {
    width: 100%;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1.25rem 1.25rem;
  }
}

.listory__box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.listory__box-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .listory__box-title {
    font-size: 1.25rem;
  }
}

.listory__box-icon {
  width: 40px;
  width: 2.5rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
}

.listory__box-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.listory__caution {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .listory__caution {
    text-align: left;
  }
}

/* method */
.method__content {
  padding: 37px 0 48px;
  padding: 2.3125rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .method__content {
    padding: 2.5rem 0 3.75rem;
  }
}

.method__subtitle {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .method__subtitle {
    font-size: 1.5rem;
  }
}

.method__title-wrapper {
  text-align: center;
}

.method__title {
  display: inline-block;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  background: #9E1313;
  -webkit-clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
          clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
  margin-top: 19px;
  margin-top: 1.1875rem;
  padding: 12px 35px;
  padding: 0.75rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .method__title {
    font-size: 1.625rem;
    line-height: 1.4;
    padding: 0.625rem 1.25rem;
  }
}

.method__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 69px;
  margin-top: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .method__items {
    display: block;
    margin-top: 2.5rem;
  }
}

.method__item {
  width: 49%;
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .method__item {
    width: 100%;
  }
  .method__item + .method__item {
    margin-top: 1.25rem;
  }
}

.method__item-img img {
  border-radius: 1rem 1rem 0 0;
}

.method__item-body {
  border-radius: 0 0 1rem 1rem;
  padding: 26px 23px 10px;
  padding: 1.625rem 1.4375rem 0.625rem;
}

.method__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.method__item-name {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .method__item-name {
    font-size: 1.5rem;
  }
}

.method__item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 17px;
  margin-left: 1.0625rem;
}

.method__item-link {
  width: 40px;
  width: 2.5rem;
}
.method__item-link + .method__item-link {
  margin-left: 17px;
  margin-left: 1.0625rem;
}
.method__item-link a {
  display: block;
}

.method__item-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.method__leads {
  padding-left: 60px;
  padding-left: 3.75rem;
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (max-width: 1200px) {
  .method__leads {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .method__leads {
    margin-top: 2.5rem;
    margin-left: 0;
  }
}

.method__lead {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 20px 0 10px;
  padding: 1.25rem 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .method__lead {
    text-align: center;
    font-size: 1.125rem;
    padding: 0;
  }
}
.method__lead + .method__lead {
  margin-top: 30px;
  margin-top: 1.875rem;
}
.method__lead:first-child {
  background: url(../img/method-img03.png) no-repeat center left/117px;
  background: url(../img/method-img03.png) no-repeat center left/7.3125rem;
  padding-left: 135px;
  padding-left: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .method__lead:first-child {
    background: url(../img/method-img03.png) no-repeat center top/4.375rem;
    padding-left: 0;
    padding-top: 4.375rem;
  }
}
.method__lead:nth-child(2) {
  background: url(../img/method-img04.png) no-repeat center left/125px;
  background: url(../img/method-img04.png) no-repeat center left/7.8125rem;
  padding-left: 145px;
  padding-left: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .method__lead:nth-child(2) {
    background: url(../img/method-img04.png) no-repeat center top/4.375rem;
    padding-left: 0;
    padding-top: 5rem;
  }
  .method__lead:nth-child(2) span {
    font-size: 1.625rem;
    letter-spacing: -0.02em;
  }
}
.method__lead span {
  display: inline-block;
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 900;
  color: #9E1313;
  position: relative;
}
@media screen and (max-width: 767px) {
  .method__lead span {
    font-size: 2rem;
    margin-top: 0.3125rem;
  }
}
.method__lead span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 24px;
  height: 1.5rem;
  left: 0;
  bottom: 0;
  background: #E9BF3D;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .method__lead span::before {
    height: 0.75rem;
  }
}

.method__box {
  border: 5px solid #9E1313;
  border: 0.3125rem solid #9E1313;
  border-radius: 0.5rem;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .method__box {
    margin-top: 2.5rem;
  }
}

.method__box-title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #9E1313;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .method__box-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.method__box-body {
  background: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 43px 10px 60px 30px;
  padding: 2.6875rem 0.625rem 3.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .method__box-body {
    padding: 1.875rem 1.25rem;
  }
}

.method__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .method__units {
    display: block;
  }
}

.method__unit:first-child .method__unit-text {
  margin-top: 16px;
  margin-top: 1rem;
}
.method__unit:first-child .method__unit-img {
  width: 251px;
  width: 15.6875rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .method__unit:first-child .method__unit-img {
    width: 11.875rem;
  }
}
.method__unit:nth-child(2) {
  margin-left: 130px;
  margin-left: 8.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .method__unit:nth-child(2) {
    margin-left: 0;
    margin-top: 5rem;
  }
}
.method__unit:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 29px;
  width: 1.8125rem;
  height: 59px;
  height: 3.6875rem;
  top: 43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -50px;
  left: -3.125rem;
  background: url(../img/arrow-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .method__unit:nth-child(2)::before {
    top: -3.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.method__unit:nth-child(2) .method__unit-text {
  color: #9E1313;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
.method__unit:nth-child(2) .method__unit-img {
  width: 224px;
  width: 14rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .method__unit:nth-child(2) .method__unit-img {
    width: 11.25rem;
  }
}

.method__unit-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  border-radius: 0.25rem;
  background: #6A6A6A;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .method__unit-title {
    font-size: 1rem;
  }
}

.method__unit-logo {
  width: 254px;
  width: 15.875rem;
  max-width: 100%;
  margin: 0 auto;
}

.method__unit-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .method__unit-text {
    font-size: 1rem;
  }
}
.method__unit-text span {
  font-weight: 800;
  text-decoration: underline;
}

.method__unit-img {
  max-width: 100%;
  margin: 0 auto;
}

/* mv */
.mv__content {
  background: url(../img/mv-bg01.jpg) no-repeat left top/cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__content {
    background-position: center;
  }
}
.mv__content::before, .mv__content::after {
  position: absolute;
  content: "";
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv__content::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 2.5rem;
    background: #9E1313;
  }
}
.mv__content::after {
  width: 1126px;
  width: 70.375rem;
  height: 220px;
  height: 13.75rem;
  left: 0;
  top: 0;
  background: url(../img/mv-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .mv__content::after {
    width: 25.9375rem;
    height: 6.25rem;
    top: 1.875rem;
  }
}

.mv__inner {
  padding: 90px 0 80px;
  padding: 5.625rem 0 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding: 6.25rem 0 12.5rem;
  }
}

.mv__img01, .mv__img02 {
  position: absolute;
  max-width: 100%;
}

.mv__img01 {
  width: 530px;
  width: 33.125rem;
  left: -220px;
  left: -13.75rem;
  bottom: -35px;
  bottom: -2.1875rem;
}
@media screen and (max-width: 767px) {
  .mv__img01 {
    width: 12.8125rem;
    left: -1.875rem;
    bottom: -0.75rem;
  }
}

.mv__img02 {
  width: 650px;
  width: 40.625rem;
  right: -225px;
  right: -14.0625rem;
  bottom: -33px;
  bottom: -2.0625rem;
}
@media screen and (max-width: 767px) {
  .mv__img02 {
    width: 14.6875rem;
    right: -1.25rem;
    bottom: -0.75rem;
  }
}

.mv__title {
  width: 750px;
  width: 46.875rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__title {
    width: 31.25rem;
  }
}

.mv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__items {
    display: block;
  }
}

.mv__item {
  width: 296px;
  width: 18.5rem;
  max-width: 100%;
  background: #fff;
  border: 3px solid #000;
  border: 0.1875rem solid #000;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .mv__item {
    margin: 0 auto;
  }
}
.mv__item + .mv__item {
  margin-left: 27px;
  margin-left: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .mv__item + .mv__item {
    margin-top: 0.625rem;
    margin-left: auto;
  }
}

.mv__item-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #000;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__item-title {
    font-size: 1rem;
  }
}

.mv__item-body {
  padding: 6px 20px 8px 10px;
  padding: 0.375rem 1.25rem 0.5rem 0.625rem;
}

.mv__item-text {
  font-size: 42px;
  font-size: 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 700;
  color: #C40D0D;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .mv__item-text {
    font-size: 1.75rem;
  }
}
.mv__item-text span {
  display: inline-block;
}
.mv__item-text span.sm {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .mv__item-text span.sm {
    font-size: 1rem;
  }
}
.mv__item-text span.lg {
  font-family: din-2014, sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mv__item-text span.lg {
    font-size: 2.5rem;
  }
}

.mv__item-subtext {
  text-align: right;
  font-size: 10px;
  font-size: 0.625rem;
  margin-top: 2px;
  margin-top: 0.125rem;
}

/* service */
.service__content {
  text-align: center;
  padding: 40px 0 83px;
  padding: 2.5rem 0 5.1875rem;
}
@media screen and (max-width: 767px) {
  .service__content {
    padding-bottom: 3.75rem;
  }
}

.service__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .service__subtitle {
    font-size: 1.5rem;
  }
}

.service__title {
  display: inline-block;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  background: #9E1313;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 10px 27px 10px 113px;
  padding: 0.625rem 1.6875rem 0.625rem 7.0625rem;
  -webkit-clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
          clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 1.125rem;
    padding: 0.625rem 0.625rem 0.625rem 2.8125rem;
  }
}
.service__title::before {
  position: absolute;
  content: "";
  width: 58px;
  width: 3.625rem;
  height: 61px;
  height: 3.8125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 40px;
  left: 2.5rem;
  background: url(../img/home-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .service__title::before {
    width: 1.75rem;
    height: 1.875rem;
    left: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .service__title span {
    font-size: 1.5rem;
  }
}

.service__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.78;
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .service__text {
    text-align: left;
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}
.service__text span {
  color: #9E1313;
  text-decoration: underline;
}

.service__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__img {
    margin-top: 1.25rem;
  }
}

/* support */
.support__contents {
  padding: 61px 0 116px;
  padding: 3.8125rem 0 7.25rem;
}
@media screen and (max-width: 767px) {
  .support__contents {
    padding: 2.5rem 0 3.75rem;
  }
}

.support__content {
  border-radius: 0.25rem;
  position: relative;
}

.support__img {
  position: absolute;
  right: -30px;
  right: -1.875rem;
  bottom: 0;
  width: 326px;
  width: 20.375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .support__img {
    width: 9.375rem;
  }
}

.support__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #3ED43D;
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 53px 20px 34px 43px;
  padding: 3.3125rem 1.25rem 2.125rem 2.6875rem;
}
@media screen and (max-width: 767px) {
  .support__header {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.support__logo {
  width: 264px;
  width: 16.5rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .support__logo {
    width: 15rem;
    margin: 0 auto;
  }
}

.support__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-left: 27px;
  margin-left: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .support__title {
    font-size: 1.5rem;
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.support__body {
  background: #fff;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 26px 50px 33px;
  padding: 1.625rem 3.125rem 2.0625rem;
}
@media screen and (max-width: 767px) {
  .support__body {
    padding: 1.875rem 1.25rem;
  }
}

.support__company {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support__company {
    font-size: 1rem;
  }
}

.support__list {
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .support__list {
    margin-top: 0.625rem;
  }
}

.support__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 1.2em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .support__list-item {
    font-size: 1rem;
  }
}
.support__list-item::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 6px;
  top: 0.375rem;
}
.support__list-item + .support__list-item {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.support__list-item span.lg {
  font-size: 24px;
  font-size: 1.5rem;
  color: #9E1313;
}
@media screen and (max-width: 767px) {
  .support__list-item span.lg {
    font-size: 1.25rem;
  }
}
.support__list-item span.sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.support__list-item span.date {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 35px;
  margin-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .support__list-item span.date {
    margin-left: 1.25rem;
  }
}

.support__box {
  background: #EBF4EF;
  border-radius: 0.25rem;
  padding: 20px 24px 19px;
  padding: 1.25rem 1.5rem 1.1875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .support__box {
    padding: 0.9375rem 0.9375rem;
  }
}

.support__post {
  font-size: 14px;
  font-size: 0.875rem;
}

.support__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .support__name {
    font-size: 1rem;
  }
}

.support__text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .support__text {
    padding-right: 4.375rem;
  }
}
/*# sourceMappingURL=style.css.map */
