@charset "UTF-8";
/*----------------------------------------------------------
共通CSS
----------------------------------------------------------*/
html {
  font-size: 62.5%;
}

html body {
  font-family: "Nunito Sans", Arial, sans-serif;
}

html body a {
  color: black;
  text-decoration: none;
}

h2 {
  font-size: 3.2rem;
  margin-bottom: 1em;
  text-align: center;
}

h3 {
  color: #7bbbdc;
  font-size: 2.5rem;
  margin-bottom: 1em;
  text-align: center;
  font-weight: 400;
}

h5 {
  font-size: 2rem;
  margin-bottom: 1em;
  text-align: center;
}

.entry-button {
  background-color: #db0c19;
  color: white;
  border-radius: 0.4rem;
  border: none;
  font-size: 1.8rem;
  padding: 0.5em 1em;
}

.entry-button:hover {
  cursor: pointer;
}

.entry-button span {
  padding: 0.1em 0.4em;
  background-color: white;
  border-radius: 3rem;
  color: #db0c19;
  margin-right: 0.5em;
}

.entry-button-m {
  font-size: 2.2rem;
  padding: 0.5em 1.3em;
  display: inline-block;
  color: white;
  background-color: #db0c19;
  border-radius: 0.3rem;
  margin-bottom: 1.5em;
  border-radius: 10px;
}

*:focus {
  outline: none;
}

/*----------------------------------------------------------
header
----------------------------------------------------------*/
header #h-menu {
  padding: 0 7%;
}

header #h-menu .h-wrapper {
  display: flex;
  justify-content: space-between;
}

header #h-menu .h-wrapper #h-left {
  text-align: center;
  display: table;
  height: 100%;
}

header #h-menu .h-wrapper #h-left div {
  vertical-align: middle;
  display: table-cell;
  z-index: 15;
}

header #h-menu .h-wrapper #h-left div img {
  position: relative;
  z-index: 12;
}

header #h-menu #h-right {
  display: flex;
  align-items: center;
  font-size: 2.1rem;
}

header #h-menu #h-right li {
  margin-left: 1em;
}

header #h-menu #h-right li:first-child {
  margin: 0;
}

header #h-menu #h-right #h-r-check {
  height: 3rem;
}

header #h-menu #h-right #h-r-check a {
  display: flex;
  align-items: center;
}

header #h-menu #h-right #h-r-check a img {
  height: 100%;
}

header #h-menu #h-right #h-r-blue a {
  color: #0e5fb1;
  padding: 0.7em 1.2em;
  font-weight: 600;
  border: 2px solid #0e5fb1;
  border-radius: 10px;
}

header #h-menu #h-right #h-r-button {
  margin-top: 0.7em;
}

header #h-menu #h-right #h-r-button p {
  color: #fd6a65;
  padding-bottom: 0.2em;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

header #h-top {
  height: 88vh;
  position: relative;
  background: url("../../img/lpdesign/header-back.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

header #h-top #h-p-message {
  padding: 0 8%;
  padding-top: 7%;
}

header #h-top #h-p-message #h-p-m-speech {
  font-size: 3rem;
  padding: 0.3em 0.8em;
  background-color: #db0c19;
  color: white;
  display: inline;
  position: relative;
}

header #h-top #h-p-message #h-p-m-speech:after {
  border-top: 15px solid #db0c19;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: -15px;
  left: 48%;
  content: "";
  position: absolute;
}

header #h-top #h-p-message h1 {
  font-size: 9rem;
  font-weight: 500;
  margin-top: 0.5em;
  line-height: 117.19px;
}

header #h-top #h-p-message #h-p-m-sentence {
  font-size: 2.8rem;
  padding: 0.8em 0.6em;
  line-height: 3rem;
  line-height: 3.3rem;
  max-width: 52%;
}

header #h-top #h-p-message #h-p-m-check {
  display: flex;
  margin-bottom: 5em;
}

header #h-top #h-p-message #h-p-m-check div {
  padding-right: 0.5em;
  font-size: 3.5rem;
  color: #db0c19;
  font-weight: 600;
  display: flex;
}

header #h-top #h-p-message #h-p-m-check div img {
  padding-right: 0.1em;
  height: 3.8rem;
}

header #h-top #woman {
  width: 40%;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

/*----------- responsive-menu ------------*/
#hamburger-menu {
  display: none;
}

#hamburger-menu #menu-btn-check {
  display: none;
}

#hamburger-menu #menu-btn-check:checked ~ .sp-m-wrapper #sp-m-w-r .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#hamburger-menu #menu-btn-check:checked ~ .sp-m-wrapper #sp-m-w-r .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#hamburger-menu #menu-btn-check:checked ~ .sp-m-wrapper #sp-m-w-r .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#hamburger-menu #menu-btn-check:checked ~ .menu-content {
  opacity: 10;
}

#hamburger-menu .sp-m-wrapper {
  position: absolute;
  top: 0;
  right: 3rem;
  display: flex;
  padding-top: 1em;
  height: 12vh;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-l {
  width: 15rem;
  text-align: center;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-l p {
  font-size: 1.5rem;
  color: #db0a18;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-l a {
  display: block;
  color: white;
  background-color: #db0c19;
  font-size: 2rem;
  padding: 2.4rem 3rem;
  border-radius: 10px;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-r {
  margin: 1.5em 0 1.5rem 1em;
  padding: 0.8em;
  z-index: 11;
  border: 1px solid #0e5fb1;
  box-sizing: border-box;
  height: 7rem;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn {
  box-sizing: border-box;
  display: flex;
  height: 38px;
  width: 38px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 auto;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span,
#hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:before,
#hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 35px;
  border-radius: 3px;
  position: absolute;
  background-color: #0e5fb1;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:before {
  bottom: 10px;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:after {
  top: 10px;
}

#hamburger-menu .sp-m-wrapper #sp-m-w-r p {
  font-size: 1.7rem;
  text-align: center;
  color: #0e5fb1;
}

#hamburger-menu .menu-content {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.5s;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.95);
}

#hamburger-menu .menu-content ul {
  padding: 15vh 1rem 0;
}

#hamburger-menu .menu-content ul li {
  padding: 1.5em;
  text-align: center;
}

#hamburger-menu .menu-content ul li a {
  width: 100%;
  font-size: 2.5rem;
  box-sizing: border-box;
  padding: 9px 15px 10px;
}

#hamburger-menu .menu-content ul #m-c-red a {
  background-color: #db0c19;
  color: white;
  display: block;
  border-radius: 10px;
  max-width: 26rem;
  margin: 0 auto;
}

#hamburger-menu .menu-content ul #m-c-red a span {
  color: #db0c19;
  font-size: 2.3rem;
  background-color: white;
  border-radius: 20px;
  padding: 0.1em 0.3em;
  margin-right: 0.5em;
}

/*----------- ハンバーガーメニューのopacity --------*/
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 10;
  }
}

/*----------- javaにて追加css --------*/
.scroll-prevent {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------------
main section1
----------------------------------------------------------*/
#section1 {
  padding: 7rem 0;
  margin: 3em 0;
}

#section1 #s1-top {
  text-align: center;
}

#section1 #s1-top #s1-t-date {
  font-size: 2.2rem;
  margin-bottom: 0.4em;
}

#section1 #s1-top #s1-top-number {
  font-size: 2.2rem;
  margin-bottom: 1em;
  font-weight: 600;
}

#section1 #s1-top #s1-top-number span {
  font-size: 3rem;
  font-weight: 600;
  color: #db0c19;
}

#section1 #s1-boxes {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  padding: 0 1em;
  margin: 0 auto;
  justify-content: center;
}

#section1 #s1-boxes .s1-box {
  width: 180px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin: 1em;
  border-radius: 0.3rem;
  border-radius: 10px;
  background: linear-gradient(to right, #0e5fb1 60%, white 40%);
  box-shadow: 10px 10px 15px -10px gray;
  padding: 1.3em 0.8em;
}

#section1 #s1-boxes .s1-box .number-blue {
  font-size: 1.7rem;
  text-align: center;
  width: 60%;
  box-sizing: border-box;
  color: white;
}

#section1 #s1-boxes .s1-box .s1-b-text {
  font-size: 2.5rem;
  width: 40%;
  box-sizing: border-box;
  text-align: center;
}

/*----------------------------------------------------------
main section2
----------------------------------------------------------*/
#section2 {
  background: #f1f7fb;
  padding: 2rem 0;
  margin: 3em 0;
}

#section2 #s2-button {
  text-align: center;
  margin-top: 5em;
}

.my-slider {
  width: 90%;
  margin: 0 auto;
}

.my-slider .wrapper {
  width: 100%;
  height: 25rem;
}

.my-slider .wrapper .ms-box {
  width: 90%;
  height: 90%;
  display: block;
  background-color: #ffffff;
  border-radius: 7px;
  margin: 0 auto;
}

.my-slider .wrapper .ms-box #ms-b-inner {
  padding: 2.5em 1em 2em 2em;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-mark {
  background-color: #db0a18;
  font-size: 1.6rem;
  color: white;
  font-weight: 600;
  display: inline-block;
  padding: 0.2em 0.5em;
  border-radius: 10px;
  margin-bottom: 0.5em;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.2rem;
  margin-bottom: 1em;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-skill {
  display: flex;
  align-items: center;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-skill img {
  height: 3rem;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-skill p {
  font-size: 1.2rem;
  padding-left: 0.8em;
  color: #0e5fb1;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-place {
  display: flex;
  align-items: center;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-place img {
  height: 2rem;
  margin-left: 0.5em;
}

.my-slider .wrapper .ms-box #ms-b-inner .m-s-place p {
  padding-left: 1.2em;
  font-size: 1.2rem;
}

.slick-center {
  margin: 0 em;
}

/*----------------------------------------------------------
main section3
----------------------------------------------------------*/
#section3 {
  padding: 1rem;
  margin: 1em 0;
}

#section3 .container {
  max-width: 1200px;
  padding: 2em;
  margin: 0 auto;
}

#section3 .container .s-title h2 {
  line-height: 1.7em;
}

#section3 .container #s3-boxes {
  display: flex;
  justify-content: space-between;
}

#section3 .container #s3-boxes .s3-box {
  width: 22%;
  margin: 2.5em 0;
  text-align: center;
}

#section3 .container #s3-boxes .s3-box .s3-icon {
  height: 20rem;
  margin: 0 15px;
  text-align: center;
}

#section3 .container #s3-boxes .s3-box .s3-icon img {
  height: 100%;
}

#section3 .container #s3-boxes .s3-box .s3-b-bottom {
  border-radius: 10px;
  box-shadow: 0 3px 3px gray;
}

#section3 .container #s3-boxes .s3-box .s3-b-bottom h4 {
  color: #0e5fb1;
  font-size: 2.2rem;
  height: 5rem;
  padding: 1.5em;
  margin-top: 1em;
}

#section3 .container #s3-boxes .s3-box .s3-b-bottom .s3-b-text {
  font-size: 1.9rem;
  height: 15rem;
  padding: 1em 1em 2em;
}

#section3 .container #s3-button {
  text-align: center;
  margin-top: 5em;
}

/*----------------------------------------------------------
main section4
----------------------------------------------------------*/
#section4 {
  padding: 2rem 0;
  margin: 2em 0;
}

#section4 .container {
  max-width: 1200px;
  margin: 0 auto;
}

#section4 .container #s4-boxes {
  justify-content: space-between;
  display: flex;
}

#section4 .container #s4-boxes .s4-box {
  text-align: center;
  max-width: 25rem;
  background-color: white;
  padding: 3em 0.8em;
  border-radius: 5px;
  box-shadow: 0 3px 3px gray;
}

#section4 .container #s4-boxes .s4-box .s4-number {
  width: 10rem;
  height: 10rem;
  margin: 0 auto;
}

#section4 .container #s4-boxes .s4-box .s4-number-1 {
  background: url("../../img/lpdesign/section4-1-1.png");
  background-position: center;
  background-size: 20rem;
}

#section4 .container #s4-boxes .s4-box .s4-number-2 {
  background: url("../../img/lpdesign/section4-2-1.png");
  background-position: center;
  background-size: 20rem;
}

#section4 .container #s4-boxes .s4-box .s4-number-3 {
  background: url("../../img/lpdesign/section4-3-1.png");
  background-position: center;
  background-size: 20rem;
}

#section4 .container #s4-boxes .s4-box .s4-number-4 {
  background: url("../../img/lpdesign/section4-4-1.png");
  background-position: center;
  background-size: 20rem;
}

#section4 .container #s4-boxes .s4-box .s4-icon {
  height: 10rem;
}

#section4 .container #s4-boxes .s4-box .s4-icon img {
  height: 100%;
}

#section4 .container #s4-boxes .s4-box h4 {
  font-size: 2.3rem;
  margin: 1.7em 0;
  color: #0e5fb1;
}

#section4 .container #s4-boxes .s4-box p {
  font-size: 1.7rem;
  padding: 0 1em 1em;
  line-height: 2.8rem;
}

/*----------------------------------------------------------
main section5
----------------------------------------------------------*/
#section5 {
  background-color: #f1f7fb;
	padding: 3rem 0 1rem;
  margin: 2em 0;
}

#section5 .container {
  max-width: 1200px;
  margin: 0 auto;
}

#section5 .container .s-title h2 {
  margin-bottom: 2em;
  line-height: 1.4em;
}

#section5 .container #s5-boxes {
  justify-content: space-between;
  display: flex;
}

#section5 .container #s5-boxes #s5-box {
  text-align: center;
  box-shadow: 0 3px 3px gray;
  max-width: 27rem;
  border-radius: 5px;
}

#section5 .container #s5-boxes #s5-box .s5-b-top {
  font-weight: 700;
  font-size: 2rem;
}

#section5 .container #s5-boxes #s5-box .s5-icon {
  height: 13rem;
  width: 13rem;
  margin: 1em auto;
}

#section5 .container #s5-boxes #s5-box .s5-icon img {
  height: 100%;
  opacity: 0.6;
}

#section5 .container #s5-boxes #s5-box h4 {
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: white;
  background-color: #0e5fb1;
  font-weight: 400;
  margin: 1em 1.4em 0.5em;
  padding: 0.4em;
  border-radius: 5px;
  position: relative;
}

#section5 .container #s5-boxes #s5-box h4:after {
  border-bottom: 20px solid #0e5fb1;
  border-left: 3px solid transparent;
  border-right: 15px solid transparent;
  top: -20px;
  left: 71%;
  content: "";
  position: absolute;
}

#section5 .container #s5-boxes #s5-box .s5-b-text {
  font-size: 1.7rem;
  line-height: 2rem;
  margin: 0.5em 1.2em 2em;
  color: #6c757d !important;
}

#section5 .container #s5-button {
  text-align: center;
	margin-top: 5em;
    margin-bottom: 2em;
}

/*----------------------------------------------------------
main section6
----------------------------------------------------------*/
#section6 {
  background: #f1f7fb;
  padding: 3rem 0;
  margin: 2em 0 0;
}

#section6 .container {
  max-width: 1200px;
  margin: 0 auto;
}

#section6 .container h2 {
  line-height: 1.4em;
}

#section6 .container #s6-boxes {
  justify-content: space-between;
  display: flex;
}

#section6 .container #s6-boxes .s6-box {
  max-width: 27rem;
  width: 100%;
  text-align: center;
  background-color: white;
  box-shadow: 0 3px 3px gray;
  border-radius: 5px;
}

#section6 .container #s6-boxes .s6-box .s6-icon {
  padding: 3em;
  opacity: 1.0;

}
#section6 .container #s6-boxes .s6-box .s6-icon .agent-img {
  width: 150px;
  height: 150px;
	border-radius: 50%;
}

#section6 .container #s6-boxes .s6-box h4 {
  font-size: 2rem;
  padding-bottom: 1em;
}

#section6 .container #s6-boxes .s6-box p {
  width: 100%;
  overflow-wrap: break-word;
  font-size: 1.6rem;
  padding: 0 1em 2em;
  box-sizing: border-box;
  color: #6c757d !important;
  text-align: left;
  word-break: break-all
}




/*----------------------------------------------------------
footer
----------------------------------------------------------*/
footer .container {
  max-width: 1400px;
  margin: 0 auto;
}

footer .container #f-top {
  display: flex;
  justify-content: space-between;
}

footer .container #f-top .f-left img {
  margin-top: 2rem;
}

footer .container #f-top .f-right {
  display: flex;
}

footer .container #f-top .f-right .f-r-left {
  margin-right: 5em;
  font-size: 2.1rem;
}

footer .container #f-top .f-right .f-r-left a {
  display: block;
  margin: 1em;
}

footer .container #f-top .f-right .f-r-right {
  font-size: 2.1rem;
  margin-right: 5em;
}

footer .container #f-top .f-right .f-r-right a {
  display: block;
  margin: 1em;
}

footer .container #f-bottom {
  font-size: 1.6rem;
  text-align: center;
  padding: 2em;
}

/*----------------------------------------------------------
メディアクエリ
----------------------------------------------------------*/
/*------------ 共通CSS --------------*/
@media (max-width: 480px) {
  h2 {
    font-size: 2.3rem;
    margin-bottom: 1em;
  }
}

@media (max-width: 480px) {
  h3 {
    font-size: 2rem;
    margin-bottom: 1em;
  }
}

/*------------ header --------------*/
@media (max-width: 1200px) {
  header #h-menu .h-wrapper #h-right {
    display: none;
  }
  header #hamburger-menu {
    display: block;
  }
  header #hamburger-menu #menu-btn-check:checked ~ .menu-content {
    display: block;
    animation-name: fade-in;
    animation-duration: 0.5s;
  }
  header #h-top {
    height: 65vh;
  }
  header #h-top #h-p-message {
    padding-top: 10vh;
  }
  header #h-top #h-p-message #h-p-m-speech:after {
    bottom: -10px;
  }
  header #h-top #h-p-message h1 {
    font-size: 6.5rem;
    line-height: 8rem;
    margin-bottom: 0.3em;
  }
  header #h-top #h-p-message #h-p-m-sentence {
    display: none;
  }
  header #h-top #h-p-message #h-p-m-check {
    display: block;
    margin: 4em 0 6em;
  }
  header #h-top #h-p-message #h-p-m-check div {
    margin-bottom: 0.2em;
  }
}

@media (max-width: 768px) {
  header #h-menu {
    padding: 0;
    height: 11vh;
  }
  header #h-menu .h-wrapper {
    height: 100%;
  }
  header #h-menu .h-wrapper #h-left {
    height: 100%;
  }
  header #h-menu .h-wrapper #h-left div {
    text-align: left;
  }
  header #h-menu .h-wrapper #h-left div img {
    width: 67%;
    height: auto;
  }
  header #h-menu #h-right {
    font-size: 1rem;
  }
  header #h-menu #h-right #h-r-check {
    height: 3rem;
  }
  header #h-top {
    height: 59vh;
  }
  header #h-top #h-p-message {
    padding-right: 0;
    padding-top: 7vh;
  }
  header #h-top #h-p-message #h-p-m-speech {
    font-size: 2.5rem;
  }
  header #h-top #h-p-message h1 {
    font-size: 4.5rem;
    margin-bottom: 0;
    line-height: 6rem;
  }
  header #h-top #h-p-message #h-p-m-check {
    margin: 2em 0 3em;
  }
  header #h-top #h-p-message #h-p-m-check div {
    font-size: 3.2rem;
  }
  header #h-top #h-p-message #h-p-m-check div img {
    height: 3.5rem;
  }
  header #h-top #h-p-message .entry-button-l {
    padding: 0.6em;
  }
  header #hamburger-menu .sp-m-wrapper {
    height: 9vh;
    z-index: 13;
    right: 1rem;
    padding-top: 1em;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-l {
    width: 14rem;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-l a {
    font-size: 1.8rem;
    padding: 2rem 1.8rem;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r {
    padding: 0.3em 0.8em;
    height: 6rem;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  header #h-top {
    height: 35vh;
  }
  header #h-top #h-p-message {
    padding-right: 0;
    padding-top: 4vh;
  }
  header #h-top #h-p-message #h-p-m-speech {
    font-size: 1rem;
    padding: 0.3em;
  }
  header #h-top #h-p-message #h-p-m-speech:after {
    bottom: -10px;
    border-top: 13px solid #db0c19;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
  header #h-top #h-p-message h1 {
    font-size: 2.8rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  header #h-top #h-p-message #h-p-m-check {
    margin: 0 0 1.5em;
  }
  header #h-top #h-p-message #h-p-m-check div {
    margin-bottom: 0;
    font-size: 2rem;
  }
  header #h-top #h-p-message #h-p-m-check div img {
    height: 2rem;
  }
  header #h-top #h-p-message .entry-button {
    font-size: 1rem;
  }
  header #h-menu {
    height: 8.5vh;
  }
  header #h-menu .h-wrapper #h-left div {
    margin-right: 2rem;
  }
  header #h-menu .h-wrapper #h-left div img {
    height: 50px;
    width: 45%;
    padding-right: 2rem;
  }
  header #hamburger-menu .sp-m-wrapper {
    height: 7vh;
    z-index: 13;
    right: 1rem;
    padding-top: 1%;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-l {
    width: 10rem;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-l p {
    font-size: 1rem;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-l a {
    font-size: 1.5rem;
    padding: .8em 0.5em;
    border-radius: 5px;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r {
    margin-top: 1.1em;
    padding: .1em .2em;
    height: 3.8rem;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn {
    height: 26px;
    width: 30px;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span,
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:before,
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:after {
    content: "";
    height: 2px;
    width: 25px;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:before {
    bottom: 7px;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r .menu-btn span:after {
    top: 7px;
  }
  header #hamburger-menu .sp-m-wrapper #sp-m-w-r p {
    margin-top: -2px;
    font-size: 1rem;
  }
}

/*------------ section1 --------------*/
#section1 {
  padding: 2rem 0;
  margin: 1em 0;
}

@media (max-width: 768px) {
  #section1 #s1-boxes .s1-box {
    width: 30%;
  }
  #section1 #s1-boxes .s1-box .number-blue {
    font-size: 1.4rem;
  }
  #section1 #s1-boxes .s1-box .s1-b-text {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  #section1 #s1-top #s1-t-date {
    font-size: 1.5rem;
  }
  #section1 #s1-top #s1-top-number {
    font-size: 2rem;
  }
  #section1 #s1-top #s1-top-number span {
    font-size: 2.2rem;
  }
  #section1 #s1-boxes .s1-box {
    width: 40%;
    padding: 1em 0.8em;
  }
  #section1 #s1-boxes .s1-box .number-blue {
    font-size: 1.1rem;
  }
  #section1 #s1-boxes .s1-box .s1-b-text {
    font-size: 1.8rem;
  }
}

/*------------ section2 --------------*/
@media (max-width: 480px) {
  .my-slider .wrapper .ms-box #ms-b-inner .m-s-title {
    font-size: 1rem;
  }
}

/*------------ section3 --------------*/
@media (max-width: 1200px) {
  #section3 .container {
    padding: 0;
  }
  #section3 .container #s3-boxes {
    flex-wrap: wrap;
    justify-content: center;
  }
  #section3 .container #s3-boxes .s3-box {
    width: 40%;
    margin: 2em 2em;
  }
  #section3 .container #s3-boxes .s3-box .s3-b-bottom .s3-b-text {
    height: 12rem;
  }
}

@media (max-width: 768px) {
  #section3 .container #s3-boxes .s3-box {
    width: 45%;
    margin: 2em 1em;
  }
  #section3 .container #s3-boxes .s3-box .s3-icon {
    height: 17rem;
    margin: 0 15px;
    text-align: center;
  }
  #section3 .container #s3-boxes .s3-box .s3-icon img {
    height: 100%;
  }
  #section3 .container #s3-boxes .s3-box .s3-b-bottom h4 {
    font-size: 1.8rem;
  }
  #section3 .container #s3-boxes .s3-box .s3-b-bottom .s3-b-text {
    font-size: 1.5rem;
    height: 10rem;
  }
}

@media (max-width: 480px) {
  #section3 {
    padding: 5rem 0;
    margin: 1em 0;
  }
  #section3 .container #s3-boxes .s3-box {
    width: 40%;
    margin: 2em 1em;
  }
  #section3 .container #s3-boxes .s3-box .s3-icon {
    height: 10rem;
    margin: 0 15px;
    text-align: center;
  }
  #section3 .container #s3-boxes .s3-box .s3-icon img {
    height: 100%;
  }
  #section3 .container #s3-boxes .s3-box .s3-b-bottom h4 {
    font-size: 1.5rem;
    padding: 1em;
    margin-top: 1em;
  }
  #section3 .container #s3-boxes .s3-box .s3-b-bottom .s3-b-text {
    height: 15rem;
    padding: 0 1em 2em;
    height: 10rem;
    font-size: 1.2rem;
  }
}

/*------------ section4 --------------*/
@media (max-width: 1200px) {
  #section4 .container #s4-boxes {
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
  }
  #section4 .container #s4-boxes .s4-box {
    padding: 3em 4em;
    margin: 2.3em;
  }
}

@media (max-width: 768px) {
  #section4 .container #s4-boxes .s4-box {
    width: 40%;
    padding: 2em 1em;
    margin: 1em;
  }
  #section4 .container #s4-boxes .s4-box .s4-number {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
  }
  #section4 .container #s4-boxes .s4-box .s4-number-1,
  #section4 .container #s4-boxes .s4-box .s4-number-2,
  #section4 .container #s4-boxes .s4-box .s4-number-3,
  #section4 .container #s4-boxes .s4-box .s4-number-4 {
    background-size: 17rem;
  }
  #section4 .container #s4-boxes .s4-box .s4-icon {
    margin: 0 auto;
    height: 8rem;
    width: 60%;
  }
  #section4 .container #s4-boxes .s4-box h4 {
    font-size: 1.8rem;
    margin: 1em 0;
  }
  #section4 .container #s4-boxes .s4-box p {
    font-size: 1.5rem;
    padding: 0 1em 1em;
    line-height: 1.7rem;
  }
}

@media (max-width: 480px) {
  #section4 {
    padding: 5rem 0;
    margin: 1em 0;
  }
  #section4 .container #s4-boxes .s4-box {
    width: 40%;
    padding: 1em 0.5em;
    margin: 0.5em;
  }
  #section4 .container #s4-boxes .s4-box .s4-number {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
  }
  #section4 .container #s4-boxes .s4-box .s4-number-1,
  #section4 .container #s4-boxes .s4-box .s4-number-2,
  #section4 .container #s4-boxes .s4-box .s4-number-3,
  #section4 .container #s4-boxes .s4-box .s4-number-4 {
    background-size: 17rem;
  }
  #section4 .container #s4-boxes .s4-box .s4-icon {
    margin: 0 auto;
    height: 8rem;
    width: 60%;
  }
  #section4 .container #s4-boxes .s4-box h4 {
    font-size: 1.5rem;
    margin: 1em 0;
  }
  #section4 .container #s4-boxes .s4-box p {
    font-size: 1.2rem;
    padding: 0 1em 1em;
    line-height: 1.7rem;
  }
}

/*------------ section5 --------------*/
@media (max-width: 1200px) {
  #section5 .container .s-title h2 {
    margin-bottom: 1.5em;
  }
  #section5 .container #s5-boxes {
    flex-wrap: wrap;
    justify-content: center;
  }
  #section5 .container #s5-boxes #s5-box {
    max-width: 40%;
    margin: 2em;
  }
}

@media (max-width: 768px) {
  #section5 .container #s5-boxes #s5-box {
    margin: 2em 1em;
  }
  #section5 .container #s5-boxes #s5-box .s5-b-top {
    font-size: 1.8rem;
  }
  #section5 .container #s5-boxes #s5-box h4 {
    font-size: 1.8rem;
  }
  #section5 .container #s5-boxes #s5-box .s5-b-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #section5 {
    padding: 5rem 0;
    margin: 1em 0;
  }
  #section5 .container #s5-boxes #s5-box {
    max-width: 40%;
  }
  #section5 .container #s5-boxes #s5-box .s5-b-top {
    font-size: 1.5rem;
  }
  #section5 .container #s5-boxes #s5-box .s5-icon {
    height: 8.4rem;
    width: 7rem;
  }
  #section5 .container #s5-boxes #s5-box .s5-icon img {
    height: 100%;
    width: 100%;
  }
  #section5 .container #s5-boxes #s5-box h4 {
    margin: 1em 0.5em 0.5em;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  #section5 .container #s5-boxes #s5-box h4:after {
    top: -15px;
  }
  #section5 .container #s5-boxes #s5-box .s5-b-text {
    font-size: 1.2rem;
    line-height: 2rem;
    margin: 0.5em 1.2em 2em;
  }
  #section5 .container #s5-button {
    margin-top: 2em;
  }
}

/*------------ section6 --------------*/
@media (max-width: 1200px) {
  #section6 .container #s6-boxes {
    flex-wrap: wrap;
    justify-content: center;
  }
  #section6 .container #s6-boxes .s6-box {
    max-width: 40%;
    margin: 2.2em;
  }
}

@media (max-width: 768px) {
  #section6 .container #s6-boxes .s6-box h4 {
    font-size: 1.8rem;
  }
  #section6 .container #s6-boxes .s6-box p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #section6 {
    padding: 5rem 0;
    margin: 1em 0 0;
  }
  #section6 .container #s6-boxes .s6-box {
    margin: 1em;
  }
  #section6 .container #s6-boxes .s6-box .s6-icon {
    padding: 1em;
  }
  #section6 .container #s6-boxes .s6-box .s6-icon img {
    height: 8.4rem;
    width: 7rem;
  }
  #section6 .container #s6-boxes .s6-box h4 {
    font-size: 1.5rem;
  }
  #section6 .container #s6-boxes .s6-box p {
    font-size: 1.2rem;
  }
}


/*------------ footer --------------*/
@media (max-width: 1200px) {
  footer .container #f-top .f-left {
    margin-right: 5em;
  }
  footer .container #f-top .f-right {
    display: block;
    max-width: 500px;
    width: 100%;
  }
  footer .container #f-top .f-right .f-r-left {
    margin-right: 0;
  }
  footer .container #f-top .f-right .f-r-left a {
    margin: 2em 0;
  }
  footer .container #f-top .f-right .f-r-right {
    margin-right: 0;
  }
  footer .container #f-top .f-right .f-r-right a {
    margin: 2em 0;
  }
}

@media (max-width: 768px) {
  footer .container #f-top .f-left {
    margin-right: 3em;
  }
  footer .container #f-top .f-left img {
    width: 25rem;
  }
  footer .container #f-top .f-right {
    max-width: 350px;
  }
  footer .container #f-top .f-right .f-r-left {
    font-size: 1.8rem;
  }
  footer .container #f-top .f-right .f-r-right {
    font-size: 1.8rem;
  }
  footer .container #f-bottom {
    font-size: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  footer .container #f-top .f-left {
    margin-right: 0.5em;
  }
  footer .container #f-top .f-left img {
    width: 16rem;
  }
  footer .container #f-top .f-right {
    margin-top: 1.7em;
    max-width: 200px;
  }
  footer .container #f-top .f-right .f-r-left {
    font-size: 1.5rem;
  }
  footer .container #f-top .f-right .f-r-left a {
    margin: 1em 0;
  }
  footer .container #f-top .f-right .f-r-right {
    font-size: 1.5rem;
  }
  footer .container #f-top .f-right .f-r-right a {
    margin: 1em 0;
  }
  footer .container #f-bottom {
    font-size: 1rem;
    padding: 2em 0;
  }
}
