/* Common */
.sec-title {
  font-size: 4.2rem;
  font-weight:700;
}

.sec-text {
  font-size:2rem;
}

.sec-caution {
  font-size:2rem;
}

@media screen and (max-width:1200px) {
  .sec-title {
    font-size:3.2rem;
  }

  .sec-text {
    font-size:1.8rem;
  }

  .sec-caution {
    font-size:1.8rem;
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .sec-title {
    font-size:2.4rem;
  }

  .sec-text {
    font-size:1.6rem;
  }

  .sec-caution {
    font-size:1.6rem;
  }
}
@media screen and (max-width:576px) {
  .sec-title {
    font-size:2rem;
  }

  .sec-text {
    font-size:1.4rem;
  }

  .sec-caution {
    font-size:1.4rem;
  }
}


/* Sub Visual */
.sub-visual {
  width: 100%;
  height:400px;
  background-color: #F58466;
}

.sub-visual-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1400px;
  width: 95%;
  height: 100%;
  margin:0 auto;
}

.sub-visual-title {
  font-size: 5.2rem;
}

.sub-visual-nav {
  display: flex;
  align-items: center;
  position: absolute;
  right:0;
  bottom:50px;
  margin:0px -15px;
}

.sub-visual-nav dd {
  position: relative;
  padding: 0px 15px;
}

.sub-visual-nav dd:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right: -3px;
  transform: translateY(-50%);
  width: 6px;
  height:10px;
  background: url('../img/icon//ico_arr04.png') no-repeat center;
}

.sub-visual-nav dd.home a {
  display: block;
  width: 20px;
  height:18px; 
  background: url('../img/icon/ico_home.png') no-repeat center;
}

@media screen and (max-width:1200px) {
  .sub-visual-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width:1024px) {
  .sub-visual {
    height: 300px;
  }

  .sub-visual-nav {
    bottom: 30px;
    margin: 0px -12px;
  }

  .sub-visual-nav dd {
    padding: 0px 12px;
  }

  .sub-visual-nav dd.home a {
    width: 18px;
    height: 16px;
    background-size: auto 16px;
  }
}
@media screen and (max-width:768px) {
  .sub-visual {
    height: 240px;
  }

  .sub-visual-title {
    font-size: 2.8rem;
  }

  .sub-visual-nav {
    bottom: 20px;
  }

  .sub-visual-nav dd.home a {
    width: 16px;
    height: 14px;
    background-size: auto 14px;
  }
}
@media screen and (max-width:576px) {
  .sub-visual {
    height: 180px;
  }

  .sub-visual-title {
    font-size: 2.4rem;
  }

  .sub-visual-nav {
    bottom: 12px;
    margin: 0px -8px;
  }

  .sub-visual-nav dd {
    padding: 0px 8px;
  }

  .sub-visual-nav dd:not(:last-child)::after {
    height: 8px;
    background-size: auto 8px;
  }

  .sub-visual-nav dd.home a {
    width: 14px;
    height: 11px;
    background-size: auto 11px;
  }
}


/* About */
.about {
  padding:130px 0px;
}

.about .sec:not(:last-child) {
  padding-bottom: 130px;
}

.about .sec01 .entire { 
  position: relative;
  width: 100%;
  padding:140px 0px;
  margin-bottom:100px;
  text-align: center;
}

.about .sec01 .entire::after {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url('/asset/img/sub/about/about_sec01_bak.png') no-repeat center / cover;
  z-index:-1;
}

.about .sec01 .entire p {
  line-height:1.6;
}


.about .sec01 .list {
  display: flex;
  gap:28px;
}

.about .sec01 .list li {
  flex:1 1;
}

.about .sec01 .list .img {
  font-size: 0px;
}

.about .sec01 .list .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(100% - 80px);
  height:50px;
  margin: 0 auto;
  border-radius: 40px;
  background: linear-gradient(90deg, #F58466 0%, #FBB040 100%);
}

.about .sec02 .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:30px;
}

.about .sec02 .box:not(:last-child) {
  margin-bottom:80px;
}

.about .sec02 .img {
  width: 49%;
  font-size: 0px;
}

.about .sec02 .txt {
  width: calc(46% + 30px);
  padding:0px 30px;
}

.about .sec02 .txt .t02 {
  line-height:1.6;
}

.about .sec02 .txt .t03 {
  line-height:1.5;
}

@media screen and (max-width:1200px) {
  .about .sec01 .list .txt {
    width: calc(100% - 60px);
  }

  .about .sec02 .txt {
    width: 46%;
    padding: 0px;
  }
}
@media screen and (max-width:1024px) {
  .about {
    padding:100px 0px;
  }

  .about .sec:not(:last-child) {
    padding-bottom: 100px;
  }

  .about .sec01 .entire {
    padding: 100px 0px;
    margin-bottom: 80px;
  }

  .about .sec01 .list {
    gap:16px;
  }

  .about .sec01 .list .txt {
    width: calc(100% - 30px);
    height: 42px;
  }

  .about .sec02 .box {
    gap:20px;
  }

  .about .sec02 .box:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width:768px) {
  .about {
    padding:80px 0px;
  }

  .about .sec:not(:last-child) {
    padding-bottom: 80px;
  }

  .about .sec01 .entire {
    padding: 80px 0px;
  }

  .about .sec01 .list {
    flex-wrap: wrap;
  }

  .about .sec01 .list li {
    flex:1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .about .sec01 .list .img {
    text-align: center;
  }

  .about .sec01 .list .img img {
    width: 229px;
  }

  .about .sec02 .box {
    flex-wrap: wrap;
  }

  .about .sec02 .box:not(:last-child) {
    margin-bottom: 40px;
  }

  .about .sec02 .img {
    width: 100%;
    order: 1;
  }

  .about .sec02 .img img {
    width: 100%;
  }

  .about .sec02 .txt {
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width:576px) {
  .about .sec01 .entire {
    padding: 60px 0px;
    margin-bottom: 60px;
  }

  .about .sec01 .list {
    gap:12px 0px;
  }

  .about .sec01 .list li {
    flex:1 1 50%;
    max-width: 50%;
  }

  .about .sec01 .list .img img {
    width: 139px;
  }

  .about .sec01 .list .txt {
    width: calc(100% - 24px);
    height: 30px;
  }

  .about .sec02 .box {
    gap:16px;
  }

  .about .sec02 .box:not(:last-child) {
    margin-bottom: 30px;
  }
}


/* Intro */
.intro {
  padding: 130px 0px;
}

.intro .sec:not(:last-child) {
  padding-bottom: 130px;
}

.intro .sec01 .box {
  display: flex;
  align-items: center;
  gap:80px;
}

.intro .sec01 .img {
  width: 49%;
}

.intro .sec01 .txt {
  width: 42.5%; 
}

.intro .sec01 .txt .t01 {
  line-height:1.6;
}

.intro .sec02 .entire {
  padding:250px 20px 50px;
  background: url('/asset/img/sub/about/intro_sec02_bak.png') no-repeat center / cover;
  border-radius:20px;
  overflow: hidden;
}

.intro .sec02 .info {
  display: flex;
  flex-wrap: wrap;
  margin:-20px -14px;
}

.intro .sec02 .info .box {
  flex:1 1 50%;
  max-width: 50%;
  padding: 20px 14px;
}

.intro .sec02 .info dt {
  display: flex;
  align-items: center;
  gap:10px;
  font-size: 3.2rem;
  padding-bottom:30px;
  margin-bottom:30px;
  border-bottom: 1px solid #939598;
}

.intro .sec02 .info dt .icon {
  display: block;
  width:40px;
  height:40px;
  background-repeat: no-repeat;
  background-position: center;
}

.intro .sec02 .info dt .icon01 {
  background-image: url('/asset/img/sub/about/intro_sec02_ico01.png');
}

.intro .sec02 .info dt .icon02 {
  background-image: url('/asset/img/sub/about/intro_sec02_ico02.png');
}

.intro .sec02 .info dt .icon03 {
  background-image: url('/asset/img/sub/about/intro_sec02_ico03.png');
}

.intro .sec02 .info dt .icon04 {
  background-image: url('/asset/img/sub/about/intro_sec02_ico04.png');
}

.intro .sec02 .info dd {
  position: relative;
  padding-left:30px;
  font-size: 2rem;
  line-height:1.9;
}

.intro .sec02 .info dd::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:13px;
  transform: translateY(-50%);
  width:4px;
  height:4px;
  border-radius:50%;
  background-color: #191919;
}

@media screen and (max-width:1200px) {
  .intro .sec02 .info dt {
    font-size: 2.4rem;
  }

  .intro .sec02 .info dd {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .intro {
    padding: 100px 0px;
  }

  .intro .sec:not(:last-child) {
    padding-bottom: 100px;
  }

  .intro .sec01 .box {
    gap:60px;
  }

  .intro .sec02 .entire {
    padding:180px 16px 36px;
  }

  .intro .sec02 .info {
    margin:-16px -8px;
  }

  .intro .sec02 .info .box {
    padding: 16px 8px;
  }

  .intro .sec02 .info dt {
    gap:6px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .intro .sec02 .info dt .icon {
    width: 30px;
    height:30px;
    background-size: auto 30px;
  }

  .intro .sec02 .info dd {
    padding-left: 20px;
  }

  .intro .sec02 .info dd::before {
    left: 7px;
  }
}
@media screen and (max-width:768px) {
  .intro {
    padding: 80px 0px;
  }

  .intro .sec:not(:last-child) {
    padding-bottom: 80px;
  }

  .intro .sec01 .box {
    flex-wrap: wrap;
    gap:20px;
  }

  .intro .sec01 .img {
    width: 100%;
  }

  .intro .sec01 .img img {
    width: 100%;
  }

  .intro .sec01 .txt {
    width: 100%;
  }

  .intro .sec02 .entire {
    padding: 140px 16px 36px;
  }

  .intro .sec02 .info .box {
    flex:1 1 100%;
    max-width: 100%;
  }

  .intro .sec02 .info dt {
    font-size: 2rem;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .intro .sec02 .info dd {
    font-size: 1.6rem;
  }

  .intro .sec02 .info dd::before {
    width: 3px;
    height: 3px;
  }
}
@media screen and (max-width:576px) {
  .intro .sec01 .box {
    gap:16px;
  }

  .intro .sec02 .entire {
    padding: 100px 10px 20px;
  }

  .intro .sec02 .info {
    margin:-10px -4px;
  }

  .intro .sec02 .info .box {
    padding: 10px 4px;
  }

  .intro .sec02 .info dt {
    gap:4px;
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .intro .sec02 .info dt .icon {
    width: 24px;
    height:24px;
    background-size: auto 24px;
  }

  .intro .sec02 .info dd {
    font-size: 1.4rem;
    line-height:1.4;
    padding-left: 12px;
  }

  .intro .sec02 .info dd:not(:last-child) {
    margin-bottom: 4px;
  }

  .intro .sec02 .info dd::before {
    top:7px;
    left: 4px;
    transform: none;
    width: 2px;
    height: 2px;
  }
}


/* Children */
.children {
  padding:130px 0px;
}

.children .sec:not(:last-child) {
  padding-bottom: 130px;
}

.children .sec01 .entire {
  position: relative;
  padding:130px 0px;  
}

.children .sec01 .entire::after {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #FFF9F0;
  /* background: url('/asset/img/sub/field/children_sec01_bak.png') no-repeat center / cover; */
  z-index:-1;
}

.children .sec01 .txt .t01 {
  line-height: 1.5;
}

.children .sec01 .txt .t02 {
  line-height:1.6;
}

.children .sec02 .list {
  display: flex;
  gap:2%;
}

.children .sec02 .list li {
  flex:1 1;
}

.children .sec02 .list .card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.children .sec02 .list .txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  /* top:0; */
  left: 0;
  bottom: 0;
  width: 100%;
  /* height:100%; */
  padding: 40px 12.1580%;
}

.children .sec02 .list .txt .t01 {
  line-height:1.5;
}

.children .sec02 .list .txt .t02 {
  min-height: 110px;
  line-height:1.7;
}

.children .sec02 .list .img img {
  width: 100%;
}

.children .sec03 .cir-wrap {
  position: relative;
  display: flex;
}

.children .sec03 .cir-wrap .before {
  position: absolute;
  top:50%;
  right:-3px;
  transform: translate(-100%, -50%);
  width:100%;
  height:2px;
  background-color: #F58466;
}

.children .sec03 .cir-wrap .before::before {
  content: '';
  display: block;
  position: absolute;
  right: 0; 
  top: 50%;
  width: 100%;
  height:10px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: all .8s;
}

.children .sec03 .cir-wrap .after {
  position: absolute;
  top:50%;
  left:-4px;
  transform: translate(100%, -50%);
  width:100%;
  height:2px;
  background-color: #F58466;
}

.children .sec03 .cir-wrap .after::before {
  content: '';
  display: block;
  position: absolute;
  right: -1px;
  top: 50%;
  width: 100%;
  height:10px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: all 1.5s;
  transition-delay: 1.7s;
}

.children .sec03 .cir-wrap .cir {
  position: relative;
  flex: 1 0 35.715%;
  padding-top: calc(100%/2.8);
}

.children .sec03 .cir-wrap .cir02,
.children .sec03 .cir-wrap .cir03 {
  margin-left:-50px;
}

.children .sec03 .cir-wrap .svg {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height:100%;
  opacity: 0;
  transition-delay:1s;
}

.children .sec03 .cir-wrap .svg svg {
  width: 100%;
  height: 100%;
  stroke-dasharray: 1600;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transform: rotate(-90deg); 
}

.children .sec03 .cir-wrap .pin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:70px;
  left:50%;
  transform: translateX(-50%);
  width: 100px;
  height:50px;
  border-radius:100px;
  background: linear-gradient(90deg, #FBB040 0%, #F58466 100%);
  font-size: 2.4rem;
  font-weight: 800;
  color:#fff;
}

.children .sec03 .cir-wrap .box {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}

.children .sec03 .cir-wrap .box p {
  font-size: 3.2rem;
  font-weight:700;
  line-height:1.4;
}

.children .sec04 .box {
  display: flex;
  align-items: center;
  gap:60px;
}

.children .sec04 .box:not(:last-child) {
  margin-bottom:60px;
}

.children .sec04 .img {
  position: relative;
  width: 49%;
}

.children .sec04 .img .pin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:30px;
  left:30px;
  width: 150px;
  height:50px;
  border-radius: 100px;
  background: linear-gradient(90deg, #FBB040 0%, #F58466 100%);
  font-size:2.4rem;
  font-weight:800;
  color:#fff;
}

.children .sec04 .txt {
  width: 46.5714%;
}

.children .sec04 .txt .t01 {
  line-height:1.6;
}

.children .sec04 .txt .t02 {
  line-height:1.6;
}

.children .sec05 .hd {
  display: flex;
  align-items: flex-end;
  gap:28px;
}

.children .sec05 .list {
  display: flex;
  gap:28px;
}

.children .sec05 .list li {
  flex:1 1;
}

@media screen and (min-width:769px) {
  .children .sec03.aos-animate .cir-wrap .svg {
    opacity: 1;
  }

  .children .sec03 .cir-wrap .cir01 .svg svg,
  .children .sec03 .cir-wrap .cir03 .svg svg {
    transform: rotate(-270deg);
  }
  
  .children .sec03.aos-animate .cir-wrap .svg svg {
    animation: svgAni .8s linear;
    animation-delay: .8s;
  }
  

  .children .sec03.aos-animate .cir-wrap .before::before,
  .children .sec03.aos-animate .cir-wrap .after::before {
    width: 0;
  }
}
@media screen and (max-width:1366px) {
  .children .sec02 .list {
    gap:1.5%;
  }

  .children .sec02 .list .txt {
    padding: 40px 10%;
  }
}
@media screen and (max-width:1200px) {
  .children .sec02 .list {
    gap:12px;
  }

  .children .sec02 .list .txt {
    padding: 40px 8%;
  }

  .children .sec03 .cir-wrap {
    width: 95%;
    margin: 0 auto;
  }

  .children .sec03 .cir-wrap .before {
    right: -7px;
  }

  .children .sec03 .cir-wrap .after {
    left: -7px;
  }

  .children .sec03 .cir-wrap .pin {
    top:40px;
    font-size: 2rem;
  }

  .children .sec03 .cir-wrap .box p {
    font-size: 2.4rem;
  }

  .children .sec04 .box {
    gap:40px;
  }

  .children .sec04 .img .pin {
    font-size: 2rem;
  }
  
  .children .sec05 .hd {
    gap:20px;
  }

  .children .sec05 .list {
    gap:20px;
  }
}
@media screen and (max-width:1024px) {
  .children {
    padding:100px 0px;
  }

  .children .sec:not(:last-child) {
    padding-bottom: 100px;
  }

  .children .sec01 .entire {
    padding: 100px 0px;
  }

  .children .sec02 .list {
    flex-wrap: wrap;
    gap:0px;
    margin: -8px;
  }

  .children .sec02 .list li {
    flex:1 1 50%;
    max-width:50%;
    padding: 8px;
  }

  .children .sec02 .list .txt {
    padding: 30px 8%;
  }

  .children .sec02 .list .txt .t02 {
    min-height:80px;
  }
  
  .children .sec03 .cir-wrap .pin {
    width: 80px;
    height: 42px;
  }

  .children .sec04 .box {
    gap:30px;
  }

  .children .sec04 .box:not(:last-child) {
    margin-bottom: 40px;
  }

  .children .sec04 .img .pin {
    top:20px;
    left: 20px;
    width: 120px;
    height: 42px;
  }

  .children .sec05 .hd {
    flex-direction: column;
    align-items: flex-start;
    gap:16px;
  }

  .children .sec05 .list {
    gap:16px;
  }
}
@media screen and (max-width:768px) {
  .children {
    padding:80px 0px;
  }

  .children .sec:not(:last-child) {
    padding-bottom: 80px;
  }
  
  .children .sec01 .entire {
    padding: 80px 0px;
  }

  .children .sec02 .list {
    margin: -4px;
  }

  .children .sec02 .list li {
    flex:1 1 100%;
    max-width: 100%;
    padding: 4px;
  }

  .children .sec02 .list .txt {
    padding: 30px;
  }

  .children .sec02 .list .txt .t02 {
    min-height: auto;
  }

  .children .sec03 .cir-wrap {
    width: 100%;
    flex-wrap: wrap;
    gap:8px;
    opacity: 0;
    transform: translate3d(0,60px,0);
    transition-duration:.8s;
    transition-timing-function:ease;
    transition-delay: .1s;
  }

  .children .sec03 .cir-wrap .before {
    display:none;
  }

  .children .sec03 .cir-wrap .after {
    display: none;
  }

  .children .sec03 .cir-wrap .cir {
    flex:1 1 100%;
    height: auto;
    padding: 16px;
    border:1px solid #191919;
    border-radius: 10px;
    text-align: center;
  }

  .children .sec03 .cir-wrap .cir02, .children .sec03 .cir-wrap .cir03 {
    margin: 0px;
  }

  .children .sec03 .cir-wrap .svg {
    display: none;
  }

  .children .sec03 .cir-wrap .box {
    position: relative;
    top:unset;
    left: unset;
    transform: none;
  }

  .children .sec03 .cir-wrap .pin {
    position: relative;
    top:unset;
    left: unset;
    transform: none;
    height:36px;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }

  .children .sec03 .cir-wrap .box p {
    font-size: 2rem;
  }

  .children .sec03.aos-animate .cir-wrap {
    opacity: 1;
    transform: translateZ(0);
  }

  .children .sec04 .box {
    flex-wrap: wrap;
    gap:20px;
  }

  .children .sec04 .img {
    width: 100%;
  }

  .children .sec04 .img .pin {
    height: 36px;
    font-size: 1.8rem;
  }

  .children .sec04 .img img {
    width: 100%;
  }

  .children .sec04 .txt {
    width: 100%;
  }

  .children .sec05 .list {
    flex-wrap: wrap;
    gap:40px;
  }

  .children .sec05 .list li {
    flex:1 1 100%;
  }
}
@media screen and (max-width:576px) {
  .children .sec01 .entire {
    padding: 60px 0px;
  }

  .children .sec02 .list .txt {
    padding: 16px;
  }

  .children .sec03 .cir-wrap {
    gap:4px;
  }

  .children .sec03 .cir-wrap .cir {
    padding: 10px;
  }

  .children .sec03 .cir-wrap .pin {
    width: 40px;
    height: 24px;
    margin-bottom: 6px;
    font-size: 1.2rem;
  }

  .children .sec03 .cir-wrap .box p {
    font-size: 1.6rem;
  }

  .children .sec04 .box {
    gap:12px;
  }

  .children .sec04 .box:not(:last-child) {
    margin-bottom: 30px;
  }

  .children .sec04 .img .pin {
    top:10px;
    left:10px;
    width: 80px;
    height: 24px;
    font-size: 1.2rem;
  }

  .children .sec04 .txt .t01 {
    line-height: 1.4;
  }

  .children .sec05 .hd {
    gap:10px;
  }

  .children .sec05 .list {
    gap:30px;
  }
}


/* Parents */
.parents {
  padding:130px 0px;
}

.parents .sec:not(:last-child) {
  padding-bottom: 130px;
}

.parents .sec01 .entire {
  position: relative;
  padding:130px 0px;  
}

.parents .sec01 .entire::after {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #FFF9F0;
  /* background: url('/asset/img/sub/field/parents_sec01_bak.png') no-repeat center / cover; */
  z-index:-1;
}

.parents .sec01 .txt .t01 {
  line-height: 1.5;
}

.parents .sec01 .txt .t02 {
  line-height:1.6;
}

.parents .sec02 .box {
  display: flex;
  align-items: center;
  gap:28px;
}

.parents .sec02 .img {
  width: 49%;
}

.parents .sec02 .txt {
  width: calc(46% + 30px);
  padding:0px 30px;
}

.parents .sec02 .txt .pin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height:50px;
  line-height: 50px;
  background: linear-gradient(90deg, #FBB040 0%, #F58466 100%);
  border-radius: 100px;
}

.parents .sec02 .txt .t02 {
  line-height:1.6;
}

.parents .sec02 .box02 {
  justify-content: flex-end;
}

.parents .sec02 .box02 .img {
  order: 2;
}

.parents .sec02 .box02 .txt {
  order: 1;
  text-align: right;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  .parents {
    padding:100px 0px;
  }

  .parents .sec:not(:last-child) {
    padding-bottom: 100px;
  }

  .parents .sec01 .entire {
    padding:100px 0px;  
  }

  .parents .sec02 .box {
    gap:20px;
  }

  .parents .sec02 .txt .pin {
    width: 100px;
    height: 42px;
  }
}
@media screen and (max-width:768px) {
  .parents {
    padding:80px 0px;
  }

  .parents .sec:not(:last-child) {
    padding-bottom: 80px;
  }

  .parents .sec01 .entire {
    padding:80px 0px;  
  }

  .parents .sec02 .box {
    flex-wrap: wrap;
  }

  .parents .sec02 .img {
    width: 100%;
  }

  .parents .sec02 .img img {
    width: 100%;
  }

  .parents .sec02 .txt {
    width: 100%;
    padding: 0px;
  }

  .parents .sec02 .box02 .img {
    order: 1;
  }

  .parents .sec02 .box02 .txt {
    order: 2;
    text-align: left;
  }

  .parents .sec02 .txt .pin {
    height:36px;
  }
}
@media screen and (max-width:576px) {
  .parents .sec01 .entire {
    padding:60px 0px;  
  }

  .parents .sec02 .box {
    gap:16px;
  }

  .parents .sec02 .txt .pin {
    width:60px;
    height: 24px;
  }
}


/* Adults */
.adults {
  padding:130px 0px 0px;
}

.adults .sec01 .entire {
  position: relative;
  padding:130px 0px;  
}

.adults .sec01 .entire::after {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #FFF9F0;
  /* background: url('/asset/img/sub/field/adults_sec01_bak.png') no-repeat center / cover; */
  z-index:-1;
}

.adults .sec01 .txt .t01 {
  line-height: 1.5;
}

.adults .sec01 .txt .t02 {
  line-height:1.6;
}

.adults .sec01 .txt .t03 {
  line-height: 1.5;
}

.adults .sec02 {
  position: relative;
  background: linear-gradient(180deg, #FBB040 0%, #F58466 100%);
}

.adults .sec02 .hd {
  position: absolute;
  top:130px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  width: 95%;
  margin:0 auto;
  z-index: 5;
}

.adults .sec02 .txt {
  position: absolute;
  z-index: 5;
  right: 5.2083%;
  bottom: 130px;
}

.adults .sec02 .txt .pin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height:50px;
  padding: 0px 34px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 100px;
}

.adults .sec02 .txt .t01 {
  line-height:1.5;
}

.adults .sec02 .bak {
  position: relative;
  width: 100%;
  height:0;
  padding-top: calc(1200/1920*100%);
  overflow: hidden;
}

.adults .sec02 .bak img {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 67.7083vw;
  height: 67.7083vw;
  max-width: 1300px;
  max-height: 1300px;
  pointer-events: none;
}

@media screen and (max-width:1200px) {
  .adults .sec02 .txt {
    right: 2.5%;
    bottom: 100px;
  }
}
@media screen and (max-width:1024px) {
  .adults {
    padding:100px 0px 0px;
  }

  .adults .sec01 .entire {
    padding:100px 0px;  
  }

  .adults .sec02 {
    padding: 100px 0px;
  }

  .adults .sec02 .hd {
    position: relative;
    top:unset;
    left: unset;
    transform: none;
  }

  .adults .sec02 .bd {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 95%;
    margin:0 auto;
  }

  .adults .sec02 .txt {
    position: relative;
    right: unset;
    bottom: unset;
    order: 2;
  }

  .adults .sec02 .txt .pin {
    height: 42px;
    padding:0px 24px;
  }

  .adults .sec02 .bak {
    height: auto;
    padding: 0px;
    order: 1;
  }

  .adults .sec02 .bak img {
    position: relative;
    top:unset;
    left: unset;
    transform: none;
    width: 90%;
    height: auto;
    margin: 40px auto;
  }
}
@media screen and (max-width:768px) {
  .adults {
    padding:80px 0px 0px;
  }

  .adults .sec01 .entire {
    padding:80px 0px;  
  }

  .adults .sec02 {
    padding: 80px 0px;
  }

  .adults .sec02 .txt .pin {
    height: 36px;
  }
}
@media screen and (max-width:576px) {
  .adults .sec01 .entire {
    padding: 60px 0px;
  }

  .adults .sec02 {
    padding: 60px 0px;
  }

  .adults .sec02 .txt .pin {
    height: 24px;
    padding: 0px 16px;
  }

  .adults .sec02 .bak img {
    width: 100%;
    margin: 30px auto;
  }
}


/* Inspect */
.inspect .sec01 {
  padding:80px 0px;
  background-color: #FFF9F0;
}

.inspect .sec01 .din {
  display: flex;
  align-items: center;
}


.inspect .sec01 .lt {
  flex:1 0 59%;
}

.inspect .sec01 .rt {
  flex:1 0 49%;
}

.inspect .sec01 .txt .t01 {
  line-height: 1.5;
}

.inspect .sec01 .txt .t02 {
  line-height: 1.6;
}

.inspect .sec02 {
  padding: 130px 0px;
}

.inspect .sec02 .list {
  display: flex;
  gap:28px;
}

.inspect .sec02 .list li {
  flex:1 1;
}

.inspect .sec02 .list .qr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:20px;
  border-radius: 20px;
  background-color: #FFF9F0;
}

.inspect .sec02 .list .img {
  position: relative;
  width:39%;
  height: 0;
  padding-top: 39%;
  border:1px solid rgba(251,176,64,.5);
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}

.inspect .sec02 .list .img img {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  /* width: 63.75%; */
  width: 100%;
  height: auto;
}

.inspect .sec02 .list .link {
  display: block;
  position: relative;
  width:calc(100% - 44%);
  height:0;
  padding-top: 39%;
  background-color: #FBB040;
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s ease;
}

.inspect .sec02 .list .link span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:18px;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  font-size: 2.4rem;
  font-weight:700;
}

.inspect .sec02 .list .link span i {
  display: block;
  width: 23px;
  height: 23px;
  background: url('/asset/img/icon/ico_arr05.png') no-repeat center / auto 23px;
  transition: all .3s ease;
}

.inspect .sec02 .list .txt .t01 {
  line-height:1.4;
}

@media screen and (min-width:1201px) {
  .inspect .sec02 .list .link:hover {
    background-color: #ffa011;
  }

  .inspect .sec02 .list .link:hover span i {
    transform: translateX(6px);
  }
}
@media screen and (max-width:1200px) {
  .inspect .sec02 .list {
    gap:20px;
  }

  .inspect .sec02 .list .link span {
    font-size: 2rem;
  }
}
@media screen and (max-width:1024px) {
  .inspect .sec01 {
    padding: 60px 0px;
  }

  .inspect .sec01 .lt {
    padding-right: 20px;
  }

  .inspect .sec02 {
    padding: 100px 0px;
  }

  .inspect .sec02 .list {
    gap:16px;
  }

  .inspect .sec02 .list .qr {
    padding: 16px;
  }

  .inspect .sec02 .list .img {
    padding-top: 34%;
  }

  .inspect .sec02 .list .link {
    padding-top: 34%;
  }
}
@media screen and (max-width:768px) {
  .inspect .sec01 .din {
    flex-wrap: wrap;
    gap:40px;
  }

  .inspect .sec01 .lt {
    flex:1 1 100%;
    padding: 0px;
  }

  .inspect .sec01 .rt {
    flex:1 1 100%;
  }

  .inspect .sec01 .img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .inspect .sec01 .img img {
    width: 487px;
  }

  .inspect .sec02 .list {
    flex-wrap: wrap;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .inspect .sec02 .list li {
    flex:1 1 100%;
  }

  .inspect .sec02 .list .img {
    width: 28%;
    padding-top: 28%;
  }

  .inspect .sec02 .list .link {
    width: calc(100% - 34%);
    padding-top: 28%;
  }

  .inspect .sec02 .list .link span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:576px) {
  .inspect .sec01 .din {
    gap:30px;
  }

  .inspect .sec01 .img img {
    width: 287px;
  }

  .inspect .sec02 {
    padding: 80px 0px;
  }

  .inspect .sec02 .list .qr {
    padding: 10px;
  }

  .inspect .sec02 .list .img {
    width: 20%;
    padding-top: 20%;
    border-radius: 10px;
  }

  .inspect .sec02 .list .link {
    width: calc(100% - 22%);
    padding-top: 20%;
    border-radius: 10px;
  }

  .inspect .sec02 .list .link span {
    font-size: 1.6rem;
  }
}


/* Comfirm */
.comfirm .sec {
  padding: 130px 0px;
}

.comfirm .box {
  display: flex;
  justify-content: space-between;
  min-height: 360px;
}

.comfirm .lt {
  width: 500px;
  /* width: 35.6428%; */
}

.comfirm .rt {
  width: 57.5%;
}

.comfirm .txt .t02 {
  line-height: 1.6;
}

.comfirm .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap:8px;
  width: 200px;
  height:50px;
  border-radius: 10px;
  background: linear-gradient(90deg, #FBB040 0%, #F58466 100%);
  font-size: 2rem;
  color:#fff;
  pointer-events: none;
}

.comfirm .link i {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url('/asset/img/icon/ico_tel.png') no-repeat center / contain;
}

.comfirm .list {
  border-top: 2px solid #929292;
  border-bottom: 2px solid #929292;
}

.comfirm .list li {
  cursor: pointer;
  transition: all .3s ease;
}

.comfirm .list li:not(:last-child) {
  border-bottom: 1px solid #C9C9C9;
}

.comfirm .list .question {
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px;
}

.comfirm .list .question p {
  width: 90.7%;
  line-height: 1.5;
  transition: all .3s ease;
}

.comfirm .list .question span {
  display: block;
  position: absolute;
  top:50%;
  right:20px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border:1px solid #F58466;
  background-color: transparent;
}

.comfirm .list .question span::before,
.comfirm .list .question span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 12px;
  height:2px;
  border-radius: 10px;
  background-color: #F58466;
  transition: all .3s ease;
}

.comfirm .list .question span::before {
  transform: translate(-50%,-50%) rotate(-90deg);
}

.comfirm .list .answer {
  max-height:0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.comfirm .list .answer-wrap {
  padding: 0px 20px 20px;
}

.comfirm .list .answer p {
  line-height: 1.6;
}

.comfirm .list li.active {
  background-color:#FEF9F7 ;
}

.comfirm .list li.active .question p {
  color:#F58466;
}

.comfirm .list li.active .question span::before {
  transform: translate(-50%,-50%) rotate(0deg);
}

@media screen and (max-width:1200px) {
  .comfirm .box {
    flex-wrap: wrap;
    gap:40px;
  }

  .comfirm .lt {
    width: 100%;
  }

  .comfirm .rt {
    width: 100%;
  }

  .comfirm .link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .comfirm .sec {
    padding: 100px 0px;
  }

  .comfirm .link {
    gap:6px;
    width: 180px;
    height: 42px;
  }

  .comfirm .link i {
    height: 17px;
    background-size: auto 17px;
  }

  .comfirm .list .question {
    padding: 16px;
  }

  .comfirm .list .question span {
    right: 16px;
    width: 20px;
    height: 20px;
  }

  .comfirm .list .question span::before, .comfirm .list .question span::after {
    width: 10px;
  }

  .comfirm .list .answer-wrap {
    padding: 0px 16px 16px;
  }
}
@media screen and (max-width:768px) {
  .comfirm .sec {
    padding: 80px 0px;
  }

  .comfirm .box {
    gap:30px;
  }

  .comfirm .link {
    width: 160px;
    height: 36px;
    font-size: 1.6rem;
    pointer-events: unset;
  }

  .comfirm .link i {
    width: 15px;
    height: 15px;
    background-size: auto 15px;
  }
}
@media screen and (max-width:576px) {
  .comfirm .list .question {
    padding: 12px;
  }

  .comfirm .list .question span {
    right: 12px;
    width: 16px;
    height:16px;
  }

  .comfirm .list .question span::before, .comfirm .list .question span::after {
    width: 8px;
  }

  .comfirm .list .answer-wrap {
    padding: 0px 12px 12px;
  }
}


/* Reserve */
.reserve .sec {
  padding: 130px 0px;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  .reserve .sec {
    padding: 100px 0px;
  }
}
@media screen and (max-width:768px) {
  .reserve .sec {
    padding: 80px 0px;
  }
}
@media screen and (max-width:576px) {

}


/* Policy */
.policy .sec {
  padding:130px 0px;
}

.policy .textarea {
  height:600px;
  overflow-y: auto;
  border:1px solid #ddd;
}

.policy .textarea > div {
  padding:30px;
}

.policy .textarea p {
  font-size:1.8rem;
}

@media screen and (max-width:1200px) {
  .policy .textarea p {
    font-size:1.6rem;
  } 
}
@media screen and (max-width:1024px) {
  .policy .sec {
    padding:100px 0px;
  }

  .policy .textarea {
    height:500px;
  }

  .policy .textarea > div {
    padding:20px;
  }
}
@media screen and (max-width:768px) {
  .policy .sec {
    padding:80px 0px;
  }

  .policy .textarea p {
    font-size:1.4rem;
  } 
}
@media screen and (max-width:576px) {
  .policy .sec {
    padding:60px 0px;
  }

  .policy .textarea {
    height:400px;
  }

  .policy .textarea > div {
    padding:16px;
  }

  .policy .textarea p {
    font-size:1.2rem;
  } 
}


/* Animation */
@keyframes svgAni {
  0% {
      stroke-dashoffset: 1600;
  }
  100% {
      stroke-dashoffset: 0;
  }
}