/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
body {
  font-size: 16px;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

.fv {
  position: relative;
  height: auto;
  min-height: 450px;
}

.fv-flex {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../img/fv-bg-img.svg"), url("../img/fv-bg-grd.jpg");
  background-size: 100% auto, auto calc(100% - 35%);
  background-position: top center,
 top center;
  background-repeat: no-repeat, repeat-x;
}

@media (min-width: 768px) {
  .fv-flex {
    flex-direction: row;
    background-image: url("../img/fv-bg-img-pc.svg"), url("../img/fv-bg-grd.jpg");
    background-size: auto 100%,
 auto 100%;
    background-position: top right,
 top center;
  }
}

.fv-catch {
  width: 100%;
  background-image: linear-gradient(-180deg, transparent 30%, #f0f4f4 31%);
  background-position: center bottom;
  position: relative;
  z-index: 6;
}

@media (min-width: 768px) {
  .fv-catch {
    background: none;
    width: 40%;
    padding-top: 125px;
  }
}

.fv-catch .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5%;
}

@media (min-width: 768px) {
  .fv-catch .icon {
    transform: translateY(-50%);
  }
}

.fv-museum {
  width: 100%;
  position: relative;
  min-height: 350px;
  height: 70vw;
}

@media (min-width: 768px) {
  .fv-museum {
    height: auto;
    overflow: hidden;
  }
}

.fv-museum .anim01,
.fv-museum .anim02,
.fv-museum .anim03,
.fv-museum .anim04 {
  position: absolute;
  transition: all 1.4s cubic-bezier(0, 0.29, 0.41, 0.98);
  transform: translateY(400%);
  border-radius: 15px;
  border: 4px solid #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.fv-museum .anim01 {
  top: 30%;
  left: 5%;
  width: 35%;
  max-width: 220px;
}

@media (min-width: 768px) {
  .fv-museum .anim01 {
    top: 8%;
    left: 15px;
    width: 38%;
    max-width: 240px;
  }
}

.fv-museum .anim02 {
  top: 28%;
  left: 45%;
  width: 60%;
  max-width: 360px;
}

@media (min-width: 768px) {
  .fv-museum .anim02 {
    top: 20%;
    left: 45%;
    width: 62%;
    max-width: 380px;
  }
}

.fv-museum .anim03 {
  top: 70%;
  left: 60%;
  width: 40%;
  max-width: 220px;
}

@media (min-width: 768px) {
  .fv-museum .anim03 {
    top: 60%;
    left: 57%;
    width: 42%;
    max-width: 240px;
  }
}

.fv-museum .anim04 {
  top: 58%;
  left: 8%;
  width: 55%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .fv-museum .anim04 {
    left: 5%;
    top: 45%;
    width: 50%;
    max-width: 350px;
  }
}

.fv-museum .human {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 5;
  width: 15%;
  transform: translate(-50%, 50%);
}

@media (min-width: 768px) {
  .fv-museum .human {
    transform: none;
    left: 15vw;
    width: 10%;
  }
}

@media (min-width: 768px) {
  .fv-museum {
    width: 60%;
  }
}

.fv-about {
  background: #f0f4f4;
  padding: 0 15px 60px;
}

.fv-about-frame .title {
  text-align: center;
  transform: translateY(50%);
}

.fv-about-frame .text {
  border: 4px solid #ff8053;
  border-radius: 10px;
  background: #fff;
  padding: 60px 15px 30px;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}

.fv-btn {
  background: #f0f4f4;
}

.fv-btn-flex {
  display: flex;
  position: relative;
  z-index: 10;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .fv-btn-flex {
    padding-top: 0;
    gap: 20px;
    transform: translateY(-50%);
    flex-direction: row;
  }
}

.fv-btn .btn-document {
  background: #32b8b6;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  min-width: 300px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s;
  width: 80%;
}

@media (min-width: 768px) {
  .fv-btn .btn-document {
    width: auto;
    font-size: 18px;
  }
}

.fv-btn .btn-document:hover {
  transform: scale(0.95, 0.95);
}

.fv-btn .btn-document:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 15px;
  top: 50%;
  background: url("../img/btn-arrow.svg") no-repeat center center;
  transform: translateY(-50%);
}

.fv-btn .btn-inquiry {
  background: #f4a842;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  min-width: 300px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s;
  width: 80%;
}

@media (min-width: 768px) {
  .fv-btn .btn-inquiry {
    font-size: 18px;
    width: auto;
  }
}

.fv-btn .btn-inquiry:hover {
  transform: scale(0.95, 0.95);
}

.fv-btn .btn-inquiry:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 15px;
  top: 50%;
  background: url("../img/btn-arrow.svg") no-repeat center center;
  transform: translateY(-50%);
}

.sec01 {
  padding-bottom: 50px;
}

.sec01-title {
  text-align: center;
  padding: 10px 0;
  transform: translateX(-40px);
}

@media screen and (min-width: 480px) {
  .sec01-title {
    transform: translateX(0);
  }
}

.sec01-title img {
  max-width: 369px;
}

.sec01-flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .sec01-flex {
    flex-direction: row;
  }
}

.sec01-flex-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (min-width: 768px) {
  .sec01-flex-col {
    width: calc((100% - 30px) / 2);
  }
}

.sec01-flex-col .img {
  border-radius: 10px;
  overflow: hidden;
}

.sec01-flex-col .description {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.sec01-flex-col .description .title {
  width: 50%;
  background: url("../img/sec01-bg01.jpg");
  background-size: cover;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
}

.sec01-flex-col .description .belong {
  width: 50%;
  background: url("../img/sec01-bg02.jpg");
  background-size: cover;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  word-break: keep-all;
}

.sec01-flex-col .description .text {
  width: 100%;
  background: #f0f4f4;
  text-align: center;
  padding: 5px;
  line-height: 1.5;
}

.sec01-flex-col .description .text .size {
  font-size: 14px;
}

.sec01-flex-col .btn-orange {
  display: block;
  background: #ff8053;
  border: 2px solid #fff;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  position: relative;
  box-shadow: 2px 2px 4px -1px #777777;
  transition: all 0.4s ease;
}

.sec01-flex-col .btn-orange:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 15px;
  top: 50%;
  background: url("../img/btn-arrow.svg") no-repeat center center;
  transform: translateY(-50%);
}

.sec01-flex-col .btn-orange:hover {
  transform: scale(0.95, 0.95);
  box-shadow: 0 0 0px -1px #777777;
}

.sec02 {
  background: #f0f4f4;
  padding-bottom: 50px;
}

.sec02-title {
  text-align: center;
  transform: translateY(-10px);
}

.sec02-title img {
  max-width: 312px;
}

.sec02-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.sec02-flex-col {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 50%;
}

@media (min-width: 768px) {
  .sec02-flex-col {
    width: 50%;
  }
}

.sec02-flex-col .case {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  padding-top: 10px;
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .sec02-flex-col .case {
    width: 80%;
    margin: 0 auto;
  }
}

.sec02-flex-col .case-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.sec02-flex-col .case-title .num {
  padding: 3px;
  border-radius: 50%;
  line-height: 0;
}

.sec02-flex-col .case-col {
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
}

.sec02-flex-col .case-col .title {
  padding: 5px;
  padding-bottom: 10px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sec02-flex-col .case-col .title {
    font-size: 16px;
  }
}

.sec02-flex-col .case-col .contents {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (min-width: 768px) {
  .sec02-flex-col .case-col .contents {
    flex-direction: row;
    gap: 0;
  }
}

@media (min-width: 768px) {
  .sec02-flex-col .case-col .contents .img {
    width: 50%;
  }
}

.sec02-flex-col .case-col .contents .description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .sec02-flex-col .case-col .contents .description {
    width: 50%;
  }
}

.sec02-flex-col .case-col .contents .description .text {
  padding: 10px;
  font-size: 14px;
}

.sec02-flex-col .case-col .contents .description .btn {
  text-align: center;
  padding: 5px 10px;
  text-align: center;
  border-style: solid;
  border-width: 2px;
  border-radius: 30px;
  font-weight: 500;
  min-width: 8rem;
  box-shadow: 0px 0px 4px -1px #777777;
  transition: all 0.4s ease;
  padding-bottom: 8px;
  font-size: 16px;
}

.sec02-flex-col .case-col .contents .description .btn:hover {
  transform: scale(0.95, 0.95);
  box-shadow: 0 0 0px -1px #777777;
}

.sec02-flex .yellow-title {
  text-align: center;
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.sec02-flex .yellow-area {
  text-align: center;
  position: relative;
}

.sec02-flex .yellow-area hr {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 100%;
  height: 4px;
  background: #f4a842;
  margin: 0;
}

.sec02-flex .yellow .case-title {
  color: #f4a842;
  font-weight: 500;
}

.sec02-flex .yellow .case-title .num {
  background: #f4a842;
}

.sec02-flex .yellow .case-col .description .btn {
  border-color: #f4a842;
}

.sec02-flex .yellow .case-col .description .btn:hover {
  background: #f4a842;
  color: #fff;
}

.sec02-flex .blue {
  border-left: 2px dotted #cccccc;
  position: relative;
}

.sec02-flex .blue-title {
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.sec02-flex .blue-area {
  text-align: center;
  position: relative;
}

.sec02-flex .blue-area:before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  height: calc(50% + 10px);
  width: 1px;
  border-left: 2px solid #f0f4f4;
}

.sec02-flex .blue-area hr {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  margin: 0;
  width: 100%;
  height: 4px;
  background: #32b8b6;
}

.sec02-flex .blue .case-title {
  color: #32b8b6;
  font-weight: 500;
}

.sec02-flex .blue .case-title .num {
  background: #32b8b6;
}

.sec02-flex .blue .case-col .description .btn {
  border-color: #32b8b6;
}

.sec02-flex .blue .case-col .description .btn:hover {
  background: #32b8b6;
  color: #fff;
}

.sec02-more {
  display: flex;
  justify-content: center;
}

.sec02-more .btn {
  display: inline-block;
  min-width: 350px;
}

.sec02-more .btn-orange {
  display: block;
  background: #ff8053;
  border: 2px solid #fff;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  position: relative;
  box-shadow: 2px 2px 4px -1px #777777;
  transition: all 0.4s ease;
}

.sec02-more .btn-orange:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 15px;
  top: 50%;
  background: url("../img/btn-arrow.svg") no-repeat center center;
  transform: translateY(-50%);
}

.sec02-more .btn-orange:hover {
  transform: scale(0.95, 0.95);
  box-shadow: 0 0 0px -1px #777777;
}

.sec03 {
  background: #f0f4f4;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .sec03 {
    padding-bottom: 50px;
  }
}

.sec03-title {
  width: 100%;
  color: #fff;
  font-size: 22px;
  background: url("../img/sec03-bg01.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 20px 15px 50px;
  clip-path: polygon(50% 100%, 100% 75%, 100% 0, 0 0, 0 75%);
  font-weight: 500;
}

@media (min-width: 768px) {
  .sec03-title {
    font-size: 32px;
    padding: 30px 15px 50px;
  }
}

.sec03-title .orange {
  color: #ff8053;
  padding: 3px;
  background: #fff;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
}

.sec03-flex {
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .sec03-flex {
    flex-direction: row;
    align-items: flex-start;
  }
}

.sec04 {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .sec04 {
    padding: 50px 0;
  }
}

.sec04-title {
  text-align: center;
}

.sec04-flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}

@media (min-width: 768px) {
  .sec04-flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.sec04-flex-col {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .sec04-flex-col {
    width: calc((100% - 30px) / 2);
  }
}

@media (min-width: 768px) {
  .sec04-flex-col.w100 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .sec04-flex-col.left {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .sec04-flex-col.right {
    justify-content: flex-start;
  }
}

.sec04-flex-mov {
  width: 100%;
  text-align: center;
}

.sec04-flex-mov .title {
  border-radius: 25px 25px 0 0;
  background: #ff8053;
  color: #fff;
  position: relative;
  display: inline-flex;
  min-width: 250px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 2;
  /* transform: translateY(50%); */
  /* border: 3px solid #fff; */
  padding-left: 40px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}

@media (min-width: 768px) {
  .sec04-flex-mov .title {
    font-size: 18px;
  }
}

.sec04-flex-mov .title .num {
  position: absolute;
  height: 100%;
  left: 0;
  aspect-ratio: 1 / 1;
  background: #fff;
  color: #ff8053;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  /* transform: scale(1.05); */
  border: 3px solid #ff8053;
  border-bottom-left-radius: 0;
}

.sec04-flex-mov .mov {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ccc;
  /* border-radius: 0 0 10px 10px; */
  background-color: #ff8053;
  overflow: hidden;
  /* border-top: 2px solid white; */
  display: inline-flex;
}

.sec04-flex-mov .mov img {
  width: 100%;
  height: auto;
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .sec04-flex-mov {
    width: calc((100% - 45px) / 3);
  }
}

.sec05 {
  padding: 30px 15px 15px;
  background: #f0f4f4;
}

@media (min-width: 768px) {
  .sec05 {
    padding: 70px 15px 30px;
  }
}

.sec05-story {
  display: flex;
  flex-direction: column;
  border: 4px solid #ff8053;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .sec05-story {
    flex-direction: row;
  }
}

.sec05-story-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #ff8053;
  position: relative;
  padding: 10px 5px;
  border-radius: 2px 2px 0 0;
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sec05-story-title {
    width: 30%;
    border-radius: 2px 0 0 2px;
    font-size: 22px;
  }
}

.sec05-story-title .icon {
  position: absolute;
  top: -8px;
  left: -12px;
  width: 50px;
}

@media (min-width: 768px) {
  .sec05-story-title .icon {
    width: auto;
    top: auto;
    left: auto;
    bottom: -15px;
    right: -15px;
  }
}

.sec05-story-text {
  padding: 15px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .sec05-story-text {
    border-radius: 0 10px 10px 0;
    padding: 30px;
    width: 70%;
  }
}

.sec05-tab {
  margin-top: 30px;
}

.sec05-tab-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0px;
}

@media (min-width: 768px) {
  .sec05-tab-btn {
    gap: 30px;
  }
}

.sec05-tab-btn .tab-orange,
.sec05-tab-btn .tab-green {
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  margin-bottom: -3px;
  position: relative;
  gap: 0;
  clip-path: polygon(1% 0, 99% 0, 99% 100%, 1% 100%);
}

@media screen and (min-width: 455px) {
  .sec05-tab-btn .tab-orange,
  .sec05-tab-btn .tab-green {
    margin-bottom: -4px;
  }
}

.sec05-tab-btn .tab-orange {
  background: #ffefdb;
}

.sec05-tab-btn .tab-green {
  background: #e5f6f6;
}

.sec05-tab-btn .tab-orange.active {
  z-index: 3;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 2%, white 2%, white 98%, rgba(255, 255, 255, 0) 100%);
}

.sec05-tab-btn .tab-green.active {
  z-index: 3;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 2%, white 2%, white 98%, rgba(255, 255, 255, 0) 100%);
}

.sec05-tab .contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  padding: 15px 0 0;
  position: relative;
  z-index: 2;
}

.sec05-tab .contents .inner {
  padding: 15px;
}

.sec05-tab .contents .merit {
  margin-top: 30px;
}

.sec05-tab .contents .merit-title {
  background: #f4a842;
  color: #fff;
  text-align: center;
  padding: 8px 5px;
}

.sec05-tab .contents .merit-flex {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .sec05-tab .contents .merit-flex {
    flex-direction: row;
  }
}

.sec05-tab .contents .merit-flex-col {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  flex-direction: column;
}

.sec05-tab .contents .merit-flex-col:nth-child(odd) {
  background: #ffece5;
}

@media (min-width: 768px) {
  .sec05-tab .contents .merit-flex-col {
    padding: 10px;
    flex-direction: row;
    width: calc(100% / 3);
  }
}

.sec05-tab .contents .merit-flex-col .col {
  width: 100%;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 768px) {
  .sec05-tab .contents .merit-flex-col .col {
    text-align: center;
  }
}

.sec05-tab .contents .merit-flex-col .col img {
  width: 50%;
}

@media (min-width: 768px) {
  .sec05-tab .contents .merit-flex-col .col img {
    width: 40%;
  }
}

.sec05-tab .contents .merit-subtitle {
  color: #fff;
  background: #ff8053;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .merit-subtitle {
    font-size: 16px;
  }
}

.sec05-tab .contents .recommend {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}

.sec05-tab .contents .recommend-title {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  background: #333;
  padding: 10px 20px;
  border-radius: 30px;
}

.sec05-tab .contents .recommend-title:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: calc(50% - 7px);
  width: 15px;
  height: 10px;
  background: #333;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.sec05-tab .contents .recommend-flex {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .sec05-tab .contents .recommend-flex {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

.sec05-tab .contents .recommend-flex .col {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  font-size: 16px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .recommend-flex .col {
    font-size: 20px;
    width: 50%;
  }
}

.sec05-tab .contents .recommend-flex .check {
  width: 25px;
  border-radius: 50%;
  background: #333;
}

.sec05-tab .contents .price {
  background: #ffefdb;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.sec05-tab .contents .price-icon {
  position: relative;
  background: #333;
  color: #fff;
  display: inline-block;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  margin-top: -5px;
  padding: 30px 15px;
  margin-bottom: 10px;
  border-radius: 0 0 15px 15px;
  box-shadow: 2px 2px 4px -1px #777777;
}

@media (min-width: 768px) {
  .sec05-tab .contents .price-icon {
    font-size: 22px;
    padding: 20px 15px;
    margin-bottom: 10px;
    border-radius: 0 0 15px 15px;
  }
}

.sec05-tab .contents .price-icon:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0;
  right: -5px;
  background: #111;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.sec05-tab .contents .price-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .price-flex {
    flex-direction: row;
  }
}

.sec05-tab .contents .price-flex .col2 {
  padding: 15px;
  padding-top: 5px;
  max-width: 220px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .price-flex .col2 {
    padding: 15px;
  }
}

@media (min-width: 768px) {
  .sec05-tab .contents .price-flex img {
    max-width: 250px;
  }
}

.sec05-tab .contents .flow-title {
  color: #fff;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background: #333;
  font-weight: 500;
  padding: 8px 5px;
}

.sec05-tab .contents .flow-step {
  margin-top: 5px;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.sec05-tab .contents .flow-step:after {
  content: "";
  position: absolute;
  left: calc((100% - 15px) / 10);
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 2px dotted #000;
}

@media (min-width: 768px) {
  .sec05-tab .contents .flow-step:after {
    top: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    border-left: none;
    border-bottom: 2px dotted #000;
  }
}

@media (min-width: 768px) {
  .sec05-tab .contents .flow-step {
    flex-direction: row;
    gap: 15px;
  }
}

.sec05-tab .contents .flow-step .step {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .sec05-tab .contents .flow-step .step {
    flex-direction: column;
    width: calc((100% - 45px) / 4);
  }
}

.sec05-tab .contents .flow-step .step-title {
  background: #333;
  padding: 10px;
  text-align: center;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .sec05-tab .contents .flow-step .step-title {
    padding: 5px;
    width: 100%;
  }
}

.sec05-tab .contents .flow-step .step-text {
  padding: 15px;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  background: #ccc;
}

@media (min-width: 768px) {
  .sec05-tab .contents .flow-step .step-text {
    width: 100%;
  }
}

.sec05-tab .contents .last {
  border: 2px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
}

.sec05-tab .contents .last-title {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 8px 5px;
}

.sec05-tab .contents .last-text {
  padding: 15px;
  display: flex;
  justify-content: center;
}

.sec05-tab .contents .last-text ol {
  list-style: decimal;
  margin-left: 1.5rem;
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 20px;
}

.sec05-tab .contents .last-text .caption {
  text-align: left;
  line-height: 1.5;
  font-size: 12px;
}

.sec05-tab .contents .require {
  background: #f2f2f2;
  text-align: center;
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .require {
    padding-bottom: 30px;
  }
}

.sec05-tab .contents .require-title {
  background: #333;
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
}

.sec05-tab .contents .require-flex {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .require-flex {
    flex-direction: row;
  }
}

.sec05-tab .contents .require-flex .col,
.sec05-tab .contents .require-flex .col2 {
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .require-flex .col,
  .sec05-tab .contents .require-flex .col2 {
    width: 50%;
    padding: 0 30px;
  }
}

.sec05-tab .contents .require-flex .col .subtitle,
.sec05-tab .contents .require-flex .col2 .subtitle {
  font-weight: 500;
}

.sec05-tab .contents .require-flex .col .text,
.sec05-tab .contents .require-flex .col2 .text {
  padding: 15px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .require-flex .col:last-of-type,
  .sec05-tab .contents .require-flex .col2:last-of-type {
    border-top: none;
    border-left: 1px solid #b3b3b3;
  }
}

.sec05-tab .contents .require-flex .col2 {
  width: 100%;
}

.sec05-tab .contents .require-flex .col2 .subtitle {
  text-align: center;
}

.sec05-tab .contents .require-inner-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .sec05-tab .contents .require-inner-flex {
    flex-direction: row;
  }
}

.sec05-tab .contents-orange {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.35);
}

.sec05-tab .contents-orange .recommend-title {
  background: #f4a842;
}

.sec05-tab .contents-orange .recommend-title:after {
  background: #f4a842;
}

.sec05-tab .contents-orange .recommend .check {
  background: #f4a842;
}

.sec05-tab .contents-orange .price-icon {
  background: #ff8053;
}

.sec05-tab .contents-orange .price-icon:after {
  background: #b6591f;
}

.sec05-tab .contents-orange .price-flex {
  padding-top: 10px;
}

.sec05-tab .contents-orange .price-flex .col1 {
  width: 80%;
  text-align: center;
  background: #fff;
  font-size: 12px;
  padding: 3px;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .sec05-tab .contents-orange .price-flex .col1 {
    width: auto;
  }
}

.sec05-tab .contents-orange .price-flex .col2 {
  padding: 10px;
}

.sec05-tab .contents-orange .flow-title {
  background: #f4a842;
}

.sec05-tab .contents-orange .flow-step .step-title {
  background: #f4a842;
}

.sec05-tab .contents-orange .flow-step .step-text {
  background: #ffefdb;
}

.sec05-tab .contents-orange .flow-step:after {
  border-color: #f4a842;
}

.sec05-tab .contents-orange .last-title {
  background: #f4a842;
}

.sec05-tab .contents-orange .require-title {
  background: #f4a842;
}

.sec05-tab .contents-green {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.35);
  display: none;
}

.sec05-tab .contents-green .recommend {
  background: url("../img/sec05-img04.png") no-repeat right bottom;
  background-size: 30% auto;
  background-position: right 30px bottom 0;
}

@media (min-width: 768px) {
  .sec05-tab .contents-green .recommend {
    background-size: contain;
  }
}

.sec05-tab .contents-green .recommend-title {
  background: #36486b;
}

.sec05-tab .contents-green .recommend-title:after {
  background: #36486b;
}

.sec05-tab .contents-green .recommend .check {
  background: #36486b;
}

.sec05-tab .contents-green .price {
  background: #e5f6f6;
}

.sec05-tab .contents-green .price-icon {
  background: #36486b;
}

.sec05-tab .contents-green .price-icon:after {
  background: #21355c;
}

.sec05-tab .contents-green .price-flex {
  padding-top: 10px;
}

.sec05-tab .contents-green .price-flex .col1 {
  width: 80%;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 2px solid #32b8b6;
  padding-bottom: 3px;
}

@media (min-width: 768px) {
  .sec05-tab .contents-green .price-flex .col1 {
    width: auto;
  }
}

@media (min-width: 768px) {
  .sec05-tab .contents-green .price-flex .col2 {
    max-width: 350px;
  }
}

.sec05-tab .contents-green .flow-title {
  background: #32b8b6;
}

.sec05-tab .contents-green .flow-step .step-title {
  background: #32b8b6;
}

.sec05-tab .contents-green .flow-step .step-text {
  background: #e5f6f6;
}

.sec05-tab .contents-green .flow-step:after {
  border-color: #32b8b6;
}

.sec05-tab .contents-green .require-title {
  background: #32b8b6;
}

.sec05-tab .contents .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .sec05-tab .contents .title {
    flex-direction: row;
  }
}

.sec05-tab .contents .title-text {
  font-weight: 500;
  font-size: 14px;
  padding-top: 15px;
}

@media (min-width: 768px) {
  .sec05-tab .contents .title-text {
    padding: 0;
    font-size: 20px;
    width: 60%;
    text-align: center;
  }
}

.sec05-tab .contents-orange {
  border: 3px solid #f4a842;
  background: #fff;
}

@media screen and (min-width: 455px) {
  .sec05-tab .contents-orange {
    border: 4px solid #f4a842;
  }
}

.sec05-tab .contents-green {
  border: 3px solid #32b8b6;
}

@media screen and (min-width: 455px) {
  .sec05-tab .contents-green {
    border: 4px solid #32b8b6;
  }
}

.cta {
  padding: 30px 15px;
  background: #f0f4f4;
}

.cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta-flex {
    flex-direction: row;
    justify-content: space-around;
    gap: 50px;
  }
}

.cta-flex .tel {
  padding-top: 35px;
}

@media (min-width: 768px) {
  .cta-flex .tel {
    padding-top: 0;
  }
}

.cta-btn {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
  display: inline-block;
}

.cta-btn:hover{
  transform: scale(0.95, 0.95);
  filter: none;
}

.cta-tel {
  width: 100%;
}

.footerbanner-area {
  padding: 0 15px 50px;
  max-width: 550px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footerbanner-area {
    max-width: none;
    padding: 0 15px 50px;
  }
}

.footerbanner-area-btn {
  margin-top: 45px;
  display: block;
  transition: all 0.5s;
}

.footerbanner-area-btn:hover {
  opacity: 0.5;
}

.footerbanner-text {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .footerbanner-text {
    font-size: 16px;
  }
}

.fixbanner {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 11;
  display: none;
}

@media (min-width: 768px) {
  .fixbanner {
    display: block;
  }
}

.fixbanner-flex {
  display: flex;
  flex-direction: column;
  position: relative;
}

.fixbanner-flex .btn-document {
  background: #32b8b6;
  color: #fff;
  text-align: center;
  padding: 15px;
  min-width: 200px;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.4s;
}

@media (min-width: 768px) {
  .fixbanner-flex .btn-document {
    font-size: 16px;
  }
}

.fixbanner-flex .btn-document:hover {
  opacity: 0.6;
}

.fixbanner-flex .btn-inquiry {
  background: #f4a842;
  color: #fff;
  text-align: center;
  padding: 15px;
  min-width: 200px;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.4s;
}

@media (min-width: 768px) {
  .fixbanner-flex .btn-inquiry {
    font-size: 16px;
  }
}

.fixbanner-flex .btn-inquiry:hover {
  opacity: 0.6;
}
/*# sourceMappingURL=top.css.map */