@charset "UTF-8";
/* white-space:nowrap */
.nowrap {
  white-space: nowrap;
}

/* border:1px solid red */
/* media-query */
/* br(줄바꿈) */
.br1920 {
  display: none;
}

@media (min-width: 1280px) {
  .br1920 {
    display: block;
  }
}
.br1920-2 {
  display: block;
}

@media (min-width: 1280px) {
  .br1920-2 {
    display: none;
  }
}
.br1280 {
  display: none;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .br1280 {
    display: block;
  }
}
.br1280-2 {
  display: block;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .br1280-2 {
    display: none;
  }
}
.br1280-3 {
  display: none;
}

@media (max-width: 1279px) {
  .br1280-3 {
    display: block;
  }
}
.br1280-4 {
  display: block;
}

@media (max-width: 1279px) {
  .br1280-4 {
    display: none;
  }
}
.br768 {
  display: none;
}

@media (max-width: 767px) {
  .br768 {
    display: block;
  }
}
.br768-2 {
  display: block;
}

@media (max-width: 767px) {
  .br768-2 {
    display: none;
  }
}
.br768-3 {
  display: none;
}

@media (min-width: 767px) {
  .br768-3 {
    display: block;
  }
}
.br768-4 {
  display: block;
}

@media (min-width: 767px) {
  .br768-4 {
    display: none;
  }
}
.br822 {
  display: block;
}

@media (max-width: 822px) {
  .br822 {
    display: none;
  }
}
.br500 {
  display: none;
}

@media (max-width: 500px) {
  .br500 {
    display: block;
  }
}
.br500-2 {
  display: block;
}

@media (max-width: 500px) {
  .br500-2 {
    display: none;
  }
}
.br430 {
  display: none;
}

@media (max-width: 430px) {
  .br430 {
    display: block;
  }
}
.br430-2 {
  display: block;
}

@media (max-width: 430px) {
  .br430-2 {
    display: none;
  }
}
.br400 {
  display: none;
}

@media (max-width: 400px) {
  .br400 {
    display: block;
  }
}
.br400-2 {
  display: block;
}

@media (max-width: 400px) {
  .br400-2 {
    display: none;
  }
}
.br868 {
  display: block;
}

@media (min-width: 768px) and (max-width: 868px) {
  .br868 {
    display: none;
  }
}
.br999 {
  display: block;
}

@media (min-width: 768px) and (max-width: 999px) {
  .br999 {
    display: none;
  }
}
.show-pc {
  display: none;
}

@media (min-width: 768px) {
  .show-pc {
    display: block;
  }
}
.show-mo {
  display: none;
}

@media (max-width: 767px) {
  .show-mo {
    display: block;
  }
}
/* animation */
@keyframes dataFadeDownAni {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dataFadeAni {
  100% {
    opacity: 1;
  }
}
@keyframes borderColorCircle {
  0% {
    border-color: transparent;
  }
  25% {
    border-color: transparent #666 transparent transparent;
  }
  50% {
    border-color: transparent #666 #666 transparent;
  }
  75% {
    border-color: transparent #666 #666 #666;
  }
  100% {
    border-color: #666;
  }
}
@keyframes borderColorCircleReverse {
  0% {
    border-color: #666;
  }
  25% {
    border-color: #666 #666 #666 transparent;
  }
  50% {
    border-color: #666 #666 transparent transparent;
  }
  75% {
    border-color: #666 transparent transparent transparent;
  }
  100% {
    border-color: transparent;
  }
}
[data-ani~=fade-up] {
  opacity: 0;
  transform: translateY(100px);
}

[data-ani~=fade-down] {
  opacity: 0;
  transform: translateY(-100px);
}

[data-ani~=fade] {
  opacity: 0;
}

.animate[data-ani~=fade-up] {
  animation: dataFadeDownAni 1.5s forwards;
}

.animate[data-ani~=fade-down] {
  animation: dataFadeDownAni 1.5s forwards;
}

.animate[data-ani~=fade] {
  animation: dataFadeAni 1.5s forwards;
}

.animate[data-ani~=delay0] {
  animation-delay: 0s;
}

.animate[data-ani~=delay1] {
  animation-delay: 0.1s;
}

.animate[data-ani~=delay2] {
  animation-delay: 0.2s;
}

.animate[data-ani~=delay3] {
  animation-delay: 0.3s;
}

.animate[data-ani~=delay4] {
  animation-delay: 0.4s;
}

.animate[data-ani~=delay5] {
  animation-delay: 0.5s;
}

.animate[data-ani~=delay6] {
  animation-delay: 0.6s;
}

.animate[data-ani~=delay7] {
  animation-delay: 0.7s;
}

.animate[data-ani~=delay8] {
  animation-delay: 0.8s;
}

.animate[data-ani~=delay9] {
  animation-delay: 0.9s;
}

.animate[data-ani~=delay10] {
  animation-delay: 1s;
}

.animate[data-ani~=delay11] {
  animation-delay: 1.1s;
}

.animate[data-ani~=delay12] {
  animation-delay: 1.2s;
}

.animate[data-ani~=delay13] {
  animation-delay: 1.3s;
}

.animate[data-ani~=delay14] {
  animation-delay: 1.4s;
}

.animate[data-ani~=delay15] {
  animation-delay: 1.5s;
}

.animate[data-ani~=delay16] {
  animation-delay: 1.6s;
}

.animate[data-ani~=delay17] {
  animation-delay: 1.7s;
}

.animate[data-ani~=delay18] {
  animation-delay: 1.8s;
}

.animate[data-ani~=delay19] {
  animation-delay: 1.9s;
}

.animate[data-ani~=delay20] {
  animation-delay: 2s;
}

.animate[data-ani~=delay21] {
  animation-delay: 2.1s;
}

.animate[data-ani~=delay22] {
  animation-delay: 2.2s;
}

/* main-swiper */
.main-swiper {
  position: relative;
  overflow: hidden;
  height: 89.7rem;
}
.main-swiper .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.main-swiper .swiper-wrapper .swiper-slide .txt {
  position: relative;
  left: 18.9%;
}
.main-swiper .swiper-wrapper .swiper-slide .txt > span {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 3.3rem;
}
.main-swiper .swiper-wrapper .swiper-slide .txt h2 {
  font-size: 5.2rem;
  color: #fff;
  padding-bottom: 2.1rem;
}
.main-swiper .swiper-wrapper .swiper-slide .txt h2 b ruby rt {
  font-size: 4.7rem;
  position: relative;
  top: 0.8rem;
}
.main-swiper .swiper-wrapper .swiper-slide .txt p {
  color: #fff;
  padding-bottom: 6rem;
  line-height: 1.3636363636;
  font-size: 2.2rem;
}
.main-swiper .swiper-wrapper .swiper-slide .txt a {
  color: #fff;
  width: 27.5rem;
  height: 8.1rem;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 100px;
  border: 3px solid #fff;
  line-height: 7.6rem;
  text-align: center;
}
.main-swiper .swiper-wrapper .swiper-slide.item01 > .txt > span {
  margin-bottom: 0;
}
.main-swiper .main-arrow {
  background-repeat: no-repeat;
  top: 48.3%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
  position: absolute;
}
.main-swiper .main-swiper-left {
  background-image: url("../img/main_swiper_prev.png");
  left: 9.3%;
  width: 44px;
  height: 41px;
}
.main-swiper .main-swiper-right {
  background-image: url("../img/main_swiper_next.png");
  right: 9.3%;
  width: 49px;
  height: 40px;
}
.main-swiper .swiper-pagination {
  bottom: 10.2%;
}
.main-swiper .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  background-color: #fff;
  opacity: 1;
}
.main-swiper .swiper-pagination-bullet-active {
  background-color: #41f3d4;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.82rem;
}

@media (max-width: 1279px) {
  .main-swiper {
    height: 75vh;
    margin-top: 46px;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt {
    left: 15%;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt > span {
    font-size: 0.9rem;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt h2 {
    font-size: 4rem;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt p {
    font-size: 17px;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt a {
    font-size: 1.7rem;
    height: 7rem;
    line-height: 6.5rem;
  }
  .main-swiper .main-arrow {
    display: none;
  }
  .main-swiper .swiper-pagination {
    bottom: 10.2%;
  }
  .main-swiper .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    background-color: #fff;
    opacity: 1;
  }
  .main-swiper .swiper-pagination-bullet-active {
    background-color: #41f3d4;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.7rem;
  }
}
@media (max-width: 767px) {
  .main-swiper {
    height: 80vh;
    margin-top: 43px;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt {
    padding: 0 20px 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt > span {
    font-size: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt h2 {
    font-size: 3.2rem;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt h2 b ruby rt {
    font-size: 4.7rem;
    position: relative;
    top: 2rem;
    height: 20px;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt p {
    font-size: 1.4rem;
  }
  .main-swiper .swiper-wrapper .swiper-slide .txt a {
    width: 22rem;
    height: 6rem;
    line-height: 5.5rem;
    font-size: 1.5rem;
    border: 2px solid #fff;
  }
  .main-swiper .main-arrow {
    display: none;
  }
  .main-swiper .swiper-pagination {
    bottom: 10.2%;
  }
  .main-swiper .swiper-pagination-bullet {
    width: 0.9rem;
    height: 0.9rem;
    background-color: #fff;
    opacity: 1;
  }
  .main-swiper .swiper-pagination-bullet-active {
    background-color: #41f3d4;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.5rem;
  }
}
.iframe-wrap {
  position: absolute;
  width: 100%;
  height: 80rem;
  top: 192px;
  left: 0;
  overflow: hidden;
}
.iframe-wrap .iframe-inner {
  position: relative;
  padding-bottom: 70%;
}
.iframe-wrap .iframe-inner iframe {
  width: 124%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.iframe-wrap .iframe-inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

@media (max-width: 1279px) {
  .iframe-wrap {
    position: absolute;
    width: 100%;
    height: 75vh;
    top: 49px;
    left: 0;
  }
  .iframe-wrap .iframe-inner {
    position: relative;
    padding-bottom: 90%;
  }
  .iframe-wrap .iframe-inner iframe {
    width: 160%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .iframe-wrap {
    position: absolute;
    width: 100%;
    height: 80vh;
    top: 43px;
    left: 0;
  }
  .iframe-wrap .iframe-inner {
    position: relative;
    padding-bottom: 180%;
  }
  .iframe-wrap .iframe-inner iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* section01 */
#section01 {
  padding-top: 17.9rem;
  padding-bottom: 14.9rem;
}
#section01 > ul {
  padding: 0 20px;
  width: 93.2rem;
  margin: 9rem auto 0;
  display: grid;
  grid-template-columns: 37rem 37rem 19.2rem;
  row-gap: 9.5rem;
}
#section01 > ul li {
  position: relative;
  height: 22rem;
}
#section01 > ul li .txt {
  position: absolute;
  top: 9.3rem;
}
#section01 > ul li .txt h3 {
  font-size: 2.8rem;
  font-weight: 600;
  padding-bottom: 2.7rem;
}
#section01 > ul li .txt p {
  font-size: 1.6rem;
}
#section01 > ul li:nth-child(5) > .icon {
  position: relative;
  height: 62px;
}
#section01 > ul li:nth-child(5) > .icon > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1279px) {
  #section01 {
    padding-top: 17rem;
    padding-bottom: 16rem;
  }
  #section01 > ul {
    padding: 0 30px;
    width: 75.2rem;
    margin: 9rem auto 0;
    grid-template-columns: 31rem 31rem 13.2rem;
    row-gap: 5rem;
  }
  #section01 > ul li {
    position: relative;
    height: 23rem;
  }
  #section01 > ul li .icon img {
    transform: scale(0.7);
  }
  #section01 > ul li .txt {
    position: absolute;
    top: 9.3rem;
  }
  #section01 > ul li .txt h3 {
    font-size: 2.1rem;
    padding-bottom: 2.7rem;
  }
  #section01 > ul li .txt p {
    font-size: 1.5rem;
  }
  #section01 > ul li:nth-child(5) > .icon > img {
    transform: translateY(-50%) scale(0.7);
  }
}
@media (max-width: 767px) {
  #section01 {
    padding: 10rem 0 20rem;
  }
  #section01 .txt-area {
    padding: 0 16px;
  }
  #section01 .txt-area p br {
    display: block;
  }
  #section01 > ul {
    padding: 0 20px;
    width: unset;
    margin: 0;
    padding-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: unset;
    row-gap: 12rem;
  }
  #section01 > ul li {
    width: 50%;
    position: relative;
    height: unset;
    text-align: center;
  }
  #section01 > ul li .icon img {
    transform: scale(0.45);
  }
  #section01 > ul li .txt {
    width: 100%;
    position: absolute;
    top: 7.5rem;
  }
  #section01 > ul li .txt h3 {
    font-size: 2.1rem;
    padding-bottom: 2rem;
  }
  #section01 > ul li .txt p {
    font-size: 1.5rem;
  }
  #section01 > ul li:nth-child(5) > .icon > img {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.45);
  }
}
/* section02 */
#section02 {
  position: relative;
  background-color: #f8f8f8;
  padding: 10.9rem 0 10.6rem;
}
#section02 .inner-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 0 40px;
}
#section02 .inner-box .txt {
  padding-right: 2.4479166667vw;
}
#section02 .inner-box .txt h3 {
  font-size: 4.2rem;
  font-family: "Nanum";
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 1.1428571429;
  padding-bottom: 1.8rem;
  color: #282828;
}
#section02 .inner-box .txt h3 b {
  font-weight: 700;
  letter-spacing: -0.07em;
}
#section02 .inner-box .txt .sub-txt p {
  font-family: "Nanum";
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.075em;
  line-height: 1.3055555556;
  color: #282828;
  padding-bottom: 8.4rem;
}
#section02 .inner-box .txt .sub-txt a {
  font-family: "Nanum";
  font-weight: 600;
  font-size: 1.8rem;
  color: #005d7d;
  letter-spacing: -0.075em;
  background-color: #fff;
  display: inline-block;
  padding: 1.8rem 5.975rem;
  border: 1px solid #005d7d;
  border-radius: 100px;
}
#section02 .inner-box .video-area {
  display: flex;
  align-items: center;
  gap: 1.1979166667vw;
}
#section02 .inner-box .video-area .thumbnail {
  pointer-events: none;
}
#section02 .inner-box .video-area .thumbnail iframe {
  width: 66.8rem;
  height: 37.3rem;
  filter: brightness(0%) invert(1);
  pointer-events: none;
}
#section02 .inner-box .video-area .list {
  padding-right: 1.0416666667vw;
  width: 32rem;
  height: 56.5rem;
  overflow-y: scroll;
}
#section02 .inner-box .video-area .list li {
  cursor: pointer;
  position: relative;
  padding: 0.7rem 0;
  pointer-events: none;
}
#section02 .inner-box .video-area .list li img {
  filter: brightness(0) invert(1);
}
#section02 .inner-box .video-area .list li .title {
  opacity: 0;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 0.7rem;
  left: 0;
  height: calc(100% - 1.4rem - 7px);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: 700;
  font-size: 1.85rem;
  font-family: "Nanum";
  padding-left: 15px;
  padding-top: 15px;
  padding-right: 15px;
}
#section02 .inner-box .video-area .list li .title.active {
  opacity: 1;
}
#section02 .inner-box .video-area .list::-webkit-scrollbar {
  width: 9px;
  background-color: #fff;
  border-radius: 10px;
}
#section02 .inner-box .video-area .list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ddd;
}
#section02::after {
  width: 46.9%;
  right: 0;
  height: 100%;
  top: 0;
  background-color: #005d7d;
  content: "";
  display: block;
  position: absolute;
}

@media (max-width: 1399px) {
  #section02 .inner-box {
    justify-content: center;
    padding: 0 20px 0 40px;
  }
  #section02 .inner-box .txt {
    padding-right: 2.4479166667vw;
  }
  #section02 .inner-box .txt .sub-txt p {
    padding-bottom: 7.5rem;
  }
  #section02 .inner-box .video-area {
    gap: 0;
    flex-direction: column;
  }
  #section02 .inner-box .video-area .thumbnail {
    padding-bottom: 3px;
  }
  #section02 .inner-box .video-area .thumbnail iframe {
    width: 66.8rem;
    height: 37.3rem;
  }
  #section02 .inner-box .video-area .list {
    display: flex;
    padding-right: 0;
    width: 66.8rem;
    height: unset;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 10px;
  }
  #section02 .inner-box .video-area .list li {
    width: 250px;
    min-width: 250px;
    padding: 0rem 0;
    margin-right: 10px;
  }
  #section02 .inner-box .video-area .list li .title {
    top: 0;
    height: calc(100% - 10px);
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
  }
  #section02 .inner-box .video-area .list::-webkit-scrollbar {
    height: 7.5px;
    background-color: #fff;
    border-radius: 5px;
  }
  #section02 .inner-box .video-area .list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #ddd;
  }
}
@media (max-width: 945px) {
  #section02 .inner-box {
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
  }
  #section02 .inner-box .txt {
    padding-right: 0;
    display: flex;
    width: 66.8rem;
    padding-bottom: 7.5rem;
    justify-content: space-between;
  }
  #section02 .inner-box .txt .sub-txt p {
    padding-bottom: 3rem;
    position: relative;
    padding-left: 10px;
  }
  #section02 .inner-box .txt .sub-txt a {
    padding: 1.7rem 5.1rem;
  }
  #section02 .inner-box .video-area {
    gap: 0;
    flex-direction: column;
  }
  #section02 .inner-box .video-area .thumbnail {
    padding-bottom: 3px;
  }
  #section02 .inner-box .video-area .thumbnail iframe {
    width: 66.8rem;
    height: 37.3rem;
  }
  #section02 .inner-box .video-area .list {
    width: 66.8rem;
    height: unset;
    padding-bottom: 10px;
  }
  #section02 .inner-box .video-area .list li {
    width: 250px;
    min-width: 250px;
    margin-right: 10px;
  }
  #section02 .inner-box .video-area .list li .title {
    top: 0;
    height: calc(100% - 10px);
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
  }
  #section02 .inner-box .video-area .list::-webkit-scrollbar {
    height: 7.5px;
    background-color: #fff;
    border-radius: 5px;
  }
  #section02 .inner-box .video-area .list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #ddd;
  }
  #section02::after {
    height: 47%;
    right: 0;
    width: 100%;
    top: unset;
    bottom: 0;
    background-color: #005d7d;
    content: "";
    display: block;
    position: absolute;
  }
}
@media (max-width: 768px) {
  #section02 {
    padding: 10rem 0;
  }
  #section02 .inner-box {
    justify-content: center;
    flex-direction: column;
    padding: 0 10px;
  }
  #section02 .inner-box .txt {
    padding-right: 0;
    display: flex;
    align-items: center;
    width: unset;
    padding-bottom: 0rem;
    margin-bottom: 5rem;
    justify-content: space-between;
  }
  #section02 .inner-box .txt h3 {
    font-size: 3rem;
    padding-right: 6.9444444444vw;
  }
  #section02 .inner-box .txt .sub-txt p {
    padding-bottom: 2rem;
    position: relative;
    padding-left: 10px;
    font-size: 1.6rem;
  }
  #section02 .inner-box .txt .sub-txt a {
    padding: 1.5rem 3rem;
  }
  #section02 .inner-box .video-area {
    width: 100%;
    gap: 0;
    flex-direction: column;
  }
  #section02 .inner-box .video-area .thumbnail {
    width: 100%;
    padding-bottom: 0px;
  }
  #section02 .inner-box .video-area .thumbnail iframe {
    width: 100%;
    max-height: 200px;
  }
  #section02 .inner-box .video-area .list {
    margin-top: -1px;
    width: 100%;
    height: unset;
    padding-bottom: 7.5px;
  }
  #section02 .inner-box .video-area .list li {
    width: 170px;
    min-width: 150px;
    margin-right: 5px;
  }
  #section02 .inner-box .video-area .list li .title {
    font-size: 1.7rem;
    top: 0;
    height: calc(100% - 5px);
    padding-left: 7.5px;
    padding-top: 7.5px;
    padding-right: 7.5px;
  }
  #section02 .inner-box .video-area .list::-webkit-scrollbar {
    height: 5px;
    background-color: #fff;
    border-radius: 5px;
  }
  #section02 .inner-box .video-area .list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #ddd;
  }
  #section02::after {
    height: 47%;
    right: 0;
    width: 100%;
    top: unset;
    bottom: 0;
    background-color: #005d7d;
    content: "";
    display: block;
    position: absolute;
  }
}
/* section03 */
#section03 {
  padding-top: 15.8rem;
  padding-bottom: 12.7rem;
  background-image: url("../img/sc03_bg.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#section03 .inner-box {
  padding: 0 20px;
}
#section03 .inner-box .item-wrap {
  padding-right: 6.0416666667vw;
  justify-content: center;
  display: flex;
  gap: 8.5416666667vw;
}
#section03 .inner-box .item-wrap .figure {
  display: flex;
  gap: 1.2rem;
}
#section03 .inner-box .item-wrap .txt {
  padding-top: 3.4rem;
  text-align: center;
}
#section03 .inner-box .item-wrap .txt .trophy {
  padding-bottom: 2.1rem;
}
#section03 .inner-box .item-wrap .txt span {
  font-size: 0.75rem;
  font-family: "Nanum";
  font-weight: 400;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  color: #767677;
  display: block;
  color: #fff;
  padding-bottom: 1.7rem;
}
#section03 .inner-box .item-wrap .txt h2 {
  font-size: 4.2rem;
  color: #fff;
  padding-bottom: 2.5rem;
}
#section03 .inner-box .item-wrap .txt p {
  color: #fff;
}

@media (max-width: 1279px) {
  #section03 {
    background-position: 0% 50%;
    padding-top: 12rem;
    padding-bottom: 12rem;
    background-attachment: unset;
  }
  #section03 .inner-box .item-wrap {
    padding-right: 0;
    gap: 40px;
    flex-direction: column-reverse;
    align-items: center;
  }
  #section03 .inner-box .item-wrap .figure img {
    width: 250px;
  }
  #section03 .inner-box .item-wrap .txt {
    padding-top: 0;
  }
  #section03 .inner-box .item-wrap .txt .trophy img {
    width: 120px;
  }
}
@media (max-width: 767px) {
  #section03 {
    background-position: 0% 50%;
    padding: 10rem 0;
    background-attachment: unset;
  }
  #section03 .inner-box .item-wrap {
    padding-right: 0;
    gap: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }
  #section03 .inner-box .item-wrap .figure {
    gap: 7.5px;
  }
  #section03 .inner-box .item-wrap .figure img {
    width: 150px;
  }
  #section03 .inner-box .item-wrap .txt {
    padding-top: 0;
  }
  #section03 .inner-box .item-wrap .txt .trophy img {
    width: 80px;
  }
  #section03 .inner-box .item-wrap .txt h2 {
    font-size: 2.8rem;
  }
  #section03 .inner-box .item-wrap .txt p {
    font-size: 1.5rem;
  }
}
/* section04 */
#section04 {
  padding-top: 14.4rem;
}
#section04 .txt-area {
  padding-bottom: 5.5rem;
}
#section04 .doctors > .doctor .profile {
  padding-top: 17.1rem;
  background-color: #f8f8f8;
}
#section04 .doctors > .doctor .profile .inner-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1496px;
  margin: 0 auto;
  padding: 0 20px 0 40px;
}
#section04 .doctors > .doctor .profile .inner-box .medal {
  position: absolute;
  left: 43px;
  top: -123px;
}
#section04 .doctors > .doctor .profile .inner-box .list {
  padding-bottom: 12rem;
  padding-top: 3.2rem;
}
#section04 .doctors > .doctor .profile .inner-box .list h3 {
  font-size: 4.861rem;
  font-weight: 700;
  padding-bottom: 6.6rem;
  white-space: nowrap;
}
#section04 .doctors > .doctor .profile .inner-box .list h3 span {
  font-size: 3.618rem;
  font-weight: 400;
  padding-left: 2.3rem;
  letter-spacing: -0.075em;
}
#section04 .doctors > .doctor .profile .inner-box .list h3.pb {
  padding-bottom: 4rem;
}
#section04 .doctors > .doctor .profile .inner-box .list h4 {
  font-size: 2.2rem;
  color: #005d7d;
  font-weight: 700;
  letter-spacing: -0.05em;
  padding-bottom: 3rem;
}
#section04 .doctors > .doctor .profile .inner-box .list > ul li {
  font-size: 2.2rem;
}
#section04 .doctors > .doctor .profile .inner-box .figure {
  display: flex;
  align-items: flex-end;
  padding-right: 3.90625vw;
}
#section04 .doctors > .doctor .profile .inner-box .figure img {
  height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section04 .doctors > .doctor .thesis {
  padding-top: 7.9rem;
  padding-bottom: 11.9rem;
  background-color: #00253d;
}
#section04 .doctors > .doctor .thesis .inner-box {
  max-width: 1496px;
  margin: 0 auto;
  padding: 0 20px 0 40px;
}
#section04 .doctors > .doctor .thesis .inner-box .title {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 5rem;
  color: #fff;
  width: 12.9rem;
  height: 5.3rem;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 100px;
  text-align: center;
  line-height: 4.8rem;
  display: inline-block;
}
#section04 .doctors > .doctor .thesis .inner-box > ul li {
  letter-spacing: -0.045em;
  color: #fff;
  font-size: 2rem;
  line-height: 1.45;
}
#section04 .doctors > .doctor .thesis .inner-box > ul li:not(:last-child) {
  padding-bottom: 3rem;
}

@media (max-width: 1279px) {
  #section04 {
    padding-top: 14.4rem;
  }
  #section04 .txt-area {
    padding-bottom: 5.5rem;
  }
  #section04 .doctors > .doctor .profile .inner-box {
    padding: 0 20px;
    align-items: flex-end;
  }
  #section04 .doctors > .doctor .profile .inner-box .medal {
    left: 20px;
    top: -100px;
  }
  #section04 .doctors > .doctor .profile .inner-box .medal img {
    width: 90px;
  }
  #section04 .doctors > .doctor .profile .inner-box .list {
    padding-bottom: 10rem;
    width: 50%;
  }
  #section04 .doctors > .doctor .profile .inner-box .list h3 > span {
    padding-left: 0;
  }
  #section04 .doctors > .doctor .profile .inner-box .list > ul li {
    font-size: 1.8rem;
  }
  #section04 .doctors > .doctor .profile .inner-box .figure {
    padding-right: 0;
    width: 50%;
  }
  #section04 .doctors > .doctor .profile.pt {
    padding-top: 7.5rem;
  }
  #section04 .doctors > .doctor .thesis .inner-box {
    padding: 0 20px;
  }
  #section04 .doctors > .doctor .thesis .inner-box > ul li {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #section04 {
    padding-top: 10rem;
  }
  #section04 .txt-area {
    padding-bottom: 5.5rem;
  }
  #section04 .doctors > .doctor .profile .inner-box {
    flex-direction: column;
  }
  #section04 .doctors > .doctor .profile .inner-box .medal {
    left: 20px;
    top: -80px;
  }
  #section04 .doctors > .doctor .profile .inner-box .medal img {
    width: 65px;
  }
  #section04 .doctors > .doctor .profile .inner-box .list {
    padding-top: 1rem;
    width: 100%;
  }
  #section04 .doctors > .doctor .profile .inner-box .list h3 {
    white-space: normal;
    font-size: 3.2rem;
    line-height: 1.1;
  }
  #section04 .doctors > .doctor .profile .inner-box .list h3 span {
    font-size: 2.2rem;
    padding-left: 0;
  }
  #section04 .doctors > .doctor .profile .inner-box .list > ul li {
    font-size: 1.7rem;
  }
  #section04 .doctors > .doctor .profile .inner-box .figure {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #section04 .doctors > .doctor .profile .inner-box .figure img {
    max-width: 250px;
  }
  #section04 .doctors > .doctor .thesis .inner-box .title {
    width: 12rem;
    height: 4.8rem;
    line-height: 4.3rem;
    font-size: 1.9rem;
  }
  #section04 .doctors > .doctor .thesis .inner-box > ul li {
    font-size: 1.7rem;
  }
}
/* section05 */
#section05 {
  padding: 6.4rem 0;
  background-image: url("../img/sc05_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#section05 .inner-box {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.65625vw;
}
#section05 .inner-box .txt {
  padding-right: 2.6041666667vw;
  text-align: center;
}
#section05 .inner-box .txt h2 {
  font-size: 4.2rem;
  color: #fff;
  line-height: 1.2857142857;
  padding-bottom: 3.5rem;
  white-space: nowrap;
}
#section05 .inner-box .txt h4 {
  color: #fff;
  font-size: 2.2rem;
  padding-bottom: 2.7rem;
}
#section05 .inner-box .txt h4 u {
  text-underline-offset: 5px;
}
#section05 .inner-box .txt p {
  color: #fff;
  line-height: 1.5433333333;
  padding-bottom: 4.2rem;
}
@media (max-width: 1279px) {
  #section05 {
    background-attachment: unset;
  }
  #section05 .inner-box {
    gap: 4vw;
  }
  #section05 .inner-box .figure {
    display: flex;
    justify-content: center;
    width: 50%;
    max-width: 350px;
  }
  #section05 .inner-box .txt {
    padding-right: 0;
    width: 50%;
  }
  #section05 .inner-box .txt h2 {
    font-size: 3.2rem;
    white-space: unset;
  }
  #section05 .inner-box .txt h4 u {
    font-size: 1.8rem;
  }
  #section05 .inner-box .txt p {
    font-size: 1.5rem;
  }
  #section05 .inner-box .txt a {
    max-width: 350px;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #section05 {
    padding: 10rem 0;
    background-attachment: unset;
  }
  #section05 .inner-box {
    padding: 0 15px;
    flex-direction: column;
    gap: 4rem;
  }
  #section05 .inner-box .figure {
    width: 100%;
    max-width: 180px;
  }
  #section05 .inner-box .txt {
    padding-right: 0;
    width: 100%;
  }
  #section05 .inner-box .txt h2 {
    font-size: 2.7rem;
  }
  #section05 .inner-box .txt p {
    padding-bottom: 3rem;
  }
  #section05 .inner-box .txt a {
    max-width: 250px;
  }
}
/* section06 */
#section06 {
  padding-top: 16.3rem;
  padding-bottom: 9.5rem;
}
#section06 .tab-menu {
  padding: 4rem 30px 0;
  display: flex;
  gap: 1.3rem;
  justify-content: center;
  transform: translateY(3.35rem);
}
#section06 .tab-menu > li {
  transition: all 0.3s ease-in-out;
  width: 29.2rem;
  height: 6.7rem;
  border-radius: 100px;
  box-sizing: border-box;
  border: 4px solid #005d7d;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 2.2rem;
  color: #005d7d;
  cursor: pointer;
}
#section06 .tab-menu > li b {
  font-weight: 600;
}
#section06 .tab-menu > li:hover {
  background-color: #005d7d;
  color: #fff;
}
#section06 .joint-spine {
  display: none;
}
#section06 .joint-spine .top-area {
  background-color: #f5f5f5;
}
#section06 .joint-spine .top-area > .inner-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8.2rem 30px 0;
  display: flex;
  justify-content: center;
  gap: 7vw;
  align-items: center;
}
#section06 .joint-spine .top-area > .inner-box .txt {
  padding-bottom: 9rem;
  text-align: center;
}
#section06 .joint-spine .top-area > .inner-box .txt h3 {
  font-size: 3.8rem;
  line-height: 1.2792105263;
  padding-bottom: 3.2rem;
}
#section06 .joint-spine .top-area > .inner-box .txt p {
  font-weight: 300;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
#section06 .joint-spine .bottom-area {
  margin-top: -6.8rem;
}
#section06 .joint-spine .bottom-area .item-wrap01 {
  display: flex;
  justify-content: center;
  gap: 6.1979166667vw;
}
#section06 .joint-spine .bottom-area .item-wrap01 > div {
  width: 32.8%;
  min-width: 550px;
}
#section06 .joint-spine .bottom-area .item-wrap01 > div .title-wrap {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
#section06 .joint-spine .bottom-area .item-wrap01 > div .title-wrap .num {
  width: 7.9rem;
  height: 7.9rem;
  border-radius: 50%;
  background-color: #005d7d;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transform: translate(-0.7rem, -0.7rem);
}
#section06 .joint-spine .bottom-area .item-wrap01 > div .title-wrap .title {
  font-size: 2rem;
  color: #005d7d;
}
#section06 .joint-spine .bottom-area .item-wrap01 > div > ul {
  padding-left: 8.4rem;
  padding-right: 20px;
}
#section06 .joint-spine .bottom-area .item-wrap01 > div > ul li {
  letter-spacing: -0.05em;
}
#section06 .joint-spine .bottom-area .item-wrap02 {
  display: flex;
  justify-content: center;
  margin-top: 6.1rem;
}
#section06 .joint-spine .bottom-area .item-wrap02 li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 20.7291666667vw;
  height: 20.7291666667vw;
  border-radius: 50%;
  background-color: #005d7d;
  margin: 0 -10px;
  color: #fff;
}
#section06 .joint-spine .bottom-area .item-wrap02 li img {
  margin-bottom: 2.8rem;
}
#section06 .joint-spine .bottom-area .item-wrap02 li h4 {
  font-size: 2.2rem;
  font-weight: 600;
  padding-bottom: 1.2rem;
}
#section06 .joint-spine .bottom-area .item-wrap02 li p {
  font-size: 1.6rem;
  color: #fffaf3;
  letter-spacing: -0.05em;
}
#section06 .joint-spine .bottom-area .item-wrap02 li.first {
  background-color: #edfaff;
}
#section06 .joint-spine .bottom-area .item-wrap02 li.first h4 {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.25;
  color: #005d7d;
  padding-bottom: 1.25rem;
  letter-spacing: -0.05em;
}
#section06 .joint-spine .bottom-area .item-wrap02 li.first p {
  text-align: center;
  font-size: 1.6rem;
  color: #404040;
  letter-spacing: -0.05em;
}
#section06 .joint-spine .bottom-area .item-wrap02 li:nth-child(3)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.8rem;
  height: 0.4rem;
  background-color: #fff;
  left: 0;
  z-index: 10;
}
#section06 .joint-spine .bottom-area .item-wrap02 li:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.4rem;
  height: 1.8rem;
  background-color: #fff;
  left: 0;
  z-index: 10;
  transform: translateX(0.7rem);
}
#section06 .joint-spine .bottom-area .item-wrap02 li:nth-child(4)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.8rem;
  height: 0.4rem;
  background-color: #fff;
  left: 0;
  z-index: 10;
}
#section06 .joint-spine .bottom-area .item-wrap02 li:nth-child(4)::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.4rem;
  height: 1.8rem;
  background-color: #fff;
  left: 0;
  z-index: 10;
  transform: translateX(0.7rem);
}
#section06 .joint-spine.spine .top-area .inner-box {
  gap: 1.5625vw;
}
#section06 .joint-spine.active {
  display: block;
}

@media (max-width: 1279px) {
  #section06 .tab-menu {
    transform: translateY(3rem);
  }
  #section06 .tab-menu > li {
    width: 25rem;
    height: 6rem;
    font-size: 2rem;
  }
  #section06 .joint-spine .top-area > .inner-box {
    padding: 12rem 20px 0;
    flex-direction: column;
    gap: 75px;
  }
  #section06 .joint-spine .top-area > .inner-box .txt {
    padding-bottom: 0;
  }
  #section06 .joint-spine .top-area > .inner-box .figure {
    max-width: 400px;
  }
  #section06 .joint-spine .bottom-area {
    margin-top: -5.5rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 {
    padding: 0 20px;
    gap: 20px;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div {
    width: 50%;
    max-width: 500px;
    min-width: unset;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div .title-wrap .num {
    width: 6.9rem;
    height: 6.9rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div > ul {
    padding-left: 7.5rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div > ul li {
    font-size: 1.6rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li {
    width: 22rem;
    height: 22rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li img {
    transform: scale(0.7);
    margin-bottom: 1rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li h4 {
    font-size: 2rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li p {
    font-size: 1.5rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li.first h4 {
    font-size: 2rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li.first p {
    font-size: 1.3rem;
  }
  #section06 .joint-spine.spine .top-area .inner-box {
    gap: 75px;
  }
  #section06 .joint-spine.spine .top-area .inner-box .figure {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  #section06 {
    padding: 10rem 0;
  }
  #section06 .txt-area p br {
    display: block;
  }
  #section06 .tab-menu {
    gap: 5px;
  }
  #section06 .tab-menu > li {
    width: 18rem;
    height: 5rem;
    font-size: 1.75rem;
    border-width: 3px;
  }
  #section06 .joint-spine .top-area > .inner-box {
    padding: 10rem 20px 0;
    gap: 50px;
  }
  #section06 .joint-spine .top-area > .inner-box .txt h3 {
    font-size: 2.4rem;
  }
  #section06 .joint-spine .top-area > .inner-box .txt p {
    white-space: normal;
    font-size: 1.5rem;
  }
  #section06 .joint-spine .top-area > .inner-box .txt p br {
    display: none;
  }
  #section06 .joint-spine .top-area > .inner-box .figure {
    max-width: 250px;
  }
  #section06 .joint-spine .bottom-area {
    margin-top: -3.6rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 {
    flex-direction: column;
    gap: 50px;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div {
    width: 100%;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div .title-wrap .num {
    width: 5.5rem;
    height: 5.5rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div > ul {
    padding: 0;
  }
  #section06 .joint-spine .bottom-area .item-wrap01 > div > ul li {
    font-size: 1.5rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li {
    margin: -10px;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li img {
    transform: scale(0.5);
    margin-bottom: 0rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li h4 {
    font-size: 1.8rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li p {
    font-size: 1.4rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li.first h4 {
    font-size: 1.8rem;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    width: 1.8rem;
    height: 0.4rem;
    background-color: #fff;
    right: 0;
    z-index: 10;
  }
  #section06 .joint-spine .bottom-area .item-wrap02 li:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    width: 0.4rem;
    height: 1.8rem;
    background-color: #fff;
    right: 0;
    z-index: 10;
    transform: translateX(-0.6rem);
  }
  #section06 .joint-spine.spine .top-area .inner-box {
    gap: 75px;
  }
  #section06 .joint-spine.spine .top-area .inner-box .figure {
    max-width: 320px;
  }
}
/* section07 */
#section07 {
  padding-top: 13.4rem;
  padding-bottom: 16rem;
  background-image: url("../img/sc07_bg.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#section07 .inner-box {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
#section07 .inner-box > h2 {
  text-align: center;
  color: #fff;
  font-size: 4.2rem;
  padding-bottom: 2.2rem;
}
#section07 .inner-box > p {
  text-align: center;
  color: #fff;
  letter-spacing: -0.05em;
  padding-bottom: 9.7rem;
}
#section07 .inner-box > ul {
  display: flex;
  justify-content: center;
}
#section07 .inner-box > ul > li {
  position: relative;
  text-align: center;
  flex: 1;
}
#section07 .inner-box > ul > li > span {
  color: #00253d;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 8.6rem;
  height: 8.6rem;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2.5rem;
  line-height: 1.05;
}
#section07 .inner-box > ul > li > span b {
  font-weight: 600;
  font-size: 2rem;
}
#section07 .inner-box > ul > li > h3 {
  color: #fff;
  font-size: 2.083rem;
  font-weight: 600;
  padding-bottom: 2rem;
}
#section07 .inner-box > ul > li > p {
  color: #fff;
}
#section07 .inner-box > ul > li:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  background-color: #fff;
  opacity: 0.4;
  height: 150%;
}
#section07 .inner-box > ul > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  right: -28px;
  border-left: 17px solid rgba(255, 255, 255, 0.4);
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@media (max-width: 1279px) {
  #section07 {
    background-attachment: unset;
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 767px) {
  #section07 {
    padding: 12.5rem 0;
    background-attachment: unset;
  }
  #section07 .inner-box > h2 {
    font-size: 2.7rem;
  }
  #section07 .inner-box > p {
    font-size: 1.5rem;
    padding-bottom: 6.5rem;
  }
  #section07 .inner-box > ul {
    margin: 0 -20px;
  }
  #section07 .inner-box > ul > li {
    padding: 0 5px;
  }
  #section07 .inner-box > ul > li > span {
    width: 6.5rem;
    height: 6.5rem;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  #section07 .inner-box > ul > li > span b {
    font-size: 1.7rem;
  }
  #section07 .inner-box > ul > li > h3 {
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }
  #section07 .inner-box > ul > li > p {
    font-size: 1.35rem;
  }
  #section07 .inner-box > ul > li > p br {
    display: none;
  }
  #section07 .inner-box > ul > li:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    background-color: #fff;
    opacity: 0.4;
    height: 120%;
  }
  #section07 .inner-box > ul > li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -12px;
    border-left: 7px solid rgba(255, 255, 255, 0.4);
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
}
/* section08 */
#section08 {
  padding-top: 14.9rem;
  padding-bottom: 17rem;
}
#section08 .txt-area {
  padding-bottom: 6.3rem;
}
#section08 .inner-box {
  max-width: 1294px;
  margin: 0 auto;
  padding: 0 20px;
}
#section08 .inner-box .tab-menu {
  display: flex;
  justify-content: center;
}
#section08 .inner-box .tab-menu > li {
  cursor: pointer;
  transition: background-color 0.2s;
  flex: 1;
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 3.4rem 0;
  font-size: 2.4rem;
  letter-spacing: -0.075em;
  box-sizing: border-box;
}
#section08 .inner-box .tab-menu > li:not(:last-child) {
  border-right: 1px solid #686868;
}
#section08 .inner-box .tab-menu > li:nth-child(3) {
  letter-spacing: -0.11em;
}
#section08 .inner-box .tab-menu > li.active {
  background-color: #005d7d;
}
#section08 .inner-box .non-surgery {
  display: none;
}
#section08 .inner-box .non-surgery .item-wrap {
  display: flex;
  background-color: #f8f8f8;
}
#section08 .inner-box .non-surgery .item-wrap .txt {
  width: 50%;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner {
  padding-left: 10.7%;
  padding-top: 11.8%;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner em {
  font-size: 6.691rem;
  color: #b2c4cc;
  font-weight: 700;
  letter-spacing: -0.075em;
  margin-bottom: 2.9rem;
  display: inline-block;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner h3 {
  font-size: 3rem;
  padding-bottom: 2.2rem;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner h3 b {
  font-size: 3.4rem;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner p {
  font-size: 2rem;
  letter-spacing: -0.05em;
  padding-bottom: 3.8vw;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner > ul {
  display: flex;
  gap: 3.4vw;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li {
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li .icon {
  height: 4.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-bottom: 1.3rem;
}
#section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  top: 50%;
  transform: translateY(-50%);
  right: -1.7vw;
}
#section08 .inner-box .non-surgery .item-wrap .figure {
  width: 50%;
}
#section08 .inner-box .non-surgery.active {
  display: block;
}

@media (max-width: 1279px) {
  #section08 {
    padding-top: 14.9rem;
    padding-bottom: 17rem;
  }
  #section08 .txt-area {
    padding-bottom: 6.3rem;
  }
  #section08 .inner-box {
    padding: 0 20px;
  }
  #section08 .inner-box .tab-menu > li {
    padding: 2rem 15px;
    font-size: 2rem;
  }
  #section08 .inner-box .tab-menu > li:not(:nth-child(3)) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #section08 .inner-box .non-surgery .item-wrap {
    flex-direction: column;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt {
    width: 100%;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner {
    padding: 7.5% 5%;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner > ul {
    gap: 7vw;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li:not(:last-child)::after {
    right: -3.5vw;
  }
  #section08 .inner-box .non-surgery .item-wrap .figure {
    width: 100%;
  }
  #section08 .inner-box .non-surgery .item-wrap .figure img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 450px;
  }
}
@media (max-width: 767px) {
  #section08 {
    padding: 10rem 0 0;
  }
  #section08 .txt-area p br {
    display: block;
  }
  #section08 .inner-box {
    padding: 0;
  }
  #section08 .inner-box .tab-menu > li {
    padding: 0.8rem 0;
    font-size: 1.4rem;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner {
    padding: 50px 25px;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner em {
    font-size: 3.8rem;
    margin-bottom: 2rem;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner h3 {
    font-size: 2.4rem;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner h3 b {
    font-size: 2.6rem;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner p {
    font-size: 1.5rem;
    padding-bottom: 4rem;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner p br {
    display: none;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner > ul {
    gap: 20px;
    margin: 0 -15px;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li {
    flex: 1;
    font-size: 1.3rem;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li .icon {
    padding-bottom: 1rem;
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li .icon img {
    transform: scale(0.6);
  }
  #section08 .inner-box .non-surgery .item-wrap .txt .inner > ul li:not(:last-child)::after {
    right: -10px;
  }
  #section08 .inner-box .non-surgery .item-wrap .figure img {
    max-height: unset;
  }
}
/* section09 */
#section09 {
  padding-bottom: 14.8rem;
  background-color: #00253d;
}
#section09 .inner-box {
  padding: 0 20px;
}
#section09 .inner-box .title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.2083333333vw;
  padding-top: 0rem;
  padding-left: 5.5%;
}
#section09 .inner-box .title-wrap .txt {
  position: relative;
  top: 21px;
}
#section09 .inner-box .title-wrap .txt h2 {
  font-size: 3.2rem;
  padding-bottom: 2.2rem;
}
#section09 .inner-box .title-wrap .txt p {
  font-size: 2rem;
  color: #fff;
  letter-spacing: -0.05em;
}
#section09 .inner-box .title-wrap .person {
  margin-top: -8.6rem;
}
#section09 .inner-box .item-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#section09 .inner-box .item-wrap li {
  padding: 1.8rem 1.8rem 4.8rem 1.8rem;
  background-color: #fff;
}
#section09 .inner-box .item-wrap li .figure {
  padding-bottom: 3.4rem;
}
#section09 .inner-box .item-wrap li .inner {
  padding-left: 7.5%;
  padding-right: 20px;
}
#section09 .inner-box .item-wrap li .inner span {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0em;
  display: inline-block;
  margin-bottom: 1.8rem;
}
#section09 .inner-box .item-wrap li .inner h3 {
  font-size: 2.8rem;
  line-height: 1.15;
  padding-bottom: 3rem;
}
#section09 .inner-box .item-wrap li .inner h3 b {
  font-weight: 600;
}
#section09 .inner-box .item-wrap li .inner p {
  letter-spacing: -0.05em;
}

@media (max-width: 1279px) {
  #section09 .inner-box .title-wrap .txt {
    width: 50%;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
  #section09 .inner-box .title-wrap .txt h2 {
    font-size: 3rem;
  }
  #section09 .inner-box .title-wrap .txt p {
    font-size: 1.7rem;
  }
  #section09 .inner-box .title-wrap .txt p br {
    display: none;
  }
  #section09 .inner-box .title-wrap .person {
    width: 50%;
    margin-top: -3.8rem;
  }
}
@media (max-width: 767px) {
  #section09 {
    padding-top: 4rem;
    padding-bottom: 10rem;
  }
  #section09 .inner-box .title-wrap {
    flex-direction: column;
    padding-left: 0;
  }
  #section09 .inner-box .title-wrap .txt {
    text-align: center;
    width: unset;
    padding-bottom: 7.5rem;
  }
  #section09 .inner-box .title-wrap .txt h2 {
    font-size: 2.5rem;
    padding: 0 10px 2.2rem;
  }
  #section09 .inner-box .title-wrap .txt p {
    font-size: 1.4rem;
    padding: 0 10px;
  }
  #section09 .inner-box .title-wrap .person {
    margin-top: 0;
    width: unset;
  }
  #section09 .inner-box .title-wrap .person img {
    max-width: 250px;
  }
  #section09 .inner-box .item-wrap {
    margin: 0 -5px;
    gap: 10px;
    flex-wrap: wrap;
  }
  #section09 .inner-box .item-wrap li {
    width: 100%;
  }
  #section09 .inner-box .item-wrap li .inner {
    padding-left: 2.5%;
  }
  #section09 .inner-box .item-wrap li .inner h3 {
    font-size: 2.5rem;
  }
  #section09 .inner-box .item-wrap li .inner p {
    font-size: 1.5rem;
  }
  #section09 .inner-box .item-wrap li .inner p br {
    display: none;
  }
}
/* section10 */
#section10 {
  padding-top: 21.1rem;
  padding-bottom: 24rem;
  background-attachment: fixed;
  background-image: url("../img/sc10_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#section10 .txt-area {
  color: #fff;
}
#section10 .txt-area span {
  color: #fff;
  background-image: url("../img/symbol02.png");
}

@media (max-width: 1279px) {
  #section10 {
    background-attachment: unset;
  }
}
@media (max-width: 767px) {
  #wrap #main #section10 {
    padding: 11rem 0 14rem;
    background-attachment: unset;
  }
  #wrap #main #section10 .txt-area {
    padding: 0 30px;
  }
  #wrap #main #section10 .txt-area span {
    background-size: 22px 18px;
  }
  #wrap #main #section10 .txt-area h2 {
    font-size: 2.1rem;
  }
  #wrap #main #section10 .txt-area p {
    font-size: 1.3rem;
  }
  #wrap #main #section10 .txt-area p br {
    display: block;
  }
}
/* section11 */
#section11 {
  padding-top: 14.5rem;
}
#section11 .txt-area {
  padding-bottom: 15rem;
}
#section11 .box-wrap {
  display: flex;
  flex-wrap: wrap;
}
#section11 .box-wrap > div {
  width: 50%;
  min-height: 602px;
}
#section11 .box-wrap .figure.box01 {
  order: 1;
}
#section11 .box-wrap .figure.box01 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section11 .box-wrap .figure.box03 {
  order: 4;
}
#section11 .box-wrap .figure.box03 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#section11 .box-wrap .desc.box02 {
  background-color: #fbfbfb;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#section11 .box-wrap .desc.box02 .inner {
  padding: 20px 40px;
}
#section11 .box-wrap .desc.box02 .inner h3 {
  font-size: 2.8rem;
  padding-bottom: 2.2rem;
  line-height: 1.3571428571;
  letter-spacing: -0.075em;
}
#section11 .box-wrap .desc.box02 .inner > p {
  line-height: 1.2944444444;
  letter-spacing: -0.05em;
  padding-bottom: 5.5rem;
}
#section11 .box-wrap .desc.box02 .inner ul {
  display: flex;
  padding-left: 0rem;
  gap: 7.8125vw;
}
#section11 .box-wrap .desc.box02 .inner ul li {
  width: 50%;
  position: relative;
  text-align: center;
}
#section11 .box-wrap .desc.box02 .inner ul li span {
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  border-radius: 50%;
  background-color: #dff2fa;
  display: inline-block;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 2.7rem;
}
#section11 .box-wrap .desc.box02 .inner ul li h4 {
  font-size: 1.91rem;
  color: #005d7d;
}
#section11 .box-wrap .desc.box02 .inner ul li h4 b {
  font-size: 2.21rem;
  font-weight: 600;
  white-space: nowrap;
}
#section11 .box-wrap .desc.box02 .inner ul li:first-child::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #c1c1c1;
  right: -3.90625vw;
  top: 58%;
  transform: translateY(-50%);
}
#section11 .box-wrap .desc.box02 .inner ul li:first-child > span img {
  width: 2.2916666667vw;
}
#section11 .box-wrap .desc.box02 .inner ul li:last-child > span img {
  width: 3.6458333333vw;
}
#section11 .box-wrap .desc.box04 {
  background-color: #fbfbfb;
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#section11 .box-wrap .desc.box04 .inner {
  padding: 40px 20px;
}
#section11 .box-wrap .desc.box04 .inner .question {
  padding-left: 5%;
}
#section11 .box-wrap .desc.box04 .inner .question em {
  font-weight: 600;
  font-size: 2.778rem;
  padding-left: 1.9%;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: -0.06em;
  color: #005d7d;
}
#section11 .box-wrap .desc.box04 .inner .question h3 {
  font-size: 2.8rem;
  line-height: 1.3571428571;
  letter-spacing: -0.05em;
  padding-bottom: 1.3rem;
  padding-left: 1.9%;
}
#section11 .box-wrap .desc.box04 .inner .question .answer {
  display: inline-block;
  padding: 0.9rem 2.3rem 0.9rem 1.7rem;
  background-color: #dff2fa;
  border-radius: 100px;
  color: #005d7d;
  letter-spacing: -0.075em;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
#section11 .box-wrap .desc.box04 .inner .question .answer b {
  font-weight: 600;
}
#section11 .box-wrap .desc.box04 .inner .question > p {
  font-size: 1.91rem;
  line-height: 1.219895288;
  padding-bottom: 4.5rem;
  padding-left: 1.9%;
}
#section11 .box-wrap .desc.box04 .inner .item-wrap {
  display: flex;
}
#section11 .box-wrap .desc.box04 .inner .item-wrap > div {
  margin: 0 -0.9rem;
}
#section11 .box-wrap .desc.box04 .inner .item-wrap > div .title {
  border-radius: 100px;
  width: 19.4270833333vw;
  height: 11.5rem;
  text-align: center;
  color: #005d7d;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 3.3rem;
}
#section11 .box-wrap .desc.box04 .inner .item-wrap > div .title b {
  font-weight: 600;
}
#section11 .box-wrap .desc.box04 .inner .item-wrap > div > p {
  font-size: 1.6rem;
  text-align: center;
}
#section11 .box-wrap .desc.box04 .inner .item-wrap .left .title {
  background-color: #dff2fa;
}
#section11 .box-wrap .desc.box04 .inner .item-wrap .right .title {
  background-color: #005d7d;
  color: #fff;
}
@media (max-width: 1279px) {
  #section11 .box-wrap > div {
    min-height: unset;
  }
  #section11 .box-wrap .desc.box02 .inner {
    padding: 20px;
  }
  #section11 .box-wrap .desc.box02 .inner h3 {
    font-size: 2.4rem;
  }
  #section11 .box-wrap .desc.box02 .inner > p {
    font-size: 1.5rem;
  }
  #section11 .box-wrap .desc.box02 .inner ul li span {
    width: 12rem;
    height: 12rem;
  }
  #section11 .box-wrap .desc.box02 .inner ul li span img {
    transform: scale(0.7);
  }
  #section11 .box-wrap .desc.box02 .inner ul li h4 {
    font-size: 1.5rem;
  }
  #section11 .box-wrap .desc.box02 .inner ul li h4 b {
    font-size: 1.7rem;
    white-space: unset;
  }
  #section11 .box-wrap .desc.box02 .inner ul li:first-child::after {
    right: -3.90625vw;
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
  }
  #section11 .box-wrap .desc.box02 .inner ul li:first-child > span img {
    width: unset;
  }
  #section11 .box-wrap .desc.box02 .inner ul li:last-child > span img {
    width: unset;
  }
  #section11 .box-wrap .desc.box04 .inner {
    padding: 20px;
  }
  #section11 .box-wrap .desc.box04 .inner .question {
    padding-left: 0;
  }
  #section11 .box-wrap .desc.box04 .inner .question em {
    padding-left: 0;
  }
  #section11 .box-wrap .desc.box04 .inner .question h3 {
    padding-left: 0;
    font-size: 2.3rem;
  }
  #section11 .box-wrap .desc.box04 .inner .question .answer {
    font-size: 1.8rem;
  }
  #section11 .box-wrap .desc.box04 .inner .question > p {
    padding-left: 0;
    font-size: 1.5rem;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap {
    justify-content: center;
    gap: 1rem;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap > div {
    margin: 0 0rem;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap > div .title {
    width: 18.5rem;
    height: 8rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap > div .title > span {
    font-size: 1.4rem;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap > div > p {
    font-size: 1.4rem;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap > div > p br {
    display: none;
  }
}
@media (max-width: 767px) {
  #section11 {
    padding-top: 10rem;
  }
  #section11 .txt-area {
    padding-bottom: 10rem;
  }
  #section11 .box-wrap > div {
    width: 100%;
  }
  #section11 .box-wrap .figure.box01 {
    order: 1;
  }
  #section11 .box-wrap .figure.box01 img {
    height: auto;
  }
  #section11 .box-wrap .figure.box03 {
    order: 3;
  }
  #section11 .box-wrap .figure.box03 img {
    height: auto;
  }
  #section11 .box-wrap .desc.box02 {
    padding: 8rem 20px;
  }
  #section11 .box-wrap .desc.box02 .inner {
    padding: 0;
  }
  #section11 .box-wrap .desc.box02 .inner h3 {
    font-size: 1.9rem;
  }
  #section11 .box-wrap .desc.box02 .inner ul li span {
    width: 10rem;
    height: 10rem;
  }
  #section11 .box-wrap .desc.box02 .inner ul li span img {
    transform: scale(0.5);
  }
  #section11 .box-wrap .desc.box02 .inner ul li h4 b {
    font-size: 1.6rem;
  }
  #section11 .box-wrap .desc.box04 {
    padding: 8rem 20px;
  }
  #section11 .box-wrap .desc.box04 .inner {
    padding: 0;
  }
  #section11 .box-wrap .desc.box04 .inner .question {
    padding-left: 0;
  }
  #section11 .box-wrap .desc.box04 .inner .question em {
    font-size: 2.4rem;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap {
    margin: 0 -10px;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap > div > p {
    font-size: 1.3rem;
  }
  #section11 .box-wrap .desc.box04 .inner .item-wrap > div > p br {
    display: block;
  }
}
/* section12 */
#section12 {
  background-image: url("../img/sc12_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 25.5rem;
  padding-bottom: 24.5rem;
}
#section12 .inner-box {
  max-width: 1486px;
  margin: 0 auto;
  padding: 0 20px;
}
#section12 .inner-box .txt {
  width: 71.5rem;
  color: #fff;
  display: inline-block;
  text-align: center;
}
#section12 .inner-box .txt > span {
  font-size: 2.4rem;
  letter-spacing: -0.075em;
  display: inline-block;
  margin-bottom: 0.7rem;
}
#section12 .inner-box .txt h2 {
  font-size: 4.2rem;
  padding-bottom: 1.5rem;
}
#section12 .inner-box .txt p {
  font-weight: 300;
  line-height: 1.5444444444;
  padding-bottom: 5rem;
}
#section12 .inner-box ul {
  display: flex;
}
#section12 .inner-box ul li {
  position: relative;
  text-align: center;
  padding: 0 2.9rem;
  color: #fff;
  font-size: 2.085rem;
}
#section12 .inner-box ul li .icon {
  height: 6.7rem;
  margin-bottom: 2.5rem;
}
#section12 .inner-box ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-image: url("../img/gradient_line.png");
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1279px) {
  #section12 {
    background-attachment: unset;
  }
  #section12 .inner-box ul li {
    font-size: 1.8rem;
  }
  #section12 .inner-box ul li .icon {
    margin-bottom: 1rem;
  }
  #section12 .inner-box ul li .icon img {
    transform: scale(0.8);
  }
}
@media (max-width: 767px) {
  #section12 {
    padding: 15rem 0;
    background-attachment: unset;
    background-position: center;
  }
  #section12 .inner-box {
    text-align: center;
  }
  #section12 .inner-box .txt {
    width: unset;
  }
  #section12 .inner-box .txt > span {
    font-size: 1.8rem;
  }
  #section12 .inner-box .txt h2 {
    font-size: 2.8rem;
  }
  #section12 .inner-box .txt p {
    font-size: 1.4rem;
  }
  #section12 .inner-box ul {
    margin: 0 -20px;
    justify-content: center;
  }
  #section12 .inner-box ul li {
    padding: 0 10px;
    font-size: 1.5rem;
  }
  #section12 .inner-box ul li .icon img {
    transform: scale(0.5);
  }
}
/* section13 */
#section13 {
  padding-top: 16.6rem;
  padding-bottom: 23.8rem;
}
#section13 .txt-area {
  padding-bottom: 7.3rem;
}
#section13 .inner-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
#section13 .inner-box ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.4rem;
}
#section13 .inner-box ul li {
  overflow: hidden;
  height: 70.8rem;
  background-color: #f8f8f8;
  border-radius: 30px;
  width: calc(33.3333333333% - 0.67rem);
}
#section13 .inner-box ul li .txt {
  padding-top: 15.3%;
  padding-left: 10.1%;
}
#section13 .inner-box ul li .txt .icon {
  margin-bottom: 2.2rem;
}
#section13 .inner-box ul li .txt h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #005d7d;
  letter-spacing: -0.075em;
  padding-bottom: 2rem;
}
#section13 .inner-box ul li .txt p {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
  line-height: 1.375;
  padding-right: 15%;
}
#section13 .inner-box ul li .figure {
  padding-top: 2.7rem;
  text-align: right;
}
#section13 .inner-box ul li:nth-child(4) .figure {
  position: relative;
  top: 28px;
}
#section13 .inner-box ul li:nth-child(5) .figure {
  position: relative;
  top: 28px;
}
#section13 .inner-box ul li:nth-child(6) .figure {
  position: relative;
  top: 28px;
}

@media (max-width: 1279px) {
  #section13 .inner-box ul li {
    height: unset;
  }
  #section13 .inner-box ul li .txt .icon > img {
    transform: scale(0.7);
    transform-origin: left center;
  }
  #section13 .inner-box ul li .figure {
    height: 31.9781078968vw;
    display: flex;
    justify-content: flex-end;
  }
  #section13 .inner-box ul li .figure > img {
    transform: scale(0.8);
    transform-origin: right bottom;
  }
}
@media (max-width: 767px) {
  #section13 {
    padding: 10rem 0;
  }
  #section13 .inner-box ul {
    margin: 0 -10px;
    gap: 7.5px;
  }
  #section13 .inner-box ul li {
    width: calc(50% - 0.5rem);
  }
  #section13 .inner-box ul li .txt .icon > img {
    transform: scale(0.5);
  }
  #section13 .inner-box ul li .txt h3 {
    padding-right: 15px;
    font-size: 2rem;
  }
  #section13 .inner-box ul li .txt p {
    padding-right: 10%;
    font-size: 1.4rem;
  }
  #section13 .inner-box ul li .figure {
    height: unset;
    padding-top: 0;
  }
  #section13 .inner-box ul li .figure > img {
    transform: scale(0.7);
    transform-origin: right bottom;
  }
  #section13 .inner-box ul li:nth-child(4) .figure {
    position: unset;
    top: unset;
  }
  #section13 .inner-box ul li:nth-child(5) .figure {
    position: unset;
    top: unset;
  }
  #section13 .inner-box ul li:nth-child(6) .figure {
    position: relative;
    top: 40px;
  }
}
/* section14 */
#section14 {
  background-image: url("../img/sc14_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 23rem;
  padding-bottom: 17.6rem;
}
#section14 .txt-area {
  padding-bottom: 7.6rem;
  color: #fff;
}
#section14 .txt-area > span {
  background-image: url("../img/symbol02.png");
  color: #fff;
}
#section14 .txt-area p {
  font-size: 1.91rem;
}
#section14 .inner-box {
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 150px;
}
#section14 .inner-box .sub-swiper {
  position: relative;
}
#section14 .inner-box .sub-swiper .swiper-wrapper .swiper-slide img {
  width: 1176px;
  -o-object-fit: cover;
     object-fit: cover;
}
#section14 .inner-box .sub-swiper .sub-arrow {
  width: 39px;
  height: 78px;
  position: absolute;
  top: 57.5%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
}
#section14 .inner-box .sub-swiper .sub-swiper-left {
  background-image: url("../img/sub_swiper_prev.png");
  background-repeat: no-repeat;
  left: -9.1927083333vw;
}
#section14 .inner-box .sub-swiper .sub-swiper-right {
  background-image: url("../img/sub_swiper_next.png");
  background-repeat: no-repeat;
  right: -9.1927083333vw;
}
#section14 .inner-box ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  gap: 3px;
}
#section14 .inner-box ul li {
  width: calc(20% - 2.4px);
}
#section14 .inner-box ul li img {
  cursor: pointer;
}

@media (max-width: 1279px) {
  #section14 {
    padding: 17rem 0;
  }
  #section14 .inner-box {
    padding: 0 20px;
  }
  #section14 .inner-box .sub-swiper .sub-arrow {
    top: 50%;
  }
  #section14 .inner-box .sub-swiper .sub-swiper-left {
    left: 20px;
    background-size: 70%;
  }
  #section14 .inner-box .sub-swiper .sub-swiper-right {
    right: 20px;
    background-size: 70%;
    background-position: right center;
  }
}
@media (max-width: 767px) {
  #section14 {
    padding: 10rem 0;
  }
  #section14 .inner-box {
    padding: 0 10px;
  }
  #section14 .inner-box .sub-swiper .sub-arrow {
    display: none;
  }
  #section14 .inner-box ul {
    margin-top: 3px;
  }
}
/* section15 */
#section15 {
  padding-top: 14.5rem;
  padding-bottom: 11.4rem;
}
#section15 .txt-area {
  padding-bottom: 4.3rem;
}
#section15 .txt-area h2 {
  padding-bottom: 4.6rem;
}
#section15 .txt-area p {
  line-height: 1.5;
  font-size: 2.4rem;
  letter-spacing: -0.075em;
}
#section15 .txt-area p b {
  font-weight: 600;
}
#section15 .inner-box {
  max-width: 1291px;
  margin: 0 auto;
  padding: 0 20px;
}
#section15 .inner-box #map {
  height: 579px;
}
#section15 .inner-box #map iframe {
  width: 100%;
  height: 100%;
}
#section15 .inner-box .parking {
  margin-bottom: 10.8rem;
  display: flex;
  gap: 7.8125vw;
  background-color: #f8f8f8;
  padding: 4.65rem 0;
  padding-left: 6.3rem;
}
#section15 .inner-box .parking .title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
}
#section15 .inner-box .parking .title .sign {
  flex-shrink: 0;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  background-color: #005d7d;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.075em;
}
#section15 .inner-box .parking .title .txt {
  font-size: 3.2rem;
  letter-spacing: -0.075em;
  line-height: 1.17;
}
#section15 .inner-box .parking .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 130%;
  background-color: #e1e1e1;
  top: 50%;
  transform: translateY(-50%);
  right: calc(-3.90625vw + 7px);
}
#section15 .inner-box .parking .desc {
  display: flex;
  align-items: center;
}
#section15 .inner-box .parking .desc > ul > li {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: -0.075em;
}
#section15 .inner-box .parking .desc > ul > li b {
  font-weight: 600;
}
#section15 .inner-box .information {
  display: flex;
  gap: 5.5208333333vw;
  padding-left: 3.0729166667vw;
}
#section15 .inner-box .information > div > .icon {
  text-align: center;
}
#section15 .inner-box .information > div > .icon > h3 {
  font-size: 3.4rem;
  padding-bottom: 2.2rem;
}
#section15 .inner-box .information .time-wrap {
  display: flex;
  gap: 6.1rem;
}
#section15 .inner-box .information .time-wrap .time .time-table {
  padding-left: 5px;
}
#section15 .inner-box .information .time-wrap .time .time-table > li {
  font-size: 2rem;
  display: flex;
  gap: 3rem;
  padding-bottom: 3rem;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day {
  width: 10rem;
  display: inline-block;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.weekday {
  display: flex;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.weekday > span {
  width: 50%;
  display: inline-block;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.weekday > span:first-child {
  text-align: left;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.weekday > span:last-child {
  text-align: right;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.lunchtime {
  display: flex;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.lunchtime > span {
  width: 25%;
  display: inline-block;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.lunchtime > span:first-child {
  text-align: left;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.lunchtime > span:nth-child(2) {
  text-align: center;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.lunchtime > span:nth-child(3) {
  text-align: center;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.lunchtime > span:last-child {
  text-align: right;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.saturday {
  display: flex;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.saturday > span {
  width: 33.3333333333%;
  display: inline-block;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.saturday > span:first-child {
  text-align: left;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.saturday > span:nth-child(2) {
  text-align: center;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .day.saturday > span:last-child {
  text-align: right;
}
#section15 .inner-box .information .time-wrap .time .time-table > li .hour {
  width: 27.1rem;
  display: inline-block;
  display: flex;
  justify-content: space-evenly;
  letter-spacing: 0.15em;
}
#section15 .inner-box .information .time-wrap .time .time-table > li:last-child {
  padding-bottom: 2.2rem;
}
#section15 .inner-box .information .time-wrap .time .notice > li {
  font-size: 2rem;
  color: #717171;
  line-height: 1.5;
  letter-spacing: -0.075em;
}
#section15 .inner-box .information .tel-wrap {
  display: flex;
  gap: 7.3rem;
}
#section15 .inner-box .information .tel-wrap .tel > ul > li {
  font-size: 2rem;
}
#section15 .inner-box .information .tel-wrap .tel > ul > li > b {
  font-size: 4rem;
  letter-spacing: 0;
  font-family: "Jalnan";
}
#section15 .inner-box .information .tel-wrap .tel .booking > li {
  padding-bottom: 1rem;
}
#section15 .inner-box .information .tel-wrap .tel .fax > li {
  padding-bottom: 3px;
}
#section15 .inner-box .information .tel-wrap .tel .fax > li b {
  margin-left: 5px;
}

@media (max-width: 1279px) {
  #section15 .inner-box #map {
    height: 450px;
  }
  #section15 .inner-box .parking {
    justify-content: space-around;
    gap: 3vw;
    padding: 3.8rem 0;
    padding-left: 4vw;
  }
  #section15 .inner-box .parking .title {
    gap: 3vw;
  }
  #section15 .inner-box .parking .title .sign {
    width: 7.5rem;
    height: 7.5rem;
    font-size: 2.5rem;
  }
  #section15 .inner-box .parking .title .txt {
    font-size: 2.5rem;
  }
  #section15 .inner-box .parking .title .txt br {
    display: none;
  }
  #section15 .inner-box .parking .title::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 130%;
    background-color: #e1e1e1;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
  }
  #section15 .inner-box .parking .desc {
    padding-right: 20px;
  }
  #section15 .inner-box .parking .desc > ul > li {
    font-size: 2rem;
  }
  #section15 .inner-box .information {
    padding-left: 10px;
    padding-right: 10px;
    gap: 0;
  }
  #section15 .inner-box .information > div {
    width: 50%;
    flex-direction: column;
    text-align: center;
  }
  #section15 .inner-box .information > div > .icon > img {
    transform: scale(0.7);
  }
  #section15 .inner-box .information .time-wrap .time .time-table {
    display: inline-block;
  }
  #section15 .inner-box .information .time-wrap .time .time-table > li {
    font-size: 1.8rem;
  }
  #section15 .inner-box .information .time-wrap .time .notice {
    display: inline-block;
    width: 360px;
  }
  #section15 .inner-box .information .time-wrap .time .notice > li {
    text-align: left;
    font-size: 1.8rem;
  }
  #section15 .inner-box .information .tel-wrap .tel {
    text-align: center;
  }
  #section15 .inner-box .information .tel-wrap .tel > ul > li {
    font-size: 1.8rem;
  }
  #section15 .inner-box .information .tel-wrap .tel > ul > li > b {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  #section15 {
    padding: 10rem 0;
  }
  #section15 .inner-box #map {
    height: 200px;
  }
  #section15 .inner-box .parking {
    margin-bottom: 7.5rem;
    flex-direction: column;
    padding: 3.8rem 20px;
    gap: 25px;
  }
  #section15 .inner-box .parking .title {
    gap: 15px;
  }
  #section15 .inner-box .parking .title .sign {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
  #section15 .inner-box .parking .title .txt {
    font-size: 2.2rem;
  }
  #section15 .inner-box .parking .desc {
    padding-right: 0;
  }
  #section15 .inner-box .parking .desc > ul > li {
    font-size: 1.8rem;
  }
  #section15 .inner-box .parking .desc > ul > li:first-child {
    margin-bottom: 3.5px;
  }
  #section15 .inner-box .information {
    padding: 0;
    flex-direction: column;
    gap: 8rem;
  }
  #section15 .inner-box .information > div {
    width: 100%;
  }
  #section15 .inner-box .information > div > .icon > h3 {
    padding-bottom: 3.5rem;
    font-size: 2.8rem;
  }
  #section15 .inner-box .information > div > .icon > img {
    transform: scale(0.4);
    transform-origin: top center;
  }
  #section15 .inner-box .information .time-wrap {
    gap: 0px;
  }
  #section15 .inner-box .information .time-wrap .time {
    margin-top: -15px;
  }
  #section15 .inner-box .information .time-wrap .time .time-table > li {
    padding-bottom: 2rem;
    gap: 5rem;
    font-size: 1.7rem;
  }
  #section15 .inner-box .information .time-wrap .time .time-table > li .day {
    width: 7rem;
  }
  #section15 .inner-box .information .time-wrap .time .time-table > li .hour {
    font-size: 1.6rem;
    width: 23rem;
  }
  #section15 .inner-box .information .time-wrap .time .time-table > li:last-child {
    padding-bottom: 3rem;
  }
  #section15 .inner-box .information .time-wrap .time .notice {
    width: 275px;
  }
  #section15 .inner-box .information .time-wrap .time .notice > li {
    font-size: 1.5rem;
  }
  #section15 .inner-box .information .tel-wrap {
    gap: 0px;
  }
  #section15 .inner-box .information .tel-wrap .tel {
    margin-top: -15px;
  }
  #section15 .inner-box .information .tel-wrap .tel .booking > li {
    font-size: 1.6rem;
  }
  #section15 .inner-box .information .tel-wrap .tel .booking > li b {
    font-size: 3.2rem;
  }
  #section15 .inner-box .information .tel-wrap .tel .fax > li b {
    font-size: 3.2rem;
  }
}
/* txt-area */
.txt-area {
  padding: 0 25px;
  text-align: center;
}
.txt-area > span {
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #767677;
  letter-spacing: 0.305em;
  background-image: url("../img/symbol.png");
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: 4.2rem 3.5rem;
  vertical-align: top;
  padding-top: 5.5rem;
  display: inline-block;
  margin-bottom: 3.3rem;
}
.txt-area h2 {
  font-size: 4.2rem;
  font-weight: 400;
  padding-bottom: 2.4rem;
}
.txt-area p {
  letter-spacing: -0.05em;
}

@media (max-width: 1279px) {
  #wrap #main .txt-area h2 {
    font-size: 4rem;
  }
  #wrap #main .txt-area p {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  #wrap #main .txt-area > span {
    background-size: 25px 21px;
    padding-top: 36px;
    margin-bottom: 2.7rem;
  }
  #wrap #main .txt-area h2 {
    font-size: 2.5rem;
    padding-bottom: 2rem;
  }
  #wrap #main .txt-area p {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=main.css.map */