/* fv */

.fv-pc {
  display: block;
}

.fv-sp {
  display: none;
}

@media(max-width:800px) {
  .fv-pc {
    display: none;
  }
  
  .fv-sp {
    display: block;
  }
}

/* スライダー */
.slider {
 max-width: 1440px;
 margin: 0 auto;
 padding: 28px 0;
}

.slider-box {
  text-align: center;
  width: 345px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: var(--whiteColor);
  margin: 0 17px;
}

.slider-box p {
  font-size: 22px;
  padding: 59px 0 58px 0 ;
}

@media(max-width:600px) {
  .slider-box p {
    font-size: 16px;
    padding: 38px 0 41px 0 ;
  }

  .slider {
    padding: 14px 0;
  }

  .slider-box {
    width: 280px;
  }
}

@media(max-width:400px) {
  .slider-box {
    width: 200px;
  }
}

/* アバウト */
#top-about .container {
  padding: 90px 0 100px 0;
}

.t-about {
  font-size: var(--aboutFontSize);
  font-weight: var(--boldFontWeight);
  letter-spacing: 0.1em;
  max-width: 785px;
  margin: 0 auto;
  line-height: 140%;
  width: 95%;
  padding-bottom: 32px;
  text-align: left;
}

.t-about span {
  color: var(--blueColor);
}

#top-about h3 {
  display: inline-block;
  font-weight: var(--boldFontWeight);
  font-size: var(--h3FontSize);
  position: relative;
}

#top-about h3::before {
  position: absolute;
  content: "";
  background: url(../img/icon-h3.svg) center/contain;
  left: -50px; 
  bottom: -5px;
  background-repeat: no-repeat;
  width: 35px;
  height: 110%;
}

#top-about h3::after {
  position: absolute;
  content: "";
  background: url(../img/icon-h3-right.svg) center/contain;
  left: calc(100% + 15px); 
  bottom: -5px;
  background-repeat: no-repeat;
  width: 35px;
  height: 110%;
}

.about-br {
  display: none;
}

.feature {
  max-width: 1100px;
  margin: 60px auto 80px auto;
  display: flex;
  width: 95%;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-box {
  width: 316px;
}

.feature-box p {
  padding: 40px 5px 0 5px;
  font-size: 17px;
  font-weight: var(--mediumFontWeight);
  line-height: 140%;
  text-align: left;
}

.free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 89px;
  width: 95%;
  max-width: 1140px;
  margin: 55px auto 0 auto;
}

.free img {
  width: 460px;
  height: auto;
  border-radius: 20px;
}

.free-text {
  text-align: left;
}

.free-text p:nth-of-type(1) {
  font-size: var(--freeFontSize);
  font-weight: var(--mediumFontWeight);
  padding-bottom: 1.5em;
}

.free-text p:nth-of-type(2) {
  font-size: var(--baseFontSize);
  font-weight: var(--mediumFontWeight);
  padding-bottom: 140px;
}

.free-btn {
  font-size: clamp(20px,5.3vw,25px);
  color: var(--whiteColor);
  font-weight: var(--boldFontWeight);
  background: linear-gradient(to right, #585DCF, #5C88C9);
  padding: 0.8em 50px 1em 35px;
  border-radius: 50px;
  position: relative;
}

.free-btn::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 48%;
  transform: translateY(-50%);
  background: url(../img/btn-right.svg) center/contain;
  width: 18px;
  height: 35px;
  background-repeat: no-repeat;
  transition: all .3s;
}

.free-btn:hover::before {
  transform: translate(5px,-50%);
}

@media(max-width:1100px) {
  .free {
    gap: 20px;
    flex-direction: column;
    margin: 22px auto 0 auto;
  }

  .feature {
    margin: 30px auto 60px auto;
    flex-direction: column;
    width: 95%;
    max-width: 600px;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  .free-text p:nth-of-type(1) {
    padding-bottom: 15px;
  }
  
  .feature-box p {
    padding-top: 15px;
    font-size: 16px;
  }

  .feature-box {
    width: 100%;
    max-width: 600px;
  }

  .feature-box img {
    max-width: 325px;
  }

  .free img {
    width: 95%;
    max-width: 450px;
    height: auto;
  }

  .free-text p:nth-of-type(2) {
    padding-bottom: 50px;
  }

  .btn-wrap {
    text-align: center;
  }

  .free-text {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width: 590px;
  }
}

@media(max-width:800px) {
  .about-br {
    display: initial;
  }

  #top-about h3::before {
    left: -25px; 
    width: 25px;
  }
  
  #top-about h3::after {
    left: 100%; 
    width: 25px;
  }

  #top-about .container {
    padding: 45px 0 50px 0;
  }

  .free-btn::before {
    right: 18px;
    top: 48%;
    width: 13px;
    height: 30px;
  }

  .feature-box img {
    max-width: 280px;
  }

  .free-text p:nth-of-type(2) {
    font-size: 16px;
    opacity: 0.8;
  }
}


/* コンタクト */
#top-contact .container {
  background-image: url(../img/contact01.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 90px;
  padding-bottom: 430px;
}

.con-top {
  text-align: center;
  margin-bottom: 30px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.con-top p {
  display: inline-block;
  font-size: var(--contactFontSize);
  font-weight: 900;
  position: relative;
}

.con-top p::before {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 2px solid var(--blackColor);
  bottom: -4px;
  left: 0;
  position: absolute;
}

.tel {
  font-size: var(--telFontSize);
  font-weight: var(--boldFontWeight);
  padding-left: 1em;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.tel::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/icon-tel.svg) center/contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.con-texts {
  font-size: var(--btnFontSize);
  font-weight: 900;
  text-align: center;
  line-height: 140%;
  display: inline-block;
  margin-bottom: 45px;
}

.con-texts p {
  text-align: right;
}

.btn-box {
  font-weight: var(--boldFontWeight);
  color: var(--whiteColor);
  font-size: clamp(20px,5.3vw,32px);
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.btn-box a {
  display: inline-block;
  position: relative;
  border-radius: 40px;
}

.btn-box a:nth-of-type(1) {
  background: linear-gradient(to right, #585DCF, #5C88C9);
  padding: 0.7em 100px 0.9em 55px;
}

.btn-box a:nth-of-type(1)::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 34px;
  background: url(../img/btn-right.svg) center/contain;
  background-repeat: no-repeat;
  top: 48%;
  transform: translateY(-50%);
  right: 55px;
  transition: all .3s;
}

.btn-box a:nth-of-type(2) {
  background: linear-gradient(to right, #FF1D00, #F35A46);
  padding: 0.7em 190px 0.9em 155px;
}

.btn-box a:nth-of-type(2)::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 34px;
  background: url(../img/btn-right.svg) center/contain;
  background-repeat: no-repeat;
  top: 48%;
  transform: translateY(-50%);
  right: 135px;
  transition: all .3s;
}

.btn-box a:nth-of-type(1):hover::before {
  transform: translate(10px,-50%);
}

.btn-box a:nth-of-type(2):hover::before {
  transform: translate(10px,-50%);
}

.con-pc {
  display: block;
}

.con-sp {
  display: none;
}

.lesson-top-br {
  display: initial;
}

@media(max-width:1130px) {
  .btn-box {
    flex-direction: column;
    gap: 10px;
  }

  .btn-box a:nth-of-type(1),
  .btn-box a:nth-of-type(2) {
    padding-left: inherit;
    padding-right: inherit;
    width: 95%;
    max-width: 800px;
  }

  .btn-box a:nth-of-type(1)::before,
  .btn-box a:nth-of-type(2)::before {
    right: 10%;
  }
}

@media(max-width:780px) {
  .con-sp {
    display: block;
    line-height: 250%;
  }

  .con-pc {
    display: none;
  }

  .t-about {
    width: 90%;
  }

  .btn-box a:nth-of-type(1)::before,
  .btn-box a:nth-of-type(2)::before {
    right: 5%;
  }

  #top-contact .container {
    padding-top: 45px;
    padding-bottom: 215px;
  }

  .tel,
  .con-top {
    margin-bottom: 15px;
  }
  
  .con-texts {
    margin-bottom: 25px;
  }

  .lesson-top-br {
    display: none;
  }
}

@media(max-width:590px) {
  .tel::before {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .t-about {
    font-size: 20px;
  }
}

/* レッスン */
#lesson .container {
  padding-top: 180px;
  border-radius: 200px 200px 0 0;
  background-color: var(--whiteColor);
  transform: translateY(-300px);
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 95%;
  max-width: 1020px;
  margin: 0 auto 145px auto;
}

.top-left {
  text-align: left;
  position: relative;
  padding-right: 70px;
}

.top-left::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 80px;
  border-left: 3px solid var(--blueColor);
  bottom: 0;
  right: 0;
}

.top-left p:nth-of-type(1) {
  font-size: var(--blueFontSize);
  color: var(--blueColor);
  font-weight: var(--boldFontWeight);
  margin-bottom: 0.5em;
  padding-left: 0.2em;
}

.top-left p:nth-of-type(2) {
  font-size: clamp(30px,8vw,50px);
  font-weight: var(--boldFontWeight);
}

.top-right {
  text-align: left;
}

.top-right p {
  font-size: clamp(16px,4.2vw,20px);
  color: #635D5D;
  font-weight: var(--boldFontWeight);
  line-height: 200%;
  padding-left: 70px;
}

.lesson-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  column-gap: 120px;
  row-gap: 140px;
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
}

.lesson-box {
  text-align: left;
  width: 480px;
  margin: 0 auto;
}

.box-top {
  position: relative;
  font-size: var(--boxFontSize);
  color: var(--blueFontSize);
  font-weight: var(--boldFontWeight);
  padding-left: 1.5em;
  display: inline-block;
  margin-bottom: 35px;
}

.box-top::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: var(--blueColor);
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
}

.lesson-box img {
  border-radius: 20px;
}

.box-bottom {
  margin-top: 30px;
  font-weight: var(--mediumFontWeight);
  line-height: 160%;
  font-size: clamp(16px,4.26vw,24px);
}

.lesson-box:nth-of-type(even) {
  transform: translateY(110px);
}

.lesson-br {
  display: none;
}

@media(max-width:1300px) {
  .lesson-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 100px;
  } 
  
  .lesson-box:nth-of-type(even) {
    transform: translateY(0);
  } 

  .lesson-box {
    width: 95%;
    max-width: 480px;
  }
}

@media(max-width:1100px) {
  .section-top {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto 75px auto;
  }

  .lesson-br {
    display: initial;
  }
  
  .top-right p {
    padding-left: 0;
    margin-top: 1em;
    line-height: 180%;
  }

  .top-left::before {
    display: none;
  }

  .section-top {
    max-width: 600px;
  }
}

@media(max-width:780px) {
  #lesson .container {
    padding-top: 90px;
    transform: translateY(-150px);
    border-radius: 100px 100px 0 0;
  }

  .box-top {
    margin-bottom: 18px;
  }

  .box-bottom {
    margin-top: 15px;
  }

  .lesson-grid {
    row-gap: 50px;
  }

  .section-top {
    margin: 0 auto 40px auto;
  }
}

@media(max-width:400px) {
  #lesson .container {
    border-radius: 50px 50px 0 0;
  }
}

/* お客様の声 */
#voice .container {
  background: url(../img/voice-bg.png) top/110%;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 190px;
}

.voice-top {
  text-align: center;
  position: relative;
  margin-bottom: 120px;
}

.voice-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1272px ;
  margin: 0 auto;
}

.voice-top::before {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 170px;
  height: 8px;
  border-bottom: 8px solid var(--whiteColor);
  border-radius: 10px;
}

.voice-top p:nth-of-type(1) {
  color: var(--whiteColor);
  font-size: var(--blueFontSize);
  font-weight: var(--boldFontWeight);
  padding-bottom: 5px;
}

.voice-top h2 {
  color: var(--whiteColor);
  font-size: clamp(30px,8vw,50px);
  font-weight: var(--boldFontWeight);
}

.voice-box {
  width: 395px;
  height: auto;
  border-radius: 50px;
  background-color: var(--whiteColor);
  padding-top: 67px;
  box-shadow: 0 4px 4px gray;
}

.voice-box img {
  width: 130px;
  height: auto;
  margin: 0 auto;
}

.voice-box p {
  font-weight: var(--boldFontWeight);
  font-size: clamp(16px,4.26vw,20px);
  line-height: 180%;
  padding: 50px 45px 100px 45px;
  text-align: left;
}

@media(max-width:1345px) {
  #voice .container {
    background: url(../img/voice-bg.png) top/200%;
  }

  .voice-flex {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .voice-box {
    max-width: 395px;
    width: 90%;
    height: auto;
  }
}

@media(max-width:800px) {
  #voice .container {
    padding-top: 60px;
    padding-bottom: 95px;
  }
}

@media(max-width:600px) {
  .voice-box {
    padding-top: 35px;
  }
  .voice-box p {
    padding: 25px 23px 50px 23px;
  }

  .voice-top {
    margin-bottom: 60px;
  }

  .voice-top::before {
    width: 85px;
    bottom: -15px;
  }
}

/* コーチ紹介 */
#coach .container {
  padding-top: 80px;
  padding-bottom: 200px;
}

.coach-top {
  margin-bottom: 120px;
}

.coach-blue {
  font-size: var(--blueFontSize);
  color: var(--blueColor);
  font-weight: var(--boldFontWeight);
  margin-bottom: 10px;
}

.coach-top h2 {
  font-size: clamp(30px,8vw,50px);
  font-weight: var(--boldFontWeight);
}

.coach-slider {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.coach-wrapper {
  background-color: #F2F6E4;
  padding: 33px 0;
  width: 95%;
  max-width: 1026px;
  margin: 0 50px 10px 50px;
  box-shadow: 0 4px 4px gray;
  border-radius: 10px;
}

.coach-box {
  width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 110%;
}

.coach-img {
  width: 250px;
}

.coach-texts {
  width: 575px;
}

.coach-img img {
  width: 250px;
  height: auto;
  margin-bottom: 17px;
}

.coach-img-bottom {
  font-size: 16px;
  font-weight: var(--boldFontWeight);
}

.age {
  margin: 17px 0;
}

.portfolio {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  gap: 2em;
  text-align: left;
}

.port-top {
  font-size: 18px;
}

.portfolio ul li {
  font-size: 18px;
}

.point {
  text-align: left;
  font-size: 18px;
  margin-top: 37px;
}

.slick-prev,
.slick-next {
  position: relative;
  top: 38% !important;
}

.slick-prev {
  left: -4% !important;
}

.slick-next {
  left: 100% !important;
}

.slick-prev:before, .slick-next:before {
  color: transparent !important;
}

.slick-prev::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 103px;
  background: url(../img/slider-left.svg) center/contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: 10;
}

.slick-next::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 103px;
  background: url(../img/slider-right.svg) center/contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: 10;
}

#coach .slick-dots li {
  margin: 0 22px ;
}

#coach .slick-dots {
  bottom: -60px ;
}

#coach .slick-dots li button:before {
  font-size: 17px ;
}

#coach .container {
  position: relative;
}

#coach .container::before {
  position: absolute;
  content: "";
  width: 240px;
  height: 292px;
  background: url(../img/circle001.png) left/contain;
  background-repeat: no-repeat;
  top: -15px;
  left: 0;
}

#coach .container::after {
  position: absolute;
  content: "";
  width: 240px;
  height: 292px;
  background: url(../img/circle003.png) left/contain;
  background-repeat: no-repeat;
  bottom: 100px;
  left: 0;
  z-index: -1;
}

.coach-top {
  position: relative;
}

.coach-top::before {
  position: absolute;
  content: "";
  width: 240px;
  height: 292px;
  background: url(../img/circle002.png) right/contain;
  background-repeat: no-repeat;
  top: 50px;
  right: 0;
}

@media(max-width:1220px) {
  .coach-box {
    width: 95%;
    max-width: 700px;
    flex-direction: column;
    gap: 30px;
  }

  .coach-wrapper {
    padding: 30px 0;
    width: 600px;
    margin-left: 150px;
    margin-right: 150px;
  }

  .coach-slider {
    width: 100%;
  }

  .point {
    margin-top: 30px;
  }

  .coach-texts {
    width: 90%;
    max-width: 575px;
    margin: 0 auto;
  }

  .age {
    margin: 10px 0;
  }

  .coach-img img {
    margin-bottom: 10px;
  }

  .slick-prev {
    left: 30px !important;
  }
  
  .slick-next {
    left: calc(100% - 50px) !important;
  }

  .slick-prev::before,
  .slick-next::before {
    width: 20px !important;
    height: 50px !important;
  }
}

@media(max-width:780px) {
  #coach .slick-slide img {
    width: 200px;
    margin:  0 auto 30px;
  }

  .coach-wrapper {
    padding: 30px 0;
    width: 80vw;
    margin-left: 150px;
    margin-right: 150px;
  }

  .slick-prev {
    left: 10px  !important;
  }
  
  .slick-next {
    left: calc(100% - 24px) !important;
  }

  .slick-prev::before,
  .slick-next::before {
    width: 15px !important;
    height: 40px !important;
  }

  .portfolio {
    flex-direction: column;
    gap: 30px;
  }

  .coach-texts {
    line-height: 140%;
  }

  .coach-img {
    text-align: center;
  }

  #coach .slick-dots li button:before {
    font-size: 12px ;
  }

  #coach .slick-dots li {
    margin: 0 10px ;
  }

  #coach .slick-dots {
    bottom: -30px ;
  }

  #coach .container {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .coach-top {
    margin-bottom: 60px;
  }

  #coach .container::before {
    width: 120px;
    height: 150px;
    top: -15px;
    left: 0;
  }
  
  #coach .container::after {
    width: 120px;
    height: 150px;
    bottom: 165px;
  }
  
  .coach-top::before {
    width: 120px;
    height: 150px;
    top: 50px;
    right: 0;
  }  
}

/* 料金 */
#price {
  background-color: #F8FAFF;
}

#price .container {
  padding-bottom: 85px;
  padding-top: 90px;
}

.price-blue {
  font-size: clamp(15px,3.7vw,25px);
  color: var(--blueColor);
  font-weight: var(--boldFontWeight);
  margin-bottom: 5px;
}

.price-top {
  margin-bottom: 45px;
}

.price-top h2 {
  font-size: clamp(30px,8vw,50px);
  font-weight: var(--boldFontWeight);
  display: inline-block;
  position: relative;
}

.price-top h2::before {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  width:100px;
  border-radius: 10px;
  border-bottom: 8px solid var(--blueColor);
  height: 8px;
}

#price .price-wrapper {
  width: 95%;
  max-width: 866px;
  box-shadow: 0 4px 4px gray;
  margin: 0 auto;
  border-radius: 20px;
  padding: 15px 0 0 0;
  background: var(--whiteColor);
}

.price-img-box {
  width: 95%;
  max-width: 772px;
  margin: 0 auto;
  overflow-x: scroll;
}

.price-img-box img {
  width: 100%;
  min-width: 600px;
}

.price-wrapper img:nth-of-type(1) {
  margin-bottom: 5px;
}

.price-wrapper img:nth-of-type(2) {
  margin-top: 15px;
  margin-bottom: 5px;
}

.price-right {
  font-size: 16px;
  display: none;
  text-align: right;
}

.price-right p {
  padding-right: 10px;
}

.price-right:nth-of-type(2) p {
  margin-bottom: 10px;
}

.table-bottom {
  font-size: clamp(14px,3.73vw,18px);
  font-weight: var(--boldFontWeight);
  width: 95%;
  max-width: 772px;
  margin: 0 auto;
  padding: 0.8em 0 1.8em 0;
  text-align: left;
  line-height: 150%;
}

.table-bottom p:nth-of-type(1) {
  margin-bottom: 1em;
}

.price-br {
  display: none;
}

@media(max-width:760px) {
  #price .container {
    padding-bottom: 45px;
    padding-top: 45px;
  }  

  .price-top h2::before {
    width: 60px;
  }

  .price-br {
    display: initial;
  }
}

@media(max-width:650px) {
  .price-right {
    display: initial;
  }
}

/* お知らせ */
#news .container {
  padding-top: 85px;
  padding-bottom: 265px;
}

.news-blue {
  color: var(--blueColor);
  font-weight: var(--boldFontWeight);
  font-size: clamp(21px,5.6vw,35px);
  margin-bottom: 5px;
}

.news-top {
  margin-bottom: 90px;
}

.news-top h2 {
  font-weight: clamp(30px,8vw,50px);
  font-size: var(--contactFontSize);
  display: inline-block;
  position: relative;
}

.news-top h2::before {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  width:170px;
  border-radius: 10px;
  border-bottom: 8px solid var(--blueColor);
  height: 8px;
}

.news-wrapper {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  padding: 75px 0 40px 0;
  border: 2px solid var(--blueColor);
  border-radius: 20px;
}

.news-inner {
  gap: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  text-align: left;
}

.news-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 95%;
  max-width: 800px;
  margin: 50px auto 0 auto;
  padding: 0 25px 10px 25px;
  border-bottom: 1px solid var(--blackColor);
}

.news-date {
  font-size: 16px;
}

.news-cat {
  font-size: var(--catFontSize);
  background-color: #D9D9D9;
  border-radius: 5px;
  padding: 0.3em 1.3em 0.4em 1.3em;
}

.news-title {
  font-size: 20px;
}

.news-btn-box {
  margin-top: 60px;
}

.news-btn-box a {
  font-size: 16px;
  border: 2px solid var(--blueColor);
  border-radius: 5px;
  background-color: var(--whiteColor);
  padding: 0.51em 2.3em 0.61em 2.3em;
}

.news-box a:hover {
  opacity: 0.5;
}

.news-btn-box a:hover {
  color: var(--whiteColor);
  background-color: var(--blueColor);
}

@media(max-width:900px) {
  .news-inner {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media(max-width:700px) {
  .news-box {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
    margin-top: 25px;
  }

  .news-top {
    margin-bottom: 45px;
  }

  .news-top h2::before {
    width: 90px;
  }

  #news .container {
    padding-top: 40px;
    padding-bottom: 130px;
  }
  
  .news-btn-box {
    margin-top: 40px;
  }

  .news-wrapper {
    padding: 20px 0 40px 0;
  }
}

/* SNS */
/* #sns .container {
  padding-top: 56px;
  padding-bottom: 265px;
}

#sns h2 {
  font-size: clamp(30px,8vw,50px);
  font-weight: var(--boldFontWeight);
  display: inline-block;
  position: relative;
  margin-bottom: 120px;
}

#sns h2::before {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  width:170px;
  border-radius: 10px;
  border-bottom: 8px solid var(--blueColor);
  height: 8px;
}

.sns-flex {
  width:95%;
  max-width: 635px;
  gap: 135px;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  display: flex;
}

.sns-box {
  width: 250px;
  height: auto;
}

.sns-box p {
  font-weight: var(--mediumFontWeight);
  display: inline-block;
  position: relative;
  margin-bottom: 60px;
}

.sns-box p::before {
  content: "";
  width: 100%;
  height: 8px;
  border-bottom: 8px solid var(--blueColor);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  border-radius: 10px;
  z-index: -1;
}

@media(max-width:700px) {
  #sns .container {
    padding-top: 40px;
    padding-bottom: 130px;
  }
  
  #sns h2 {
    margin-bottom: 60px;
  }
  
  #sns h2::before {
    bottom: -20px;
    width:90px;
  }
  
  .sns-flex {
    width:95%;
    max-width: 635px;
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }
  
  .sns-box {
    max-width: 250px;
    width: 95%;
    height: auto;
  }
  
  .sns-box p {
    margin-bottom: 30px;
  }
} */