@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 2;
  color: #1a1a1a;
  font-family: "Noto Sans JP", "Oswald";
  background: #fff;
}

.inner {
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1000px;
    padding: 0 25px;
    margin: 0 auto;
  }
}

.slideinLeft {
  -webkit-animation: slideinLeft 1s;
          animation: slideinLeft 1s;
}
@-webkit-keyframes slideinLeft {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideinLeft {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.button {
  background: #CC3434;
  -webkit-box-shadow: 0 5px 0 #a01525;
          box-shadow: 0 5px 0 #a01525;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 24px;
    padding: 20px 90px;
  }
}
.button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.button i {
  margin-right: 10px;
}

.fa-circle-right {
  margin-right: 4px;
}

.btn_animate04 {
  margin: 0 auto;
  -webkit-animation: vertical 2s linear infinite;
          animation: vertical 2s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  cursor: pointer;
  white-space: nowrap;
}
@-webkit-keyframes vertical {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes vertical {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  cursor: pointer;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

.contact-part {
  background: #CC3434;
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .contact-part {
    padding: 60px 0;
  }
}
.contact-part__content {
  position: relative;
  z-index: 3;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 28px 0;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .contact-part__content {
    border-radius: 20px;
    padding: 35px 0;
  }
}
.contact-part__content-txt {
  font-weight: 600;
  margin-bottom: 13px;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .contact-part__content-txt {
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 1.8px;
  }
}

.contact-part-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 18px;
}
@media screen and (min-width: 768px) {
  .contact-part-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 22px 59px;
    gap: 38px;
    text-align: left;
  }
}
.contact-part-box img {
  width: 132px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contact-part-box img {
    width: 184px;
  }
}
@media screen and (min-width: 768px) {
  .contact-part-box_text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact-part-box_text p {
  text-align: justify;
  line-height: 170%;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .contact-part-box_text p {
    font-size: 22px;
  }
}

.heading {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.68px;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 34px;
  }
}
.heading-box {
  text-align: center;
}
.heading-sub {
  display: inline-block;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.52px;
  border-radius: 50px;
  background: #CC3434;
  padding: 8px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .heading-sub {
    font-size: 26px;
    font-weight: 600;
    padding: 8px 30px;
  }
}

.bg-red {
  background: rgba(204, 52, 52, 0.09);
}

.bg--red {
  background: #CC3434 !important;
}

.red {
  color: #CC3434;
}

.base {
  color: #1a1a1a;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.dots {
  background-image: radial-gradient(circle at center, #1a1a1a 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.15em; /* 縦方向の位置調整 */
}

.border-line {
  padding-bottom: 4px;
  border-bottom: 1px solid #1a1a1a;
}

.header {
  width: 100%;
  height: 70px;
  background: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.13));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.13));
}
@media screen and (min-width: 768px) {
  .header {
    padding-left: 20px;
  }
}
.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}
.header__left {
  -ms-flex-line-pack: center;
      align-content: center;
  padding-left: 20px;
}
.header__left img {
  max-width: 200px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__left img {
    max-width: 270px;
  }
}
.header__left p {
  font-size: 12px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .header__left p {
    margin-top: 5px;
    font-size: 16px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__right {
    display: block;
    line-height: inherit;
  }
}
@media screen and (max-width: 1000px) {
  .header__right {
    display: none;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    height: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link a {
  line-height: 70px;
  display: block;
}
.header__link:hover {
  color: #CC3434;
}
@media screen and (max-width: 1000px) {
  .header__button {
    display: block;
  }
}
.header__button-txt {
  display: block;
  background: #CC3434;
  line-height: 70px;
  color: #FFF;
  padding: 0 20px;
  height: 100%;
}

.fv {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 48px;
  }
}
.fv__content {
  display: block;
  margin-top: 10px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .fv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
}
.fv__heading {
  font-size: 31px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv__heading {
    font-size: 60px;
  }
}
.fv__heading img {
  width: 40px;
  margin: -31px -7px 0 0;
}
@media screen and (min-width: 768px) {
  .fv__heading img {
    width: 58px;
    margin: -33px -5px 0 0;
  }
}
@media screen and (max-width: 1000px) {
  .fv__heading img {
    overflow: hidden;
  }
}
.fv__image {
  width: 170px;
  margin: 0px 0 -62px 0;
}
.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .fv__image {
    width: 380px;
    position: absolute;
    left: 59%;
    z-index: 0;
    top: 227px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__image {
    left: 50%;
    opacity: 0.7;
  }
}
.fv__image {
  right: 10px;
  bottom: 10px;
  width: max(50%, 100px);
}
@media screen and (min-width: 768px) {
  .fv__image {
    width: min(40%, 500px);
  }
}
@media screen and (max-width: 1000px) {
  .fv__image {
    width: min(50%, 500px);
  }
}

.problem {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .problem {
    padding: 60px 0;
  }
}
.problem__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .problem__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 60px;
  }
}
.problem__box {
  width: 100%;
  padding: 16px 0;
  border-radius: 10px;
  border: 4px solid #CC3434;
  -webkit-box-shadow: 0 5px #CC3434;
          box-shadow: 0 5px #CC3434;
  position: relative;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 768px) {
  .problem__box {
    width: 30%;
    padding: 25px 0;
    border-radius: 20px;
  }
}
@media screen and (min-width: 768px) {
  .problem__box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #CC3434 transparent transparent;
    translate: -50% 100%;
    -webkit-filter: drop-shadow(0px 7px #CC3434);
            filter: drop-shadow(0px 7px #CC3434);
  }
}
@media screen and (min-width: 768px) {
  .problem__box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 9.3px 9.3px 0 9.3px;
    border-color: #fff transparent transparent;
    translate: -50% 100%;
  }
}
.problem__box:nth-of-type(4) {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .problem__box:nth-of-type(4) {
    margin-left: 17.5%;
  }
}
@media screen and (min-width: 768px) {
  .problem__box:nth-of-type(5) {
    margin-right: 17.5%;
  }
}
@media screen and (min-width: 768px) {
  .problem__box:nth-of-type(n+4) {
    margin-top: 50px;
  }
}
.problem__text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 768px) {
  .problem__text {
    font-size: 20px;
  }
}

.solve {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .solve {
    padding-bottom: 100px;
  }
}
.solve__polygon {
  width: 62px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .solve__polygon {
    width: 90px;
    margin-top: 60px;
  }
}
.solve__content {
  margin-top: 30px;
  border-radius: 10px;
  border: 4px solid #CC3434;
  padding: 30px 18px;
}
@media screen and (min-width: 768px) {
  .solve__content {
    margin-top: 43px;
    border-radius: 20px;
    padding: 40px 0;
  }
}
.solve__content-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.57px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .solve__content-text {
    font-size: 19px;
    text-align: center;
  }
}
.solve__content-text02 {
  margin-top: 33px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.78px;
}
@media screen and (min-width: 768px) {
  .solve__content-text02 {
    font-size: 26px;
  }
}

.reason {
  background: #F2F2F2;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .reason {
    padding: 100px 0;
  }
}
.reason__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .reason__boxes {
    gap: 50px;
  }
}
.reason__box {
  background: #FFF;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 15px;
    border-radius: 20px;
    padding: 57px 100px;
  }
}
.reason__box img {
  width: 50%;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .reason__box img {
    width: 30%;
    margin-top: 0;
  }
}
.reason .box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .reason .box-content {
    gap: 30px;
  }
}
.reason .box-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .reason .box-content__head {
    gap: 30px;
  }
}
.reason .box-content__head-num {
  color: #CC3434;
  font-family: Montserrat;
  font-size: 84px;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .reason .box-content__head-num {
    font-size: 110px;
  }
}
.reason .box-content__head-title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .reason .box-content__head-title {
    font-size: 22px;
    letter-spacing: 2.2px;
  }
}
.reason .box-content__body-txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 170%;
  text-align: left;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .reason .box-content__body-txt {
    font-size: 18px;
    line-height: 200%;
    margin-top: 0;
  }
}

.about {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 100px;
  }
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 52px;
    gap: 60px;
  }
}
.about__image {
  max-width: 414px;
  height: 100%;
}
.about__text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.44px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.about__text2 {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 768px) {
  .about__text2 {
    margin-top: 52px;
    font-size: 24px;
  }
}

.fa-square-check {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  color: #CC3434;
}
@media screen and (min-width: 768px) {
  .fa-square-check {
    width: 27.979px;
    height: 25px;
  }
}

.recommend {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .recommend {
    padding-bottom: 100px;
  }
}
.recommend__content {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recommend__content {
    border-radius: 20px;
  }
}
.recommend__content-title {
  background-color: #CC3434;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .recommend__content-title {
    border-radius: 20px 20px 0 0;
    font-size: 34px;
    font-weight: 700;
    padding: 13px 0;
  }
}
.recommend__content-person {
  display: block;
  margin: 0 auto;
  width: 250px;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .recommend__content-person {
    width: 450px;
    font-size: 24px;
    padding: 40px 0;
  }
}

.point {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .point {
    padding-bottom: 100px;
  }
}
.point__bg {
  background-color: #CC3434;
  padding: 40px 0;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .point__bg {
    padding: 70px 0;
    margin-top: 45px;
  }
}
.point__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .point__text {
    gap: 35px;
    max-width: 800px;
    margin: 0 auto;
  }
}
.point__text-box {
  display: inline-block;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .point__text-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
  }
}
.point__text-num {
  display: inline-block;
  background-color: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}
@media screen and (min-width: 768px) {
  .point__text-num {
    padding: 5px 33px;
  }
}
.point__text-num-p {
  font-family: Poppins;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.68px;
}
@media screen and (min-width: 768px) {
  .point__text-num-p {
    font-size: 26px;
  }
}
.point__text-txt {
  color: #FFF;
  -ms-flex-line-pack: center;
      align-content: center;
  font-weight: 400;
  margin-top: 5px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .point__text-txt {
    font-size: 28px;
    letter-spacing: 0.56px;
    font-weight: 600;
  }
}
.point__heading {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.36px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .point__heading {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
  }
}

.voice {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-bottom: 100px;
  }
}
.voice__content {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .voice__content {
    margin-top: 60px;
  }
}
.voice__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .voice__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: calc(50% - 15px);
    border-radius: 20px;
    height: 317px;
  }
}
.voice__text-box {
  padding: 23px 15px;
}
.voice__text {
  font-size: 14px;
  line-height: normal;
}
.voice__name {
  margin-top: 20px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3px;
}

.slider {
  width: 100%;
  margin: 0 auto;
}
.slider img {
  width: 100%;
}
.slider .slick-slide {
  height: auto !important;
}
.slider .slick-next {
  right: -20px !important;
}
.slider .slick-prev {
  left: -20px !important;
}
.slider .slick-arrow {
  width: initial !important;
  height: initial !important;
  z-index: 2 !important;
}
.slider .slick-arrow:before {
  font-size: 40px !important;
  color: rgba(204, 52, 52, 0.3803921569) !important;
}

.slick-slide {
  margin: 0px 10px;
}

.curriculum {
  background: #F5F5F5;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .curriculum {
    padding-top: 100px;
  }
}
.curriculum__content {
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .curriculum__content {
    max-width: 800px;
    margin-top: 80px;
  }
}
.curriculum__box {
  margin-top: 20px;
  margin-bottom: 20px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.curriculum__box-title {
  background: #CC3434;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 10px 28px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .curriculum__box-title {
    font-size: 20px;
  }
}
.curriculum__box-text {
  background: #fff;
  padding: 20px 15px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .curriculum__box-text {
    font-size: 18px;
  }
}
.curriculum__box-num {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.52px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .curriculum__box-num {
    font-size: 26px;
    font-weight: 700;
  }
}
.curriculum__text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28px;
  text-align: left;
}
.curriculum__polygon {
  width: 58px;
  height: 26.02px;
}

.plan {
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 10px;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 60px;
}
.plan__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
.plan__text-01 {
  color: #CC3434;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.02px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .plan__text-01 {
    font-size: 51px;
  }
}
.plan__text-02 {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .plan__text-02 {
    font-weight: 700;
  }
}
.plan__text-bg {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan__text-bg {
    font-size: 34px;
  }
}

.plan__about {
  padding: 40px 0;
  background-color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__about {
    padding: 100px 0;
  }
}
.plan__about img {
  width: 256px;
  margin-top: 20px;
}
.plan__about-text {
  font-weight: 400;
  letter-spacing: 0.4px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .plan__about-text {
    font-size: 22px;
    margin-top: 40px;
    text-align: center;
  }
}
.plan__about-text2 {
  font-weight: 400;
  letter-spacing: 0.4px;
  font-weight: 600;
  line-height: normal;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .plan__about-text2 {
    font-size: 22px;
    text-align: center;
  }
}

.profile {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .profile {
    padding: 100px 0;
  }
}
.profile__content {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .profile__content {
    margin-top: 70px;
  }
}
.profile__text-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.34px;
}
@media screen and (min-width: 768px) {
  .profile__text-sub {
    font-size: 18px;
    font-weight: 700;
  }
}
.profile__text-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.44px;
}
@media screen and (min-width: 768px) {
  .profile__text-name {
    font-size: 22px;
  }
}
.profile__text-body {
  color: #4E4E4E;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.32px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .profile__text-body {
    font-size: 16px;
  }
}
.profile__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .profile__image {
    margin-top: 37px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.profile__image-me {
  width: 60%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .profile__image-me {
    width: 246px;
  }
}
.profile__image-book {
  width: 37.5%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .profile__image-book {
    width: 152.408px;
  }
}
.profile__sns-content {
  margin: 20px 0 0 0;
}
@media screen and (min-width: 768px) {
  .profile__sns-content {
    margin-left: 35px;
  }
}
.profile__sns-link {
  color: #908f8f;
  font-size: 14px;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.32px;
  border-bottom: #e2e2e2 1px solid;
  -webkit-transition: color 0.7s;
  transition: color 0.7s;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .profile__sns-link {
    font-size: 16px;
  }
}
.profile__sns-link:hover {
  color: #CC3434;
}

.qa {
  padding: 40px 0;
  background: rgba(204, 52, 52, 0.09);
}
@media screen and (min-width: 768px) {
  .qa {
    padding: 100px 0;
  }
}
.qa__boxes {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 50px;
    gap: 30px;
  }
}

.qa-box {
  background: #fff;
  border-radius: 10px;
  border: solid 4px #CC3434;
}
.qa-box.is-open .qa-box__head-text i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.qa-box.is-open .qa-box__body {
  display: block;
}
.qa-box__head {
  padding: 15px 10px;
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 16px 76px 16px 36px;
  }
}
.qa-box__head-text {
  display: block;
  -moz-text-align-last: left;
       text-align-last: left;
  color: #CC3434;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.42px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 21px;
  }
}
.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    font-size: 16px;
    gap: 10px;
  }
}
.qa-box__a-text {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.12px;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    padding-top: 7px;
    line-height: 27px;
    letter-spacing: 1.28px;
    font-size: 16px;
  }
}
.qa-box__body {
  padding: 0 10px 13px 10px;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding: 3px 33px 17px 36px;
  }
}

.fa-chevron-down {
  color: #CC3434;
  margin-right: 8px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .fa-chevron-down {
    margin-right: 20px;
  }
}

.company {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .company {
    padding: 100px 0;
  }
}
.company__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 47px;
  margin: 50px auto;
  max-width: 530px;
}
@media screen and (min-width: 768px) {
  .company__boxes {
    gap: 20px;
  }
}
.company__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .company__box {
    gap: 46px;
  }
}
.company_q {
  font-weight: 700;
}
.company_a {
  font-weight: 400;
}
.company_q, .company_a {
  line-height: normal;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .company_q, .company_a {
    font-size: 18px;
  }
}

.footer {
  padding: 20px 0;
  background-color: #CC3434;
  text-align: center;
}
.footer__copyright {
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 12px;
  }
}