@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    color: #000;
    text-decoration: none;
  }
}
a:active {
  color: #000;
}
@media (min-width: 800px) {
  a.tel {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 800px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 799px) {
  .pc {
    display: none !important;
  }
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
  overflow: hidden;
}

/*　Retina対応時のCSS↓　*/
/*================================
	header
=================================*/
/*================================
	footer
=================================*/
footer {
  padding-top: 35px;
  padding-bottom: 55px;
}
footer .container {
  max-width: 1200px;
}
footer .row .col {
  width: 50%;
}
footer .row .sns_area ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 125px;
  width: 100%;
  gap: 10px;
}
footer .row .sns_area ul li {
  width: 33%;
}
footer .row .sns_area ul li a {
  display: block;
}
footer .row .copy_area {
  text-align: right;
}
footer .row .copy_area .copy {
  font-size: 13px;
}

/*================================
	pageTop
=================================*/
#pageTop {
  opacity: 0;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 888;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}
#pageTop a #icon_top_page * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#pageTop a #icon_top_page .st0 {
  fill: #fff;
}
#pageTop a #icon_top_page .st1 {
  fill: #714f32;
}
@media (hover: hover) {
  #pageTop a:hover #icon_top_page .st0 {
    fill: #c4b4a5;
  }
  #pageTop a:hover #icon_top_page #top_x5F_arrow {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.move {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 799px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.row .col.col_4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.3333%;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top main section {
  position: relative;
}
#Top main section .anker {
  position: absolute;
  top: -30px;
}
#Top main .mv_sec .mv_container {
  position: relative;
  background: url(/wandapal/images/mv_bg.png) no-repeat center top/100% auto;
  height: 57.2vw;
  width: 100%;
}
#Top main .mv_sec .mv_container > * {
  position: absolute;
}
#Top main .mv_sec .mv_container .site_logo {
  top: 2.4vw;
  left: 2.4vw;
  width: 21.1333333333vw;
  height: 4.2666666667vw;
}
#Top main .mv_sec .mv_container .page_logo {
  left: 49.4252873563%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 55.33vw;
  height: 29.066vw;
  top: 47.4712643678%;
  z-index: 10;
}
#Top main .mv_sec .mv_container .dog_wrap .dog_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#Top main .mv_sec .mv_container .dog_wrap .dog_inner > * {
  position: absolute;
}
#Top main .mv_sec .mv_container .dog_wrap .balloon {
  z-index: 3;
}
#Top main .mv_sec .mv_container .dog_wrap_01 {
  bottom: 0;
  left: 0;
  width: 23.8vw;
  height: 47.333333333333333vw;
}
#Top main .mv_sec .mv_container .dog_wrap_01 .balloon {
  width: 98.302521008403361%;
  top: 0;
  left: -4.481792717086835%;
  opacity: 0;
  transform: scale(0.6);
}
#Top main .mv_sec.loaded .mv_container .dog_wrap_01 .balloon {
  animation: easeOutElasticScale 0.6s 0.3s both;
}

#Top main .mv_sec .mv_container .dog_wrap_01 .dog {
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s 0.2s ease;
  transform: translateY(10%);
}
#Top main .mv_sec.loaded .mv_container .dog_wrap_01 .dog {
  opacity: 1;
  transform: translateY(0);
}

#Top main .mv_sec .mv_container .dog_wrap_02 {
  bottom: 14.366666666666667vw;
  right: 3vw;
  width: 21.8vw;
  height: 17.5vw;
}
#Top main .mv_sec .mv_container .dog_wrap_02 .balloon {
  width: 55.5214723926%;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.6);
}
#Top main .mv_sec.loaded .mv_container .dog_wrap_02 .balloon {
  animation: easeOutElasticScale 0.6s 0.7s both;
}


#Top main .mv_sec .mv_container .dog_wrap_02 .dog {
  width: 71.472392638%;
  top: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s 0.6s ease;
  transform: translateY(10%);
}
#Top main .mv_sec.loaded .mv_container .dog_wrap_02 .dog {
  opacity: 1;
  transform: translateY(0);
}

#Top main .mv_sec .mv_container .dog_wrap_03 {
  top: 2vw;
  right: 0.733333333333333vw;
  width: 22.566666666666667vw;
  height: 18.533333333333333vw;
}
#Top main .mv_sec .mv_container .dog_wrap_03 .balloon {
  width: 40.17725258493353%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.6);
}
#Top main .mv_sec.loaded .mv_container .dog_wrap_03 .balloon {
  animation: easeOutElasticScale 0.6s 0.5s both;
}

#Top main .mv_sec .mv_container .dog_wrap_03 .dog {
  width: 86.706056129985229%;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s 0.4s ease;
  transform: translateY(10%);
}
#Top main .mv_sec.loaded .mv_container .dog_wrap_03 .dog {
  opacity: 1;
  transform: translateY(0);
}

@keyframes easeOutElasticScale {
  0%   { transform: scale(0.3);opacity: 0; }
  45%  { transform: scale(1.15);opacity: 1; } /* 大きくオーバー */
  65%  { transform: scale(0.95);opacity: 1; } 
  80%  { transform: scale(1.03);opacity: 1; }
  92%  { transform: scale(0.99);opacity: 1; }
  100% { transform: scale(1);opacity: 1;    }
}

#Top main .banner_sec {
  padding-top: 120px;
}
#Top main .banner_sec .container {
  max-width: 1200px;
}
#Top main .banner_sec .ban_3years {
  padding-bottom: 10px;
}
#Top main .banner_sec .ban_3years a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
@media (hover: hover) {
  #Top main .banner_sec .ban_3years a:hover {
    position: relative;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
#Top main .banner_sec .line_link {
  height: 220px;
  position: relative;
  background: url(/wandapal/images/bg09.png?202502) center top/100% no-repeat;
}
#Top main .banner_sec .line_link .btn {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 135px;
  left: 50%;
  width: 43.4545454545%;
  height: 63px;
}
@media (max-width: 1200px) {
  #Top main .banner_sec .line_link .btn {
    top: 10.6666666667vw;
    height: 5.3333333333vw;
  }
}
#Top main .banner_sec .line_link .btn a {
  height: 100%;
  display: block;
  text-indent: -9999px;
  background: url(/wandapal/images/btn03.png?202502) no-repeat 0 0/100% auto;
  border-radius: 5px;
}
@media (hover: hover) {
  #Top main .banner_sec .line_link .btn a:hover {
    background-position: 3px 3px;
  }
}



#Top .index_sec {
  width: 100%;
  padding-bottom: 197px;
}

#Top .index_sec .index_sec_banner_heading{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    gap: 12px;
    font-size: 24px;
    line-height: 1.57;
    color: #F765AD;
    font-weight: bold;
    letter-spacing: .03em;
    width: fit-content;
}
#Top .index_sec .index_sec_banner_heading:before,
#Top .index_sec .index_sec_banner_heading:after{
    width: 2px;
    height: 25px;
    background: #F765AD;
    content: '';
}
#Top .index_sec .index_sec_banner_heading:before{
    transform: rotate(-27deg);
}
#Top .index_sec .index_sec_banner_heading:after{
    transform: rotate(27deg);
}
#Top .index_sec .index_sec_banner{
  padding-block: 0px 80px;
}
@media (max-width: 1500px) {
  #Top .index_sec .index_sec_banner_heading{
    margin-bottom: 2.4rem;
    gap: .7rem;
    font-size: 2.4rem;
  }
  #Top .index_sec .index_sec_banner_heading:before,
  #Top .index_sec .index_sec_banner_heading:after{
    width: .2rem;
    height: 2.5rem;
  }
}

#Top .index_sec .index_sec_banner a{
  display: block;
  max-width: 640px;
  margin-inline: auto;
}
@media (hover: hover) {
  #Top .index_sec .index_sec_banner a:hover{
    transform: translateY(-10px);
  }
}

#Top .index_sec h2 {
  width: 679px;
  margin:0 auto 8px auto;
  line-height: 1;
  text-align: center;
  position:relative;
}

#Top .index_sec h2 img {
  width: 679px;
}

#Top .index_sec h2 .txt01 {
  position:absolute;
  top:4%;
  left:29.4%;
  opacity: 0;
  transform: rotateZ(0deg) translateY(10px);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: all 0.6s ease;
}

#Top .index_sec h2.move .txt01 {
  opacity: 1;
  transform: rotateZ(-10deg) translateY(0px);
}
#Top .index_sec h2 .txt01 img {
  width: 60px;
}

#Top .index_sec h2 .txt02 {
  position:absolute;
  top:31%;
  left:38.4%;
  opacity: 0;
  transform: rotateZ(0deg) translateY(10px);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: all 0.6s 0.2s ease;
}

#Top .index_sec h2.move .txt02 {
  opacity: 1;
  transform: rotateZ(10deg) translateY(0px);
}

#Top .index_sec h2 .txt02 img {
  width: 44px;
}

#Top .index_sec h2 .icon01 {
  position:absolute;
  top:28%;
  left:92.2%;
  opacity: 0;
  transition: all 0.5s 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translate(0,15px) scale(0.8);
}
#Top .index_sec h2.move .icon01 {
  opacity: 1;
  transform: translate(0,0) scale(1);
}
#Top .index_sec h2 .icon01 img {
  width: 49px;
}

#Top .index_sec h2 .icon02 {
  position:absolute;
  top:2.9%;
  left:26.1%;
  opacity: 0;
  transition: all 0.4s 0.6s ease;
  transform: translate(5px,5px);
}
#Top .index_sec h2.move .icon02 {
  opacity: 1;
  transform: translate(0,0);
}
#Top .index_sec h2 .icon02 img {
  width: 24px;
}

#Top .index_sec p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: .03em;
  text-align: center;
  margin-bottom: 17px;
}

#Top .index_sec .index_sec_notes {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

#Top .index_sec .index_sec_notes li {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .03em;
}

#Top .index_sec .anchor_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

#Top .index_sec .anchor_links li {
  line-height: 1;
  font-size: 1px;
}

#Top .index_sec .anchor_links li a {
  width: 205px;
  height: 80px;
  border-radius: 40px;
  border: 6px solid #957250;
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #fff;
  font-family: "M PLUS 1", sans-serif;
  overflow: hidden;
  background: #835931;
}

#Top .index_sec .anchor_links li a span {
  transition: background .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  #Top .index_sec .anchor_links li a:hover {
    border-color: #835931;
    background: #9c7a5a;
  }
}
#Top .index_sec .anchor_links li a.here {
  border-color: #835931;
  background: #9c7a5a;
}

#Top .heading {
  width: 444px;
  height: 145px;
  background: url(/wandapal/images/header2_bg.svg) center center no-repeat;
  background-size: 100% 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 34px;
  font-family: "M PLUS 1", sans-serif;
  color: #51371F;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  padding-top: 53px;
  position: relative;
  z-index: 2;
}


#Top .fee_sec {
  width: 100%;
  background: #fff;
  padding: 0 0 172px;
  position: relative;
}

#Top .fee_sec:before {
  width: 100%;
  height: calc(100% + 190px);
  background: url(/wandapal/images/fee_bg.png) center top no-repeat;
  background-size: 2000px auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  z-index: 1;
  content: '';
  pointer-events: none;
}

#Top .fee_sec .fee_sec_inner {
  width: 100%;
  position: relative;
  z-index: 2;
}

#Top .fee_sec .fee_sec_wrap {
  position: relative;
  width: 684px;
  margin: 0 auto;
  z-index: 2;
}

#Top .fee_sec .fee_sec_wrap table {
  border-collapse: separate;
  border-spacing: 7px;
  width: 100%;
}

#Top .fee_sec .fee_sec_wrap table th {
  background: #F8E44D;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  font-weight: bold;
  color: #593D24;
  height: 82px;
}

#Top .fee_sec .fee_sec_wrap table thead tr th:nth-child(1) {
  background: none;
  width: 158px;
}

#Top .fee_sec .fee_sec_wrap table thead tr th:nth-child(2) {
  width: 210px;
}

#Top .fee_sec .fee_sec_wrap table th small {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

#Top .fee_sec .fee_sec_wrap table td {
  background: #fff;
  text-align: center;
  vertical-align: middle;
  height: 82px;
  color: #FF9102;
  font-size: 18px;
  font-weight: 900;
}

#Top .fee_sec .fee_sec_wrap table td .number {
  font-size: 40px;
  font-weight: bold;
}

#Top .fee_sec .fee_sec_wrap .fee_item {
  display: inline-block;
  position: relative;
}

#Top .fee_sec .fee_sec_wrap .fee_item:after {
  width: 30px;
  height: 35px;
  background: url(/wandapal/images/fee_point.svg) center center no-repeat;
  background-size: 100% 100%;
  content: '';
  position: absolute;
  right: -27px;
  top: 3px;
  z-index: 2;
}

#Top .fee_sec .fee_sec_notes {
  display: flex;
  justify-content: center;
  margin-top: 3px;
}

#Top .fee_sec .fee_sec_notes li {
  font-size: 14px;
  line-height: 2;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
}

#Top .fee_sec .fee_sec_box {
  margin-top: 28px;
  text-align: center;
}

#Top .fee_sec .fee_sec_box p {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

#Top .fee_sec .fee_sec_box .fee_sec_button {
  margin-top: 15px;
}

#Top .btn_links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: bold;
  padding: 0 50px;
  min-width: 280px;
  position: relative;
}

#Top .btn_links::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: #fff;
  position:absolute;
  top:0;
  left:0;
  z-index: -1;
  transition: all 0.4s ease;
}

#Top .btn_links:after {
  width: 7px;
  height: 100%;
  content: '';
  position: absolute;
  right: 24px;
  top: 0;
  z-index: 1;
}

@media (min-width: 800px) and (hover: hover) {
  #Top .btn_links:hover::before  {
    transform: scale(1.1);
  }
}

#Top .fee_sec .fee_sec_box .fee_sec_button .btn_links {
  color: #4FD776;
}

#Top .fee_sec .fee_sec_box .fee_sec_button .btn_links:after {
  background: url(/wandapal/images/icon_arrow_green.svg) center center no-repeat;
  background-size: 100%;
}

#Top .fee_sec .fee_sec_image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.7s 0.3s ease;
}

#Top .fee_sec .fee_sec_image.move {
  transform: translateX(0);
  opacity: 1;
}

#Top .fee_sec .fee_sec_image img {
  width: 452px;
  position: absolute;
  left: 50%;
  top: 89px;
  z-index: 1;
  transform: translateX(298px);
}

@media (max-width: 1300px) {
  #Top .fee_sec .fee_sec_inner {
    overflow: visible;
  }

  #Top .fee_sec .fee_sec_image {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: unset;
    bottom: -120px;
    z-index: 1;
    overflow: hidden;
  }

  #Top .fee_sec .fee_sec_image img {
    width: 332px;
    position: relative;
    left: 50%;
    top: 0;
    z-index: 1;
    transform: translateX(80px);
  }
}


#Top .point_sec {
  position: relative;
  background: #F8E44D;
}

#Top .point_sec:before {
  width: 100%;
  height: calc(100% + 190px);
  background: url(/wandapal/images/point_bg.png) center top no-repeat;
  background-size: 2000px auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  z-index: 1;
  content: '';
  pointer-events: none;
}


#Top .point_sec .heading {
  margin-bottom: 24px;
}

#Top .point_sec .point_sec_button {
  text-align: center;
  transform: translateY(50%);
  position: relative;
  z-index: 2;
}

#Top .point_sec .point_sec_button .btn_links {
  background: #F7913F;
  color: #fff;
  position: relative;
  border-radius: 28px;
}

#Top .point_sec .point_sec_button .btn_links span {
  display: block;
  width: 100%;
  height: 100%;
  position:absolute;
  top:0;
  left:0;
  z-index: -1;
  background: #F7913F;
  border-radius: 28px;
  transition: all 0.4s ease;
}

@media (hover: hover) {
  #Top .point_sec .point_sec_button .btn_links:hover span {
    transform: scale(1.1);
  }
}


#Top .point_sec .point_sec_button .btn_links:after {
  background: url(/wandapal/images/icon_arrow_white.svg) center center no-repeat;
  background-size: 100%;
}

#Top .point_sec .point_sec_button .btn_links:before {
    position: absolute;
    left: 26px;
    top: -3px;
    z-index: 2;
    content: '';
    width: 27px;
    height: 27px;
    background: url(/wandapal/images/point_link_point.svg) center center no-repeat;
    background-size: 100%;
}

#Top .point_sec_inner {
  width: 100%;
  padding-bottom: 230px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}


#Top .point_sec_item01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-bottom: 48px;
}

#Top .point_sec_item01:before {
  width: 509px;
  height: 482px;
  background: #ffc982;
  position: absolute;
  left: 50%;
  transform: translateX(-850px);
  top: 70px;
  z-index: -1;
  content: '';
}

#Top .point_sec_item01 .point_sec_image {
  width: 50%;
  padding-top: 78px;
  display: flex;
  justify-content: flex-end;
}

#Top .point_sec_item01 .point_sec_image picture {
  display: block;
  position: relative;
  /*width: 67.83%;*/
  width: 100%;
  max-width: 450px;
}

#Top .point_sec_item01 .point_sec_image picture:before {
  width: 58.2%;
  padding-top: 28.67%;
  background: url(/wandapal/images/point_01_point_01.png) center center no-repeat;
  background-size: cover;
  content: '';
  position: absolute;
  left: -13.56%;
  top: -18.94%;
  z-index: 2;
}

#Top .point_sec_item01 .point_sec_image picture:after {
  width: 34.67%;
  padding-top: 25.33%;
  background: url(/wandapal/images/point_01_point_02.png) center center no-repeat;
  background-size: cover;
  content: '';
  position: absolute;
  left: 3.8%;
  top: 0;
  z-index: -1;
  transform: translateY(-20%);
  opacity: 0;

  transition: all 0.5s 0.3s ease;
}

#Top .point_sec_item01 .point_sec_image.move picture:after {
  transform: translateY(-100%);
  opacity: 1;
}


#Top .point_sec_item01 .point_sec_box {
  width: 44.7%;
  padding-bottom: 45px;
}

#Top .point_sec_item01 .point_sec_box h3 {
  line-height: 1;
  font-size: 1px;
  margin-bottom: 47px;
}

#Top .point_sec_item01 .point_sec_box h3 img {
  width: 100%;
}

#Top .point_sec_item01 .point_sec_box p {
  font-size: 18px;
  line-height: 1.67;
}

#Top .point_sec_item01 .point_sec_list {
  margin-bottom: 17px;
}

#Top .point_sec_item01 .point_sec_list li {
  padding-left: 15px;
  font-size: 18px;
  line-height: 1.67;
  font-weight: bold;
  color: #593D24;
  position: relative;
}

#Top .point_sec_item01 .point_sec_list li:before {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #FF9102;
  position: absolute;
  left: 0;
  top: 12px;
  z-index: 2;
  content: '';
}
#Top .point_sec_item01 .point_sec_notes {
  margin-top: 23px;
}

#Top .point_sec_item01 .point_sec_notes li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}

#Top .point_sec_item02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-direction: row-reverse;
  margin-bottom: 65px;
}

#Top .point_sec_item02:before {
  width: 668px;
  height: 392px;
  background: #a8ebbb;
  position: absolute;
  left: 50%;
  transform: translateX(83px);
  top: -18px;
  z-index: -1;
  content: '';
}

#Top .point_sec_item02 .point_sec_image {
  width: 54.6%;
  padding-top: 72px;
}

#Top .point_sec_item02 .point_sec_image picture {
  display: block;
  position: relative;
  /*width: 86.6%;*/
  width: 100%;
  max-width: 615px;
}

#Top .point_sec_item02 .point_sec_image picture:before {
  width: 32.2%;
  padding-top: 25.78%;
  background: url(/wandapal/images/point_02_point_01.png) center center no-repeat;
  background-size: cover;
  content: '';
  position: absolute;
  left: -8.686%;
  bottom: -13%;
  z-index: 2;

  transition: all 0.5s 0.7s ease;
  transform: translate(10%, 0%);
  opacity: 0;
}

#Top .point_sec_item02 .point_sec_image.move picture:before {
  transform: translate(0%, 0%);
  opacity: 1;
}

#Top .point_sec_item02 .point_sec_image picture:after {
  width: 12.9%;
  padding-top: 13.28%;
  background: url(/wandapal/images/point_02_point_02.svg) center center no-repeat;
  background-size: cover;
  content: '';
  position: absolute;
  left: -16.396%;
  bottom: 20%;
  z-index: 1;

  transition: all 0.5s 0.8s ease;
  transform: translate(0, 10%);
  opacity: 0;
}

#Top .point_sec_item02 .point_sec_image.move picture:after {
  transform: translate(0%, 0%);
  opacity: 1;
}

#Top .point_sec_item02 .point_sec_box {
  width: 45.4%;
}

#Top .point_sec_item02 .point_sec_box h3 {
  line-height: 1;
  font-size: 1px;
  margin-bottom: 44px;
}

#Top .point_sec_item02 .point_sec_box h3 img {
  width: 74.57627%;
}

#Top .point_sec_item02 .point_sec_box p {
  font-size: 18px;
  line-height: 1.67;
  padding-left: 18.64%;
  padding-right: 40px;
}


#Top .point_sec_item03 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 48px;
}

#Top .point_sec_item03:before {
  width: 519px;
  height: 384px;
  background: #9ad0f3;
  position: absolute;
  left: 50%;
  transform: translateX(-1078px);
  top: 70px;
  z-index: -1;
  content: '';
}

#Top .point_sec_item03 .point_sec_image {
  width: 50%;
  padding-top: 23px;
  display: flex;
  justify-content: flex-end;
}

#Top .point_sec_item03 .point_sec_image picture {
  display: block;
  position: relative;
  /*width: 64.53%;*/
  width: 100%;
  max-width: 484px;
}

#Top .point_sec_item03 .point_sec_box {
  width: 44.7%;
}

#Top .point_sec_item03 .point_sec_box h3 {
  line-height: 1;
  font-size: 1px;
  margin-bottom: 47px;
}

#Top .point_sec_item03 .point_sec_box h3 img {
  width: 100%;
}

#Top .point_sec_item03 .point_sec_box p {
  font-size: 18px;
  line-height: 1.67;
}

#Top .point_sec_item04 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-direction: row-reverse;
}


#Top .point_sec_item04 .point_sec_image {
  width: 54.6%;
  padding-top: 53px;
  position: relative;
}


#Top .point_sec_item04 .point_sec_image .image {
  position: relative;
  width: 63%;
  max-width: 448px;
}

#Top .point_sec_item04 .point_sec_image .image:after {
  width: 104.57%;
  padding-top: 86.73549%;
  background: #fab1d5;
  position: absolute;
  left: 54.62775%;
  bottom: -9.6%;
  z-index: -1;
  content: '';
}

#Top .point_sec_item04 .point_sec_image .image picture {
  display: block;
  position: relative;
}

#Top .point_sec_item04 .point_sec_image .image picture:before {
  width: 36.16%;
  padding-top: 49.77%;
  background: url(/wandapal/images/point_04_point_02_01.png) center center no-repeat;
  background-size: cover;
  content: '';
  position: absolute;
  right: -25%;
  bottom: -5.89%;
  z-index: 2;
  opacity: 0;
}

#Top .point_sec_item04 .point_sec_image.move .image picture:before {
  animation: moving 0.6s 1.2s linear forwards;
}

@-webkit-keyframes moving {
  0% {
    opacity: 0;
    transform:translate(100%, 0);
  }
  25% {
    opacity: 0.2;
    transform:translate(75%, -10%);
  }
  50% {
    opacity: 1;
    transform:translate(50%, 10%);
  }
  75% {
    opacity: 1;
    transform:translate(25%, -5%);
  }
  100%{
    opacity: 1;
    transform:translate(0%, 0);
  }
}

#Top .point_sec_item04 .point_sec_image .image picture:after {
  width: 36.71875%;
  padding-top: 32.7%;
  background: url(/wandapal/images/point_04_point_02_02.svg) center center no-repeat;
  background-size: cover;
  content: '';
  position: absolute;
  right: -52.455%;
  bottom: 8.58%;
  z-index: 1;

  transition: all 0.5s 1.3s ease;
  opacity: 0;
}

#Top .point_sec_item04 .point_sec_image.move .image picture:after {
  opacity: 1;
}

#Top .point_sec_item04 .point_sec_image .icon {
  width: 27.32%;
  position: absolute;
  right: 1.69%;
  top: -15px;
  z-index: 2;

  transition: all 0.5s 0.3s ease;
  transform: translate(10%, 0%);
  opacity: 0;
}

#Top .point_sec_item04 .point_sec_image.move .icon {
  transform: translate(0%, 0%);
  opacity: 1;
}

#Top .point_sec_item04 .point_sec_image .icon:before {
  width: 38.66%;
  padding-top: 36.6%;
  background: url(/wandapal/images/point_04_point_01_02.svg) center center no-repeat;
  background-size: cover;
  content: '';
  position: absolute;
  right: -22.68%;
  top: -22.22%;
  z-index: 2;

  transition: all 0.5s 0.5s ease;
  transform: translate(0%, 10%);
  opacity: 0;
}

#Top .point_sec_item04 .point_sec_image.move .icon:before {
  transform: translate(0%, 0%);
  opacity: 1;
}


#Top .point_sec_item04 .point_sec_box {
  width: 45.4%;
}

#Top .point_sec_item04 .point_sec_box h3 {
  line-height: 1;
  font-size: 1px;
  margin-bottom: 44px;
}

#Top .point_sec_item04 .point_sec_box h3 img {
  width: 71.5%;
}

#Top .point_sec_item04 .point_sec_box p {
  font-size: 18px;
  line-height: 1.67;
  padding-left: 21.64%;
  padding-right:10px;
}


#Top .course_sec {
  width: 100%;
  background: #fff;
  position: relative;
}


#Top .course_sec:before {
  width: 100%;
  height: calc(100% + 190px);
  background: url(/wandapal/images/course_bg.png) center top no-repeat;
  background-size: 2000px auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  z-index: 1;
  content: '';
  pointer-events: none;
}

#Top .course_sec .course_sec_inner {
  padding-bottom: 240px;
  position: relative;
  z-index: 2;
}

#Top .course_sec .course_sec_inner:before {
  width: 297.5px;
  height: 380px;
  position: absolute;
  left: 50%;
  top: -200px;
  z-index: 2;
  content: '';
  background: url(/wandapal/images/course_image01.png) center center no-repeat;
  background-size: 100%;
  transform: translateX(-650px);
  transition: all 0.7s 0.3s ease;
  opacity: 0;
}

#Top .course_sec .course_sec_inner.move:before {
  transform: translateX(-610px);
  opacity: 1;
}

@media (max-width: 1200px) {
  #Top .course_sec .course_sec_inner:before {
    width: 200px;
    transform: translateX(-440px);
  }
  #Top .course_sec .course_sec_inner.move:before {
    transform: translateX(-410px);
    opacity: 1;
  }
}

#Top .course_sec .course_sec_inner .img {
  width: 264px;
  height: 349px;
  position: absolute;
  left: 50%;
  transform: translateX(-655px);
  bottom: -33px;
  z-index: 2;
  content: '';
  background: url(/wandapal/images/course_image02.png) center center no-repeat;
  background-size: 100%;  
  transform: translateX(-615px);
  transition: all 0.7s 0.3s ease;
  opacity: 0;
}

#Top .course_sec .course_sec_inner .img.move {
  transform: translateX(-655px);
  opacity: 1;
}

@media (max-width: 1200px) {
  #Top .course_sec .course_sec_inner .img {
    width: 200px;
    height: 290px;
    transform: translateX(-360px);
  }
  #Top .course_sec .course_sec_inner .img.move {
    transform: translateX(-400px);
    opacity: 1;
  }

  #Top .course_item .course_item_image .course_image.image02 .course_image_pos {
    left: 50%;
  }
}

#Top .course_sec .heading {
  margin-bottom: 0;
}

#Top .course_sec_heading {
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.44;
  color: #51371F;
  margin: -14px 0 36px;
}

#Top .course_sec_list {

}

#Top .course_sec_list .course_sec_list_item {
  position: relative;
}

#Top .course_sec_list .course_sec_list_item:before {
  position: absolute;
  width: 2px;
  height: 0%;
  background: url(/wandapal/images/course_timeline.svg) center top repeat-y;
  background-size: 100% auto;
  z-index: 1;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  content: '';

  transition: all 0.7s linear;
}

#Top .course_sec_list .course_sec_list_item.clock01:before {
  transition: all 1.2s 0.2s linear;
}

#Top .course_sec_list .course_sec_list_item.clock02:before {
  transition: all 0.7s 0.2s linear;
  top: 50%;
}

#Top .course_sec_list .course_sec_list_item.clock03:before {
  transition: all 1.2s 0.4s linear;
  top: 30%;
}

#Top .course_sec_list .course_sec_list_item.move.clock01:before {
  height: 150%;
}

#Top .course_sec_list .course_sec_list_item.move.clock02:before {
  height: 100%;
}

#Top .course_sec_list .course_sec_list_item.move.clock03:before {
  height: 100%;
}

#Top .course_item {
  display: flex;
  align-items: center;
  gap: 130px;
  padding: 45px 0;
  position: relative;
}

#Top .course_sec_list .course_sec_list_item .course_item:nth-child(1):before {
  width: 80px;
  padding-top: 80px;
  font-size: 18px;
  font-weight: bold;
  color: #714F32;
  letter-spacing: .03em;
  line-height: 1.5;
  content: '10:00';
  background: url(/wandapal/images/course_clock_1000.svg) center top no-repeat #F8E44D;
  background-size: 100% auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
  top: 50%;
  text-align: center;
  z-index: 2;
}

#Top .course_sec_list .course_sec_list_item:nth-child(1) .course_item:nth-child(1):before {
  content: '10:00';
}

#Top .course_sec_list .course_sec_list_item:nth-child(2) .course_item:nth-child(1):before {
  content: '12:00';
}

#Top .course_sec_list .course_sec_list_item:nth-child(3) .course_item:nth-child(1):before {
  content: '13:30';
}

#Top .course_sec_list .course_sec_list_item:nth-child(4) .course_item:nth-child(1):before {
  content: '15:00';
}

#Top .course_sec_list .course_sec_list_item:nth-child(1) .course_item:nth-child(1):after {
  position: absolute;
  width: 80px;
  height: 50%;
  background: #F8E44D;
  z-index: 1;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  content: '';
}

#Top .course_sec_list .course_sec_list_item:nth-child(4) .course_item:nth-child(1):after {
  position: absolute;
  width: 80px;
  height: 50%;
  background: #F8E44D;
  z-index: 1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: '';
}

#Top .course_item.text_right {
  flex-direction: row-reverse;
}

#Top .course_item .course_item_box,
#Top .course_item .course_item_image {
  width: calc((100% - 130px) / 2);
}

#Top .course_item.text_left .course_item_box {
  display: flex;
  justify-content: flex-end;
}

#Top .course_item .course_item_box p {
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 1.67;
}

#Top .course_item .course_item_box p.title {
  font-size: 27px;
  color: #FF9102;
  line-height: 1.48;
  font-weight: bold;
  margin-bottom: 10px;
}

#Top .course_item .course_item_image.image_right {
  display: flex;
  justify-content: flex-end;
}

#Top .course_item .course_item_image .course_image img {
  border-radius: 15px;
}

#Top .course_item .course_item_image .course_image.image01_01,
#Top .course_item .course_item_image .course_image.image02,
#Top .course_item .course_item_image .course_image.image05 {
  max-width: 328px;
}

#Top .course_item .course_item_image .course_image.image01_02,
#Top .course_item .course_item_image .course_image.image03,
#Top .course_item .course_item_image .course_image.image04 {
  max-width: 410px;
}

#Top .course_item .course_item_image .course_image.image01_01 {
  margin: -85px 0 20px;
}

#Top .course_sec_list .course_sec_list_item.clock01 .course_item:nth-child(2) {
  padding: 0;
  align-items: flex-end;
}

#Top .course_sec_list .course_sec_list_item.clock01 .course_item:nth-child(1),
#Top .course_sec_list .course_sec_list_item.clock01 .course_item:nth-child(3) {
  padding-top: 0;
}

#Top .course_item .course_item_image .course_image.image02 {
  position: relative;
}

#Top .course_item .course_item_image .course_image.image02 .course_image_pos {
  position: absolute;
  width: 69%;
  left: 92%;
  bottom: -17.869%;
  z-index: 2;
}

#Top .course_sec_button {
  text-align: center;
}

#Top .course_sec_button_title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 7px;
  font-size: 18px;
  line-height: 1.57;
  color: #F765AD;
  font-weight: bold;
  letter-spacing: .03em;
}

#Top .course_sec_button_title:before,
#Top .course_sec_button_title:after {
  width: 2px;
  height: 50px;
  background: #F765AD;
  content: '';
}

#Top .course_sec_button_title:before {
  transform: rotate(-27deg);
}

#Top .course_sec_button_title:after {
  transform: rotate(27deg);
}

#Top .course_sec_button a {
  display: inline-block;
  width: 100%;
  max-width: 769px;
}

@media (hover: hover) {
  #Top .course_sec_button a:hover {
    transform: translateY(-10px);
  }
}

#Top .course_sec_button .btn_links {
  color: #F7913F;
}

#Top .course_sec_button .btn_links:before {
  position: absolute;
  left: 26px;
  top: -3px;
  z-index: 2;
  content: '';
  width: 28px;
  height: 28px;
  background: url(/wandapal/images/course_link_point.svg) center center no-repeat;
  background-size: 100%;
}

#Top .course_sec_button .btn_links:after {
  background: url(/wandapal/images/icon_arrow_orange.svg) center center no-repeat;
  background-size: 100%;
}

#Top .course_sec_links {
  margin-top: 17px;
}

#Top .course_sec_links a {
  display: inline-block;
  padding-right: 20px;
  background: url(/wandapal/images/icon_arrow.svg) right center no-repeat;
  background-size: 7px auto;
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: .03em;
}

#Top .course_sec_links a span {
  background: linear-gradient(to right, #000 8px, transparent 8px) left bottom repeat-x;
  background-size: 12px 2px;
}


#Top .flow_sec {
  width: 100%;
  background: #4FD776;
  position: relative;
  padding-bottom: 160px;
}

#Top .flow_sec:before {
  width: 100%;
  height: calc(100% + 190px);
  background: url(/wandapal/images/flow_bg.png?20251208) center top no-repeat;
  background-size: 2000px auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  z-index: 1;
  content: '';
  pointer-events: none;
}

#Top .flow_sec .flow_sec_inner {
  position: relative;
  z-index: 2;
}

#Top .flow_sec .flow_sec_list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 84px;
}

#Top .flow_sec .flow_sec_list .flow_sec_list_item {
  position: relative;
}

#Top .flow_sec .flow_sec_list .flow_sec_list_item + .flow_sec_list_item:before {
  width: 84px;
  height: 168px;
  position: absolute;
  left: -84px;
  top: 0;
  z-index: 2;
  content: '';
  background: url(/wandapal/images/icon_flow_arrow.svg) center center no-repeat;
  background-size: 32px auto;
}

#Top .flow_sec .flow_box {
  border: 2px solid #fff;
  padding: 8px;
}

#Top .flow_sec .flow_box .flow_box_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 148px;
  width: 100%;
  position: relative;
}

#Top .flow_sec .flow_box .flow_box_inner:before {
  width: 11px;
  height: 100%;
  border: 2px solid #ffffff;
  border-right: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: '';
}

#Top .flow_sec .flow_box .flow_box_inner:after {
  width: 11px;
  height: 100%;
  border: 2px solid #ffffff;
  border-left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  content: '';
}

#Top .flow_sec .flow_box .flow_box_inner p {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.48;
  color: #fff;
  font-weight: bold;
}

#Top .flow_sec .flow_box .flow_box_inner img {
  width: 90px;
}

#Top .flow_sec .flow_sec_button {
  margin-top: 16px;
  text-align: center;
}

#Top .flow_sec .flow_sec_button .btn_links {
  color: #32a0e6;
}

#Top .flow_sec .flow_sec_button .btn_links:after {
  background: url(/wandapal/images/icon_arrow_blue.svg) center center no-repeat;
  background-size: 100%;
}

#Top .flow_sec_notes {
  margin-top: 10px;
  text-align: center;
}

#Top .flow_sec_notes p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}

#Top .flow_sec_notes ul {
  margin-top: 4px;
}

#Top .flow_sec_notes ul li {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -.01em;
}

@media (min-width: 800px) and (max-width: 1150px) {
  #Top .flow_sec .flow_sec_list {
    gap: 40px;
  }

  #Top .flow_sec .flow_sec_list .flow_sec_list_item + .flow_sec_list_item:before {
    width: 40px;
    height: 118px;
    left: -40px;
    background-size: 24px auto;
  }

  #Top .flow_sec .flow_box .flow_box_inner {
    height: 98px;
  }

  #Top .flow_sec .flow_box .flow_box_inner p {
    font-size: 15px;
  }

  #Top .flow_sec .flow_box .flow_box_inner img {
    width: 60px;
  }

  #Top .flow_sec .flow_sec_button .btn_links {
    min-width: unset;
    font-size: 15px;
  }

  #Top .flow_sec_notes p {
    font-size: 13px;
  }
  #Top .flow_sec_notes ul li {
    font-size: 9px;
  }
}

#Top .conditions_sec {
  width: 100%;
  background: #32a0e6;
  position: relative;
  padding-bottom: 175px;
}

#Top .conditions_sec:before {
  width: 100%;
  height: calc(100% + 190px);
  background: url(/wandapal/images/conditions_bg.png?11) center top no-repeat;
  background-size: 2000px auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  z-index: 1;
  content: '';
  pointer-events: none;
}

#Top .conditions_sec .conditions_sec_inner {
  position: relative;
  z-index: 2;
}

#Top .conditions_sec_box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#Top .conditions_sec_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#Top .conditions_sec_list .conditions_sec_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#Top .conditions_sec_list img {
  width: 140px;
}

#Top .conditions_sec_list img.list01 {
  width: 213px;
  margin:20px 0 0 0;
}


#Top .conditions_sec_list p {
  font-size: 27px;
  color: #FF9102;
  line-height: 1.44;
  font-weight: bold;
  margin-top: 8px;
}

#Top .conditions_sec_list ul {
  margin-top: 6px;
  text-align: left;
}

#Top .conditions_sec_list ul li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
#Top .conditions_sec_list ul li.point_txt{
  color: #ff0202;
  font-weight: 700;
}

#Top .conditions_sec_text{
  padding-block: 30px;
}
#Top .conditions_sec_text p{
  font-size: 16px;
  line-height: 1.6;
}
#Top .conditions_sec_text ul{
}
#Top .conditions_sec_text ul li{
  font-size: 14px;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

#Top .conditions_sec_banner {
  margin-top: 25px;
  background: #fff;
  width: 100%;
  padding: 10px;
}

#Top .conditions_sec_banner .conditions_sec_banner_inner {
  border: 3px solid #7C4E2D;
  position: relative;
  padding: 35px 5px 35px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

#Top .conditions_sec_banner .conditions_sec_banner_inner:before,
#Top .conditions_sec_banner .conditions_sec_banner_inner:after {
  width: 3px;
  height: 52px;
  border-radius: 2px;
  background: #7C4E2D;
  transform: rotate(-45deg);
  position: absolute;
  z-index: 2;
  content: '';
}

#Top .conditions_sec_banner .conditions_sec_banner_inner:before {
  right: 34px;
  top: -3px;
  transform-origin: right top;
}

#Top .conditions_sec_banner .conditions_sec_banner_inner:after {
  left: 34px;
  bottom: -3px;
  transform-origin: left bottom;
}

#Top .conditions_sec_banner .conditions_sec_banner_inner .image {
  width: 255px;
}

#Top .conditions_sec_banner .conditions_sec_banner_inner .box {
  width: calc(100% - 300px);
}

#Top .conditions_sec_banner .conditions_sec_banner_inner .box p {
  font-size: 18px;
  line-height: 1.5;
}

#Top .conditions_list {
  margin-bottom: 10px;
}

#Top .conditions_list li {
  padding-left: 52px;
  font-size: 27px;
  line-height: 1.44;
  color: #593D24;
  font-weight: bold;
  position: relative;
}

#Top .conditions_list li:before {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: '';
}

#Top .conditions_list li:nth-child(1):before {
  background: url(/wandapal/images/conditions_number01.svg) center center no-repeat;
  background-size: cover;
}

#Top .conditions_list li:nth-child(2):before {
  background: url(/wandapal/images/conditions_number02.svg) center center no-repeat;
  background-size: cover;
}

#Top .conditions_list li:nth-child(3):before {
  background: url(/wandapal/images/conditions_number03.svg) center center no-repeat;
  background-size: cover;
}

#Top .conditions_list li + li {
  margin-top: 11px;
}

#Top .conditions_notes {
  margin-top: 8px;
}

#Top .conditions_notes li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}


#Top .faq_sec {
  width: 100%;
  position: relative;
  background: #F8E44D;
}

#Top .faq_sec:before {
  width: 100%;
  height: calc(100% + 190px);
  background: url(/wandapal/images/faq_bg.png) center top no-repeat;
  background-size: 2000px auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
  content: '';
  pointer-events: none;
}

#Top .faq_sec:after {
  width: 100%;
  height: 100%;
  background: url(/wandapal/images/faq_bg_bottom.png?11) center bottom no-repeat;
  background-size: 2000px auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  content: '';
  pointer-events: none;
}

#Top .faq_sec .faq_sec_inner {
  position: relative;
  z-index: 3;
  padding-bottom: 200px;
  overflow: hidden;
}

#Top .faq_sec .faq_sec_inner .img {
  width: 269px;
  height: 173px;
  background: url(/wandapal/images/faq_dog.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  z-index: 3;

  transform: translateX(-30px);
  transition: all 0.7s 0.3s ease;
  opacity: 0;
}

#Top .faq_sec .faq_sec_inner .img.move {
  transform: translateX(0);
  opacity: 1;
}

#Top .faq_sec .heading {
  margin-bottom: 57px;
}

#Top .faq_sec_list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

#Top .faq_sec_list .faq_sec_list_item + .faq_sec_list_item {
  margin-top: 64px;
}

#Top .faq_sec_list .faq_sec_list_item {
  padding-left: 74px;
  position: relative;
  z-index: 2;
}

#Top .faq_sec_list .faq_sec_list_item:before {
  background: url(/wandapal/images/faq_icon_q.svg) center center no-repeat;
  background-size: cover;
  width: 56px;
  height: 56px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: '';
}

#Top .faq_sec_list .faq_sec_list_item h3 {
  padding: 5px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  font-size: 27px;
  line-height: 1.44;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
}

#Top .faq_sec_list .faq_sec_list_item p {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

#Top .faq_sec_list .faq_sec_list_item p span {
  background: linear-gradient(#F8E44D,#F8E44D) left bottom no-repeat;
  background-size: 100% 2px;
}

#Top .faq_sec_list .faq_sec_list_item ul {
  margin-top: 8px;
}

#Top .faq_sec_list .faq_sec_list_item ul li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}



















