@charset "UTF-8";
/* 전역 변수 */
:root {
  --color-main: #E58B4A;
  --color-sub: #FFEEE6;
  --color-error: #ef4444;
  --color-gray: #94a3b8;
  --color-border: #e2e8f0;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.point {
  color: var(--color-error);
}

.dim {
  color: var(--color-gray);
}

.mb-1 {
  margin-bottom: 1rem;
}

/*
 * 파일명 : sub.scss
 * 역할   : 서브페이지 레이아웃
 */
.visual {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background: #fff4ef;
  background: linear-gradient(180deg, rgb(255, 244, 239) 0%, rgb(255, 255, 255) 100%);
  padding: 2rem 0;
}
@media screen and (max-width: 1200px) {
  .visual {
    padding: 1rem 0 0;
  }
}
.visual__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1200px) {
  .visual__inner {
    gap: 2rem;
  }
}
.visual .swiper-container {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .visual .swiper-container {
    padding: 0 1rem;
  }
}
.visual .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual .swiper-slide .box {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .visual .swiper-slide .box {
    height: 40px;
  }
}
.visual .swiper-slide .box:hover {
  cursor: pointer;
}
.visual .swiper-slide .box img {
  width: 130px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .visual .swiper-slide .box img {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .visual .swiper-slide .box img {
    width: 80px;
  }
}
.visual .container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .visual .container {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .container {
    padding: 0 1rem;
  }
}
.visual .container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
}
@media screen and (max-width: 1200px) {
  .visual .container h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .container h2 {
    font-size: 1.1rem;
  }
}
.visual .container h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
.visual .container h3 b {
  font-weight: inherit;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .visual .container h3 {
    font-size: 0.9rem;
    word-break: keep-all;
  }
}
.visual .cs {
  width: 100%;
  height: auto;
  background-color: #ebebeb;
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .visual .cs {
    border-radius: 0;
  }
}
.visual .cs__inputs {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.visual .cs__input {
  width: calc(50% - 8px);
  height: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .visual .cs__input {
    width: 100%;
    gap: 0;
  }
}
.visual .cs__input.w-100 {
  width: 100%;
}
.visual .cs__input > span {
  width: 70px;
  min-width: 70px;
  height: auto;
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .visual .cs__input > span {
    font-size: 0.9rem;
    text-align: left;
  }
}
.visual .cs__input > input {
  width: calc(100% - 70px);
  height: 45px;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  padding: 0 1rem;
}
.visual .cs__input > input:focus {
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .visual .cs__input > input {
    font-size: 0.9rem;
  }
}
.visual .cs__input.input__box input {
  width: calc(80% - 70px);
}
@media screen and (max-width: 1200px) {
  .visual .cs__input.input__box input {
    width: calc(70% - 70px);
  }
}
.visual .cs__input #csType {
  width: calc(100% - 70px);
  height: 45px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .visual .cs__input #csType {
    height: auto;
    flex-wrap: wrap;
  }
}
.visual .cs__input #csType input[type=radio] {
  display: none;
}
.visual .cs__input #csType input[type=radio] + label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #595959;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .visual .cs__input #csType input[type=radio] + label {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .visual .cs__input #csType input[type=radio] + label {
    width: calc(50% - 5px);
    height: 45px;
  }
}
.visual .cs__input #csType input[type=radio]:checked + label {
  color: #fff;
  border: none;
  background-color: var(--color-main);
}
.visual .cs__input #csGender {
  width: 20%;
  height: 45px;
  display: flex;
  gap: 5px;
}
.visual .cs__input #csGender.w-100 {
  width: 100%;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .visual .cs__input #csGender.w-100 {
    margin: 0;
  }
}
.visual .cs__input #csGender input[type=radio] {
  display: none;
}
.visual .cs__input #csGender input[type=radio] + label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #595959;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.visual .cs__input #csGender input[type=radio]:checked + label {
  color: #fff;
  border: none;
  background-color: var(--color-main);
}
@media screen and (max-width: 1200px) {
  .visual .cs__input #csGender {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .visual .cs__input #csGender {
    margin-left: 10px;
  }
}
.visual .cs__input input:not(:-moz-placeholder) {
  background-color: #ffffff;
  border-color: var(--color-main);
}
.visual .cs__input input:not(:placeholder-shown) {
  background-color: #ffffff;
  border-color: var(--color-main);
}
.visual .cs__apply {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.visual .cs__info {
  display: flex;
  gap: 5px;
  margin: 1rem 0;
}
.visual .cs__info > label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.visual .cs__info > label input {
  width: 17px;
  height: 17px;
}
.visual .cs__info > label span {
  font-size: 0.95rem;
}
.visual .cs__info > span {
  font-size: 0.95rem;
  color: cornflowerblue;
  text-decoration: underline;
  cursor: pointer;
}
.visual .cs__btn {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.visual .cs__btn .submit {
  width: 50%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .visual .cs__btn .submit {
    width: 100%;
  }
}

.banner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: var(--color-sub);
  padding: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 2rem 1rem;
  }
}
.banner__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  text-align: center;
}
.banner__inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-main);
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .banner__inner h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__inner h2 {
    font-size: 1.2rem;
  }
}
.banner__inner h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: var(--color-main);
}
.banner__inner h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #424242;
}
@media screen and (max-width: 767px) {
  .banner__inner h3 {
    font-size: 1rem;
    word-break: keep-all;
  }
}

.important {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #F9F9FA;
  padding: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .important {
    padding: 2rem 1rem;
  }
}
.important__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.important__title {
  width: 100%;
  height: auto;
  text-align: center;
}
.important__title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .important__title h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .important__title h2 {
    font-size: 1.2rem;
  }
}
.important__title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #595959;
}
.important__title p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #424242;
}
@media screen and (max-width: 767px) {
  .important__title p {
    font-size: 0.95rem;
  }
  .important__title p br {
    display: none;
  }
}
.important__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.important__list > li {
  width: calc(50% - 8px);
  height: auto;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .important__list > li {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .important__list > li {
    width: 100%;
  }
}
.important__list > li .order {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.important__list > li h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
  .important__list > li h3 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .important__list > li h3 {
    font-size: 1rem;
  }
}
.important__list > li .line {
  width: 100px;
  height: 1px;
  background-color: #888;
  margin: 1rem 0;
}
.important__list > li p {
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .important__list > li p {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 767px) {
  .important__list > li p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .important__list > li p br {
    display: none;
  }
}
.important__list > li .img {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media screen and (max-width: 1200px) {
  .important__list > li .img {
    top: 1.5rem;
    right: 1.5rem;
  }
}
.important__list > li .img img {
  width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .important__list > li .img img {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .important__list > li .img img {
    width: 70px;
  }
}

.choice {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #FEF9F5;
  padding: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .choice {
    padding: 2rem 1rem;
  }
}
.choice__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.choice__title {
  width: 100%;
  height: auto;
  text-align: center;
}
.choice__title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .choice__title h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .choice__title h2 {
    font-size: 1.2rem;
  }
}
.choice__title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #595959;
}
.choice__title p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #424242;
}
@media screen and (max-width: 767px) {
  .choice__title p {
    font-size: 0.95rem;
  }
}
.choice__list {
  width: 100%;
  height: auto;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .choice__list {
    flex-wrap: wrap;
  }
}
.choice__list > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
}
@media screen and (max-width: 1200px) {
  .choice__list > li {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .choice__list > li {
    width: 100%;
  }
}
.choice__list > li .order {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-main);
  background-color: #FDF1E9;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.choice__list > li h3 {
  font-size: 1.2rem;
  font-weight: 800;
}
.choice__list > li .line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 12px 0;
}
.choice__list > li > ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .choice__list > li > ul {
    width: 100%;
  }
}
.choice__list > li > ul > li {
  font-size: 0.95rem;
  list-style: disc;
  list-style-position: inside;
}
.choice__des {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #FFEEE2;
  border-radius: 0.5rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .choice__des {
    flex-direction: column;
  }
}
.choice__des img {
  width: 45px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .choice__des p {
    font-size: 0.9rem;
  }
  .choice__des p br {
    display: none;
  }
}
.choice__des p b {
  color: #424242;
}

.guide {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #f4f8ff;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .guide {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .guide {
    padding: 2rem 1rem;
  }
}
.guide__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .guide__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .guide__inner {
    gap: 1rem;
  }
}
.guide__title {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .guide__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .guide__title {
    font-size: 1.2rem;
  }
}
.guide__list {
  width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .guide__list {
    width: 100%;
    gap: 1rem;
  }
}
.guide__list li {
  border: 2px solid #ccc;
  border-radius: 1rem;
  padding: 1.5rem;
}
.guide__list li h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .guide__list li h3 {
    font-size: 1rem;
  }
}
.guide__list li p {
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .guide__list li p {
    font-size: 0.9rem;
  }
}

.compare {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #fff2e3;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .compare {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .compare {
    padding: 2rem 1rem;
  }
}
.compare__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .compare__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.compare .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .compare .txt {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.compare .txt h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .compare .txt h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .compare .txt h2 {
    font-size: 1.2rem;
  }
}
.compare .txt h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #595959;
  line-height: normal;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .compare .txt h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.compare .txt button {
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #fff;
  border-radius: 2rem;
  border: 1px solid #444;
  padding: 10px 1rem;
  cursor: pointer;
}
.compare .list {
  width: 50%;
  height: auto;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .compare .list {
    width: 100%;
  }
}
.compare .list > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-color: #ddd;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .compare .list > li {
    width: calc(50% - 8px);
    padding: 1rem;
  }
}
.compare .list > li:nth-of-type(1) {
  background-color: #FFBFA3;
}
.compare .list > li:nth-of-type(1) p,
.compare .list > li:nth-of-type(1) span {
  color: #2f2f2f;
}
.compare .list > li p {
  font-size: 1.4rem;
  font-weight: 800;
  color: #222;
  text-align: center;
  align-self: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .compare .list > li p {
    font-size: 1rem;
  }
}
.compare .list > li span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #515151;
}
@media screen and (max-width: 767px) {
  .compare .list > li span {
    font-size: 0.95rem;
  }
}

.faq {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #faf9f9;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .faq {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 2rem 1rem;
  }
}
.faq__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.faq__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .faq__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.2rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  border-bottom: 1px solid #eee;
  background-color: #edebeb;
  border-radius: 1rem;
}
.faq__item.is-active .faq__question .icon-arrow {
  transform: rotate(180deg);
}
.faq__item.is-active .faq__answer {
  max-height: 200px;
  padding: 0 1.5rem;
  border-top: 1px solid #ccc;
}
.faq__item.is-active .faq__answer .answer__content {
  opacity: 1;
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 1rem;
  }
}
.faq__question .title {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: normal;
}
.faq__question .title span {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-main);
  border-radius: 0.5rem;
}
.faq__question .title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__question .title h3 {
    max-width: 190px;
    font-size: 0.95rem;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.faq__question .icon-arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("../img/sort-down-solid.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  border-top: 0px solid transparent;
  transition: all 0.3s ease-in-out;
  padding: 0 1.5rem;
}
.faq__answer .answer__content {
  font-size: 1rem;
  word-break: keep-all;
  padding: 1.5rem 0;
  opacity: 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .faq__answer .answer__content {
    font-size: 0.9rem;
  }
}

.plan {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  .plan {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .plan {
    padding: 2rem 1rem;
  }
}
.plan__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.plan__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .plan__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .plan__title {
    font-size: 1.2rem;
    text-align: center;
    word-break: keep-all;
    text-wrap: balance;
  }
}
.plan__list {
  width: 100%;
  height: auto;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 1200px) {
  .plan__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .plan__list {
    flex-wrap: wrap;
  }
}
.plan__list li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 2px solid var(--color-main);
  background-color: #f9f9f9;
  border-radius: 2rem;
  line-height: normal;
  padding: 2rem;
}
.plan__list li img {
  width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .plan__list li img {
    width: 66px;
  }
}
.plan__list li h3 {
  font-size: 1.1rem;
}
.plan__list li p {
  color: #595959;
}
@media screen and (max-width: 1200px) {
  .plan__list li p br {
    display: none;
  }
}