body {
  background-color: #f4f5f6;
}

#wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
}

/* 画像の隙間対策 */
#wrapper img {
  /* max-width: 100%; */
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

#wrapper video {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ul {
  padding-inline-start: 0;
}

/*上から下に出る*/
.fade-up {
  opacity: 0;
}

.fadein-up-active {
  animation-name: fadeUPAnime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*アニメーション後、要素が表示されたままにする*/
}

@-webkit-keyframes fadeUPAnime {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUPAnime {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.shine-button {
  display: block;
  /* 丸みボタン */
  position: relative;
  width: 100%;
  /* 光用エフェクトの基準に */
  overflow: hidden;
  border-radius: 10px;
  /* 光がボタン外に溢れないように */
  cursor: pointer;
}


/* ——— 光のエフェクト（疑似要素 before） ——— */
.shine-button::before {
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: -60px;
  width: 50px;
  height: 50px;

  animation-name: shine-run;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  background: linear-gradient(to right,
  rgba(255, 255, 255, 0),
  rgba(255, 255, 255, 0.9));
}

/* ——— アニメーション内容 ——— */
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    opacity: 0;
  }

  40% {
    transform: scale(1) rotate(50deg);
    opacity: 1;
  }

  100% {
    transform: scale(250) rotate(50deg);
    opacity: 0;
  }
}


.pulse-btn {
  display: inline-block;
  transition: transform 0.3s;
  animation: pulse 1.8s infinite ease-in-out;
}

/* ふわっと大きく → 元に戻る */
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1);
    /* 8%拡大（自然） */
  }

  100% {
    transform: scale(0.9);
  }
}


.img1,
.img2,
.img3,
.img4,
.img5 {
  position: absolute;
}

.btn {
  position: absolute;
}

.txt-w {
  color: aliceblue;
}

.txt-blue {
  color: #284c9f;
}

.txt-yellow {
  color: #effcc3;
}

.bg-blue {
  background-color: #284c9f;
}

/*  ==============================
fv
=================================*/
.fv {
  position: relative;
}

.fv .txt-01,
.fv .btn {
  position: absolute;
}

.fv .txt-01 {
  bottom: 51%;
  left: 4%;
  width: 65%;
}


.fv .btn {
  bottom: 2%;
  left: 5%;
  width: 90%;
}

.fv .fadein-up-active {
  animation-name: fadeUPAnime;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*アニメーション後、要素が表示されたままにする*/
}

/*  ==============================
登校実績
=================================*/
.results {
  position: relative;
}

.results .img1 {
  bottom: 52%;
  left: 0;
}

.results .img2 {
  bottom: 27.3%;
  left: 0;
}

.results .img3 {
  bottom: 2%;
  left: 0;
}

.results .btn {
  position: absolute;
  bottom: 3%;
  left: 1%;
  width: 98%;
}

.results .txt-01 {
  position: absolute;
  bottom: 43%;
  left: 12%;
  width: 62%;
}

/*  ==============================
problem-reason　
無限ループスライダー
=================================*/
/*---------- 共通 -----------*/
/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  width: 100%;
  height: auto;
  padding: 0 2.5%;
}

/*---------- 共通END -----------*/

.problem-reason {
  position: relative;
}

.slider-box {
  position: absolute;
}

.problem-reason-slider {
  bottom: 13%;
  left: 2.5%;
  width: 95%;
}


/* 共通設定 */
.swiper-button-next,
.swiper-button-prev {
  /* 丸くする */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9vw !important;
  height: 15vw !important;
  /* 半透明黒背景 */
  border-radius: 10%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 矢印（三角形）を疑似要素で作る */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

/* 右矢印 */
.swiper-button-next::after {
  border-width: 3.5vw 0 3.5vw 4vw;
  /* 上 下 左 右 */
  border-color: transparent transparent transparent white;
}

/* 左矢印 */
.swiper-button-prev::after {
  border-width: 3.5vw 4vw 3.5vw 0;
  border-color: transparent white transparent transparent;
}

/* 位置調整（お好みで変更） */
.swiper-button-next {
  right: -.8em !important;
}

.swiper-button-prev {
  left: -.8em !important;
}

@media screen and (min-width: 850px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 3.3em !important;
    height: 5em !important;
  }

  /* 右矢印 */
  .swiper-button-next::after {
    border-width: .5em 0 .5em .6em;
    /* 上 下 左 右 */
  }

  /* 左矢印 */
  .swiper-button-prev::after {
    border-width: .5em .6em .5em 0;
  }
}


/*  ==============================
cta-box
CTAボタン
=================================*/
.cta-box {
  position: relative;
}

.cta-btn {
  position: absolute;
  bottom: 4vw;
  left: 2.5%;
  width: 95.6%;
}

.cta img {
  width: 95.6%;
}

@media screen and (min-width: 850px) {
  .cta-btn {
    bottom: 2.5em;
  }
}


/*  ==============================
worries
お悩みコンテンツ
=================================*/
.worries-inner {
  position: relative;
}

.worries-txt {
  position: absolute;
  bottom: 5%;
  left: 11.25%;
  width: 77.5%;
}


/*  ==============================
proposal
提案
=================================*/

.proposal {
  position: relative;
}

.proposal .img1 {
  bottom: 85.5%;
  left: 7.7%;
  width: 84.5%;
}

.proposal .img2 {
  bottom: 5.5%;
  left: 4%;
  width: 59.4%;
}

/*  ==============================
point
ポイント
=================================*/
/*------- POINT1 ------*/
.point1 {
  position: relative;
}

.point1 .img1 {
  bottom: 83.6%;
  left: 0;
}

.point1 .img2 {
  bottom: 65%;
  left: 0;
}


.point1 .img3 {
  bottom: 37.9%;
  left: 0;
}


.point1 .img4 {
  bottom: 19.1%;
  left: 0;
}


.point1 .img5 {
  bottom: 1%;
  left: 0;
}

/*------- POINT2 ------*/

.point2-video {
  position: relative;
}

.point2-video video {
  position: absolute;
  bottom: 3%;
  left: 5%;
  width: 90% !important;
}

.point2-video .video-title {
  position: absolute;
  z-index: 99;
  bottom: 38%;
  left: 25%;
  width: 51%;
}

.teachers {
  position: relative;
}

.teachers-slider {
  bottom: 5.5%;
  left: 6%;
  width: 88%;
}

/* 位置調整（お好みで変更） */
.teachers-slider .swiper-button-next {
  right: -1.3em !important;
}

.teachers-slider .swiper-button-prev {
  left: -1.3em !important;
}


.point3,
.education {
  background-image: url(../media/point3-bg.webp);
  background-repeat: repeat-y;
  background-size: 100%;
}

.point3 .wrap .img {
  padding-top: 6vw;
}

@media screen and (min-width: 850px) {
  .point3 .wrap .img {
    padding-top: 2em;
  }
}

.point3-txt {
  position: relative;
}

.point3-txt .txt-01 {
  position: absolute;
  bottom: 22%;
  left: 22.5%;
  width: 55%;
}

.btn_animation {
  position: relative;
}

.btn_animation .shine-button {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 100%;
}


.detail-education .btn_animation .shine-button {
  bottom: 30%;
}

/*------ より詳しくはこちらボタン　共通---------*/
.detail-btn {
  position: relative;
}

.detail-btn .shine-button {
  width: 80%;
}

@media screen and (min-width: 850px) {
  /* .detail-btn_box {
    font-size: 20px;
  } */

  .triangle-button::after {
    content: '';
    display: inline-block;
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    /* top: 50%;
    right: 20px; */
    transform: translateY(-50%);
    border-width: 9px 0 9px 9px;
    border-style: solid;
    border-color: transparent transparent transparent yellow;
  }

  .triangle-button:active {
    top: 4px;
    box-shadow: 0 0 0 #82a3c6;
  }

}

@media screen and (max-width: 478px) {
  .triangle-button::after {
    content: '';
    display: inline-block;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-width: 7px 0 7px 7px;
    border-style: solid;
    border-color: transparent transparent transparent yellow;
  }

  .triangle-button:active {
    top: 4px;
    box-shadow: 0 0 0 #c3ecfc;
  }

}


/* -----  詳しく内容を隠す　------*/
#point3-detail,
#education-detail {
  display: none;
}

#education-detail {
  padding-bottom: 2.5em;
}

.benefit1,
.benefit2 {
  position: relative;
}

.benefit1 .txt-01 {
  position: absolute;
  right: 4%;
  bottom: 12%;
  width: 38.3%;
}


.benefit2 .txt-01 {
  position: absolute;
  bottom: 52%;
  left: 8%;
  width: 26.4%;
}

/*  ==============================
access
開講校舎のご紹介
=================================*/
.access {
  padding-bottom: 3rem;
  background-color: #cbe9f9;
  font-family: Arial, Helvetica, sans-serif;
}

.access-title {
  width: 59%;
  margin: 0 auto;
  padding: 16vw 0 7vw;
  text-align: center;
}

.access-box-inner {
  position: relative;
  left: 2.5%;
  width: 95%;
  margin-bottom: 2rem;
  padding: 2vw 5vw 5vw;
  border-radius: 1rem;
  background-color: aliceblue;
  font-size: 3vw;
}

.access-box-inner .title {
  padding: .5em;
  color: #284c9f;
  font-size: 5.5vw;
  font-weight: 800;
  text-align: center;
}

.access-box-inner .sb-title {
  padding-bottom: 1.5vw;
}

.access-box-inner .sb-title span {
  padding: 1vw 2vw;
  background-color: #284c9f;
  color: aliceblue;
}

.access-box-inner .txt {
  padding-bottom: 2vw;
}

.access-box-inner span {
  padding: 8px;
}

.map {
  width: 100%;
  overflow: hidden;
  /* filter: grayscale(1);  */
}

.map iframe {
  width: 220%;
  height: 45vw;
  margin-top: 0vw;
  margin-left: -30vw;
  pointer-events: none;
}



@media screen and (min-width: 850px) {

  .access-title {
    padding: 140px 0 60px;
  }

  .access-box-inner {
    padding: 10px 50px 50px;
    font-size: 28px;
  }

  .access-box-inner .title {
    padding: 40px 0 20px;
    font-size: 40px;
  }

  .access-box-inner .sb-title {
    padding-bottom: 10px;
  }

  .access-box-inner .sb-title span {
    padding: 10px 20px;
    background-color: #284c9f;
    color: aliceblue;
  }

  .access-box-inner .txt {
    padding-bottom: 20px;
  }

  .map iframe {
    width: 200%;
    height: 350px;
    /* margin-top: 40px; */
    margin-left: -350px;
  }

}

.access-box-inner .btn {
  position: absolute;
  bottom: 5%;
  left: 54%;
  width: 44%;
}



/*---- 詳しくはこちらボタン　-----*/
.access-btn {
  z-index: 99;
  width: 60%;
  margin-bottom: 5%;
  margin-left: 19.6%;
  border-radius: 50%;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .5);
}

details {
  padding-bottom: 10px;
}

.accordion-txt {
  margin-bottom: 20px;
}

.accordion-box a img {
  width: 80%;
  margin-bottom: 5%;
  margin-left: 9%;
  border-radius: 11.155px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .5);
}

.apply-box {
  margin: 20px 0;
}

.online {
  position: relative;
}

.online .btn {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 70%;
}

/*====================================================================
.faq-box .accordion_one
====================================================================*/
.faq {
  width: 100%;
  padding-bottom: 35px;
  background-color: #cbe9f9;
  background-repeat: repeat;
  background-size: 100%;
}

.faq-box {
  width: 95%;
  margin: 0 2.5%;
  padding-top: 1rem;
  padding-bottom: 35px;
  border-radius: 10px;
  background-color: #fff;
}


.box_one {
  padding: 2% 3%;
}

.txt_a_ac {
  display: flex;
  align-items: flex-start;
  /* アイコンとテキストの縦位置調整 */
}

.a-icon {
  width: 7%;
}

.a-txt {
  width: 93%;
  padding-left: 2%;
  color: #1c282e;
  font-size: 26px;
  line-height: 1.8;
}

.a-txt a{
  color: #1c282e;
  text-decoration: underline;
}

@media screen and (max-width: 850px) {
  .a-icon {
    width: 6.3vw;
  }
  .a-txt {
    font-size: 3.5vw;
  }
}



/*=========.accordion_one =========*/

.accordion_one {
  margin: 0;
  background-color: #f3f3f3;
}

.faq-box .accordion_one .accordion_header {
  position: relative;
  z-index: +1;
  padding-bottom: 0;
  transition-duration: 0.2s;
  color: #284c9f;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
}




.faq-box .accordion_one .accordion_header:hover {
  opacity: .8;
}

.faq-box .accordion_one .accordion_header .i_box {
  display: flex;
  position: absolute;
  top: 50%;
  right: 2.5%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  /* border: 1px solid #284c9f; */
  margin-top: -20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.faq-box .accordion_one .accordion_header.stay .i_box {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq-box .accordion_one .accordion_header .i_box .one_i {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.faq-box .accordion_one .accordion_header.stay .i_box .one_i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq-box .accordion_one .accordion_header.stay.open .i_box .one_i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-box .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.faq-box .accordion_one .accordion_header.stay.open .i_box {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.faq-box .accordion_one .accordion_header .i_box .one_i::before,
.faq-box .accordion_one .accordion_header .i_box .one_i::after {
  content: '';
  display: flex;
  position: absolute;
  top: 11px;
  left: 0;
  width: 30px;
  height: 8px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
  border-radius: 2px;
  background-color: #284c9f;
}

.faq-box .accordion_one .accordion_header .i_box .one_i::before {
  top: 0;
  left: 11px;
  width: 8px;
  height: 30px;
}

.faq-box .accordion_one .accordion_header.stay .i_box .one_i::before {
  content: none;
}

.faq-box .accordion_one .accordion_header.open .i_box .one_i::before {
  content: none;
}

.faq-box .accordion_one .accordion_header.stay.open .i_box .one_i::before {
  content: "";
}

.faq-box .accordion_one .accordion_header.open .i_box .one_i::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.faq-box .accordion_one .accordion_header.stay.open .i_box .one_i::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq-box .accordion_one .accordion_inner {
  display: none;
  top: 0;
  box-sizing: border-box;
}

.faq-box .accordion_one .accordion_inner.stay {
  display: block;
}


.faq-box .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}



@media screen and (max-width: 850px) {
  .faq-box .accordion_one .accordion_header .i_box .one_i {
    width: 20px;
    height: 20px;
  }

  .faq-box .accordion_one .accordion_header .i_box .one_i::before,
  .faq-box .accordion_one .accordion_header .i_box .one_i::after {
    position: absolute;
    top: 8px;
    left: 0;
    width: 20px;
    height: 4px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;

    border-radius: 2px;
  }

  .faq-box .accordion_one .accordion_header .i_box .one_i::before {
    top: 0;
    left: 8px;
    width: 4px;
    height: 20px;
  }
}

/*=========.FAQ END=========*/


/*  ==============================
voices
=================================*/
.voice {
  background-color: #e2f1fc;
}

.student-voice {
  position: relative;
  padding-bottom: 20px;
  background-image: url(../media/student-interview-bg.webp);
  background-repeat: repeat-y;
  background-size: 100%;
}

.parent-voice {
  position: relative;
  padding-bottom: 20px;
  background-image: url(../media/parent-interview-bg.webp);
  background-repeat: repeat-y;
  background-size: 100%;
}

.voice-box {
  width: 90%;
  margin: 0 5%;
}

.student-voice .voice-txt {
  margin: 5% auto;
  color: #273146;
  font-size: 3.7vw;
}

.parent-voice .voice-txt {
  margin: 5% auto;
  color: #fff;
  font-size: 3.7vw;
}

.voice-txt span {
  font-weight: 900;
}

.voice-txt p {
  padding-bottom: 1em;
  line-height: 1.5;
}

.read-more-1 {
  position: relative;
}

.read-more-1 .voice-txt {
  position: relative;
  max-height: 80vw;
  /* 開く前に見せたい高さを指定 */
  margin-bottom: 10vw;
  overflow: hidden;
  transition: max-height 1s;
}

.read-more-1:has(:checked) .voice-txt {
  max-height: 100vh;
}

.read-more-1 .voice-txt::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg,
  hsla(205, 80%, 95%, 0) 0%,
  hsla(205, 80%, 95%, 0.9) 50%,
  hsla(205, 80%, 95%, 1) 100%);
}


.read-more-1:has(:checked) .voice-txt::after {
  content: none;
}

.read-more-1 label {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  align-items: center;
  margin-bottom: 5vw;
  padding: .4em 20px;
  transform: translateX(-50%);
  border-radius: 100px;
  background-color: #005493;
  color: #fff;
  font-size: 5vw;
  gap: 0 4px;
}

.read-more-1:has(:checked) label {
  transition: opacity 0.3s;
  /* クリック無効化 */
  outline: none;
  opacity: 0;
  box-shadow: none;
  /* 透明化 */
  pointer-events: none;
}

.read-more-1 label::after {
  content: '';
  display: inline-block;
  width: 5vw;
  height: 3vw;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* .read-more-1 label:hover::after {
  background-color: #005493;
} */

.read-more-1 input {
  display: none;
}

@media screen and (min-width: 850px) {
  .read-more-1 label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 18px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }


  .student-voice .voice-txt,
  .parent-voice .voice-txt {
    font-size: 30px;
  }

  .read-more-1 .voice-txt::after {
    height: 280px;
  }

  .read-more-1 .voice-txt {
    position: relative;
    max-height: 600px;
    /* 開く前に見せたい高さを指定 */
    margin-bottom: 20px;
  }

  .read-more-1 label {
    margin-bottom: 70px;
    padding: .4em 3em;
    font-size: 30px !important;
  }
}


.read-more-2 {
  position: relative;
}

.read-more-2 .voice-txt {
  position: relative;
  max-height: 80vw;
  /* 開く前に見せたい高さを指定 */
  margin-bottom: 10vw;
  overflow: hidden;
  transition: max-height 1s;
}

.read-more-2:has(:checked) .voice-txt {
  max-height: 100vh;
}

.read-more-2 .voice-txt::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg,
  hsla(216, 37%, 39%, 0) 0%,
  hsla(216, 37%, 39%, 0.9) 50%,
  hsla(216, 37%, 39%, 1) 100%);
}

.read-more-2:has(:checked) .voice-txt::after {
  content: none;
}

.read-more-2 label {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  align-items: center;
  margin-bottom: 5vw;
  padding: .4em 20px;
  transform: translateX(-50%);
  border-radius: 100px;
  background-color: #e4f9fd;
  color: #005493;
  font-size: 5vw;
  gap: 0 4px;
}

/* .read-more-2 label:hover {
  border: 1px solid #e4f9fd;
  background-color: #005493;
  color: #e4f9fd;
  cursor: pointer;
} */

.read-more-2:has(:checked) label {
  transition: opacity 0.3s;
  /* クリック無効化 */
  outline: none;
  opacity: 0;
  box-shadow: none;
  /* 透明化 */
  pointer-events: none;
}

.read-more-2 label::after {
  content: '';
  display: inline-block;
  width: 5vw;
  height: 3vw;
  background-color: #005493;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 
.read-more-2 label:hover::after {
  background-color: #005493;
} */

.read-more-2 input {
  display: none;
}

@media screen and (min-width: 850px) {

  .read-more-2 label::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 18px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .student-voice .voice-txt,
  .parent-voice .voice-txt {
    font-size: 30px;
  }

  .read-more-2 .voice-txt::after {
    height: 280px;
  }

  .read-more-2 .voice-txt {
    position: relative;
    max-height: 600px;
    /* 開く前に見せたい高さを指定 */
    margin-bottom: 20px;
  }

  .read-more-2 label {
    margin-bottom: 70px;
    padding: .4em 3em;
    font-size: 30px !important;
  }
}


.float {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  width: 100%;
  max-width: 850px;
  background-color: rgba(82, 83, 84, 0.6);
  text-align: center;
}

.float-btn {
  position: relative;
  width: 100%;
  font-size: 20px;
  font-weight: 800;
}

.float-btn .btn1 {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 50%;
  height: 100%;
  /* background-color: #08c727; */
  padding: 1em;
  color: #fff;
}

.float-btn .btn2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  /* background-color: #fd6229; */
}


#footer {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 10px;
  overflow: hidden;
  background-color: #e7f1fc;
  color: #273146;
  font-size: 2.7vw;
  text-align: center;
}

#footer div {
  padding: 10px 0 0;
}

#footer .title {
  font-size: 3vw;
}

#footer li {
  padding-top: 1.5rem;
}

#footer li a {
  color: #273146;
}

@media screen and (min-width: 850px) {
  #footer {
    font-size: 14px;
  }

  #footer .title {
    font-size: 18px;
  }
}