@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  box-sizing: border-box;
  letter-spacing: 1px;
  color: #000000;
  overflow-x: hidden;
}

.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

img {
  display: block;
  width: 100%;
}

.bg {
  position: relative;
}

.con {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

input,
textarea {
  -webkit-appearance: none;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  opacity: 0.8;
}

.pc_nav {
  display: block;
}

.nav-wrapper {
  display: none;
}

header {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-sizing: border-box;
  padding: 0 5%;
  position: fixed;
  z-index: 1;
}
header .logo {
  /* max-width: 300px; */
}
header .logo img {
  height: 48px;
  width: auto;
}
header nav {
  width: 100%;
  /* max-width: 53%; */
  /* max-width: 63%; */
}
header nav ul {
  display: flex;
  /* justify-content: space-between; */
  justify-content: right;
  align-items: center;
}
header nav ul li {
  text-align: right;
}
header nav ul li a {
  font-size: 12px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  margin-left: 25px;
}

header nav ul li:first-child a {
  margin-left: 16px;
}

.fv .fv_sub br {
  display: none;
}

article {
  padding: 100px 0;
}

section {
  max-width: 1100px;
  display: block;
  margin: 0 auto;
}

h2 {
  margin-bottom: 40px;
}

h2 p {
  font-size: 14px;
  text-align: center;
  color: #225C89;
  font-weight: bold;
}

h2 .lh {
  line-height: 2;
}

h2 img {
  width: auto;
  height: 45px;
  margin: 24px auto;

}
h2 .line {
  max-width: 160px;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background: #000;
}

.text {
  font-size: 16px;
  text-align: center;
  line-height: 2.5;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 3%;
  top: 6.8%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 2px;
  right: 0;
  background-color: #000000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 10px;
}

.hamburger__line--3 {
  top: 19px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  box-sizing: border-box;
  padding: 75px 30px;
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%;
  /* 出てくるスライドメニューの幅 */
  height: 100vh;
  /* background: rgba(255, 255, 255, 0.8); */
  background: rgba(10, 30, 60, 0.8);
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}
.sp-nav ul {
  display: block;
}
.sp-nav ul li {
  margin-bottom: 35px;
}
.sp-nav ul li a {
  color: #fff;
}
.sp-nav ul li a p {
  font-size: min(2.5vw, 16px);
  margin-bottom: 10px;
  text-align: left;
}
.sp-nav ul li a img {
  width: auto;
  height: 23px;
}
.sp-nav ul li a img.wlines {
  width: auto;
  height: 44px;
}
.sp-nav small {
  position: absolute;
  bottom: 3%;
  font-size: min(2vw, 14px);
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}
.open .hamburger__line {
  background-color: #fff;
}
  

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}


/* 
fv
=================================== */
.fv {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url("../img/fv_bg.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.fv h1 {
  /* width: 100%; */
  /* max-width: 1176px; */
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 5%;
}
.fv h1 img {
  width: 602px;
}
.fv .fv_sub {
  top: auto;
  bottom: 10%;
  margin: 0 auto;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: start;
  padding-top: 20px;
  /* opacity: 0.8; */
}
.fv .fv_scroll {
  width: auto;
  bottom: 0;
  left: auto;
  right: 5%;
  height: 220px;
  position: absolute;
}

/* 
art1
=================================== */

.art1 {
  background-image: url(../img/art1_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.art1 .art1_ul {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.art1 .art1_ul li {
  max-width: 340px;
}

/* 
art2
=================================== */

.art2 {
  background: #F4F8F9;
}
.art2 section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.art2 section .flex_l {
  max-width: 400px;
}
.art2 section .flex_l h2 p {
  text-align: left;
}
.art2 section .flex_l h2 img {
  margin-left: 0;
  height: 86px;
}
.art2 section .flex_l h2 .line {
  max-width: 160px;
  width: 100%;
  height: 1px;
  margin-left: 0;
  background: #000;
}
.art2 section .flex_l .text {
  text-align: left;
}
.art2 section .flex_r img {
  max-width: 610px;
}

/* 
art3
=================================== */

.art3 section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.art3 section .flex_l {
  max-width: 400px;
}
.art3 section .flex_l h2 p {
  text-align: left;
  /* color: #fff; */
}
.art3 section .flex_l h2 img {
  margin-left: 0;
}
.art3 section .flex_l h2 .line {
  max-width: 160px;
  width: 100%;
  height: 1px;
  margin-left: 0;
  /* background: #fff; */
}
.art3 section .flex_l .text {
  text-align: left;
  /* color: #fff; */
}
.art3 section .flex_r img {
  max-width: 610px;
}

/* 
art4
=================================== */

.art4 {
  background: #F4F8F9;
}
.art4 section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.art4 section .flex_l {
  max-width: 400px;
}
.art4 section .flex_l h2 p {
  text-align: left;
  /* color: #fff; */
}
.art4 section .flex_l h2 img {
  margin-left: 0;
  height: 86px;
}
.art4 section .flex_l h2 .line {
  max-width: 160px;
  width: 100%;
  height: 1px;
  margin-left: 0;
  /* background: #fff; */
}
.art4 section .flex_l .text {
  text-align: left;
  /* color: #fff; */
}
.art4 section .flex_r img {
  max-width: 610px;
}

/* 
art5
=================================== */

.art5 {
  background-image: linear-gradient(136deg, rgba(26, 105, 168, 1), rgba(33, 92, 137, 1) 65%, rgba(11, 53, 104, 1));
}
.art5 section {
  box-sizing: border-box; 
  padding: 80px;
  border-radius: 40px;
  background: #fff;
}
.art5 section dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 2.5;
}
.art5 section dl dt {
  width: 15%;
  font-weight: bold;
  border-bottom: 1px solid #1869A8;
  padding: 25px 0;
}
.art5 section dl dd {
  width: 70%;
  border-bottom: 1px solid #DDDDDD;
  padding: 25px 0;
  padding-left: 15%;
  color: #000 !important;
}

/* 
art6
=================================== */

.art6 {
  background: #F2F2F2;
}
.art6 .lead-form {
  text-align: center;
  font-size: 20px;
}
.art6 form {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px 80px;
}
.art6 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.art6 .label {
  font-weight: bold;
}
.art6 .inputs {
  display: block;
  width: 100%;
  max-width: 70%;
  height: 50px;
  background: #fff;
  border: none;
  font-size: min(3.6vw, 16px);
  box-sizing: border-box;
  font-size: 16px;
}
.art6 input[type=text],
.art6 input[type=email] {
  border: none;
  padding: 10px;
}
.art6 textarea {
  border: none;
  padding: 10px;
  height: 160px;
}
.art6 textarea.inputs {
  height: 200px;
}
.art6 .btn-area {
  text-align: center;
}
.art6 input[type=submit] {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 70px;
  background: #225C89;
  border: 2px solid #225C89;
  border-radius: 50px;
  margin: 0 auto;
  font-size: 16px;
  border: none;
  letter-spacing: 1px;
  font-weight: bold;
}
.art6 input[type=submit]:hover {
  background: #fff;
  color: #0080D9;
  border: 2px solid #0080D9;
  transition: all .1s;
}
.art6 input[type=tel i] {
  padding: 10px !important;
}
.art6 .item_txt {
  align-items: flex-start;
  margin-bottom: 80px;
}

/* 
footer
=================================== */

footer {
  color: #fff;
  width: 100%;
  background: #152429;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: 2;
  padding: 100px 0 60px;
}
footer .inner_ft1 {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}
footer .inner_ft1 .flex_ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
}
footer .inner_ft1 .flex_ft .logo img {
  width: 33%;
}
footer .inner_ft1 .flex_ft .logo img {
  width: 60%;
}
footer .inner_ft1 .ft_p2 {
  margin-top: auto;
}
footer small {
  font-family: 'Lato', sans-serif;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 14px;
}

/* 
1380px以下
=================================== */

@media screen and (max-width: 1380px) {
  header nav {
    width: 100%;
    /* max-width: 60%; */
    /* max-width: 70%; */
  }
  .fv h1 img {
    max-width: 675px;
    /* margin: 0 auto; */
  }
}


/* 
1220px以下
=================================== */

@media screen and (max-width: 1220px) {
    header {
    position: fixed;
    top: 0;
    z-index: 1;
  }

  h2 p {
    font-size: 1.4vw;
  }
  h2 img {
    margin: 15px auto;
  }
  .text {
    font-size: 1.6vw;
  }
  article {
    padding: 10% 0;
  }
  .fv {
    margin-top: 65px;
  }
  .fv h1 img {
    width: 70%;
  }
  .fv .fv_sub {
    font-size: 2.25vw;
  }
  .art1 .art1_ul li {
    max-width: 32%;
  }
  .art2 section .flex_l {
    max-width: 47%;
  }
  .art2 section .flex_l h2 .line {
    width: 50% !important;
  }
  .art2 section .flex_r {
    max-width: 47%;
  }
  .art3 section .flex_l {
    max-width: 47%;
  }
  .art3 section .flex_l h2 .line {
    width: 50% !important;
  }
  .art3 section .flex_r {
    max-width: 47%;
  }
  .art4 section .flex_l {
    max-width: 47%;
  }
  .art4 section .flex_l h2 img {
    /* width: 32vw; */
    height: 10vw;
  }
  .art4 section .flex_l h2 .line {
    width: 50% !important;
  }
  .art4 section .flex_r {
    max-width: 47%;
  }

  .art5 section {
    padding: 8%;
  }
  .art5 section dl {
    font-size: 1.6vw;
  }
  .art5 section h2 img {
    /* width: 24vw; */
  }
  .art5 section h2 .line {
    width: 50% !important;
  }
  .art6 section form {
    padding: 0
  }
  .art6 section h2 img {
    /* width: 24vw; */
  }
  .art6 section h2 .line {
    width: 50% !important;
  }
  .art6 input[type=text],
  .art6 .art6 input[type=email] {
    font-size: 1.4vw;
  }
  .art6 .label {
    font-size: 1.6vw;
  }
  header {
    padding: 0 3%;
  }
  section {
    max-width: 94%;
  }
  footer {
    padding: 60px 0 30px;
  }
  footer .inner_ft1 {
    max-width: 94%;
  }
  footer .inner_ft1 .flex_ft {
    display: block;
  }
  footer .inner_ft1 .flex_ft .logo img {
    width: 30%;
  }
  footer .inner_ft1 .flex_ft .ft_p1 {
    margin-top: 4%;
  }
  footer .inner_ft1 .flex_ft .ft_p2 {
    margin-top: 2%;
  }
}

/* 
960px以下
=================================== */

@media screen and (max-width: 960px) {
  /* .hamburger {
    top: 45px;
  } */
  .hamburger {
    top: 33px;
  }
  .pc_nav {
    display: none;
  }
  .nav-wrapper {
    display: block;
  }
}

/* 
768px以下
=================================== */

@media screen and (max-width: 768px) {
  header .logo img {
    height: 40px;
  }
  .hamburger {
    top: 20px;
  }
  /*ハンバーガーがクリックされたら右からスライド*/
  .open .sp-nav {
    right: 0;
  }
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .fv .fv_sub {
    font-size: 4vw;
  }
  .fv .fv_sub br {
    display: block;
  }
  .fv .fv_scroll {
    width: auto;
    /* top: 36%; */
    bottom: 0;
    left: auto;
    right: 5%;
    height: 30%;
  }
  .fv h1 {
    width: 100%;
    /* max-width: 1176px; */
    top: 33%;
    left: 50%;
    transform: translate(-50%, 0%);
    padding: 0;
  }
  .fv_sp {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url("../img/fv_bg_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  h2 p {
    font-size: 3vw;
  }
  h2 img {
    /* width: 40vw; */
    /* height: auto; */
    margin: 15px auto;
  }
  .text {
    font-size: 4.2vw;
    text-align: left;
  }
  article {
    padding: 17% 0;
  }
  header {
    padding: 0 5%;
    height: 65px;
  }
  header nav {
    max-width: 100%;
  }
  header .logo {
    width: 40%;
  }
  section {
    max-width: 90%;
  }
  .fv h1 img {
    width: 75%;
    padding-left: 5%;
  }
  .fv .fv_sub {
    font-size: 4vw;
    padding-left: 5%;
    padding-top: 3%;
    line-height: 2;
  }
  .art1 {
    background-image: url(../img/art1_bg_sp.png);
  }
  .art1 h2 p {
    text-align: center;
  }
  .art1 h2 img {
    /* width: 45vw; */
    height: 10vw;
  }
  .art1 .art1_ul li {
    width: 100%;
    max-width: 100%;
  }
  .art1 .art1_ul li:nth-child(2),
  .art1 .art1_ul li:last-child {
    display: none;
  }
  .art2 section {
    display: block;
  }
  .art2 section .flex_l {
    max-width: 100%;
  }
  .art2 section .flex_l h2 p {
    text-align: center;
  }
  .art2 section .flex_l h2 img {
    /* width: 43vw; */
    height: 20vw;
    margin: 15px auto;
  }
  .art2 section .flex_l h2 .line {
    max-width: 35%;
    width: 35% !important;
    margin: 0 auto;
  }
  .art2 section .flex_r {
    max-width: 100%;
    margin-top: 40px;
  }
  .art2 section .flex_r img {
    width: 100%;
    max-width: 100%;
  }
  .art3 section {
    display: block;
  }
  .art3 section .flex_l {
    max-width: 100%;
  }
  .art3 section .flex_l h2 p {
    text-align: center;
  }
  .art3 section .flex_l h2 img {
    /* width: 49vw; */
    height: 10vw;
    margin: 15px auto;
  }
  .art3 section .flex_l h2 .line {
    max-width: 35%;
    width: 35% !important;
    margin: 0 auto;
  }
  .art3 section .flex_r {
    max-width: 100%;
    margin-top: 40px;
  }
  .art3 section .flex_r img {
    width: 100%;
    max-width: 100%;
  }
  
  .art4 section {
    display: block;
  }
  .art4 section .flex_l {
    max-width: 100%;
  }
  .art4 section .flex_l h2 p {
    text-align: center;
  }
  .art4 section .flex_l h2 img {
    height: 17vw;
    margin: 15px auto;
  }
  .art4 section .flex_l h2 .line {
    max-width: 35%;
    width: 35% !important;
    margin: 0 auto;
  }
  .art4 section .flex_r {
    max-width: 100%;
    margin-top: 40px;
  }
  .art4 section .flex_r img {
    width: 100%;
    max-width: 100%;
  }

  .art5 section {
    padding: 11% 8%;
  }
  .art5 section dl {
    display: block;
    font-size: 4vw;
  }
  .art5 section dl dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  .art5 section dl dt:first-of-type {
    padding-top: 0;
  }
  .art5 section dl dd {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
  .art5 section h2 img {
    height: 10vw;
  }
  .art5 section h2 .line {
    max-width: 35%;
    width: 35% !important;
  }
  .art6 section form {
    padding: 0;
  }
  .art6 section form input:focus:valid ~ span.p_required::after {
    content: "必須";
    color: white;
    background-color: green;
    border-radius: 4px;
    font-weight: bold;
    padding: 4px 12px;
    margin-left: 8px;
    vertical-align: top;
  }
  .art6 section h2 img {
    height: 10vw;
  }
  .art6 section h2 .line {
    max-width: 35%;
    width: 35% !important;
  }
  .art6 input[type=text],
  .art6 .art6 input[type=email] {
    font-size: min(3.6vw, 16px);
  }
  .art6 .label {
    font-size: 3.6vw;
  }
  .art6 .item {
    display: block;
    margin-bottom: 40px;
  }
  .art6 .inputs {
    margin-top: 6%;
    max-width: 100%;
    font-size: min(3.6vw, 16px);
  }
  .art6 input[type=submit] {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 100%;
    height: 70px;
    background: #225C89;
    border-radius: 35px;
    margin: 0 auto;
    font-size: 3.6vw;
    border: none;
    letter-spacing: 2px;
  }
  footer .inner_ft1 {
    max-width: 94%;
  }
  footer .inner_ft1 .flex_ft {
    display: block;
  }
  footer .inner_ft1 .flex_ft .logo img {
    width: 50%;
  }
  footer .inner_ft1 .flex_ft .ft_p1 {
    margin-top: 6%;
  }
  footer .inner_ft1 .flex_ft .ft_p2 {
    margin-top: 4%;
  }
}
.confirm h4 {
  margin-bottom: 60px;
}
.confirm .formTable {
  border-collapse: separate;
  border-spacing: 10px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.confirm .formTable tr th {
  text-align: left;
  font-weight: bold;
}
.confirm .formTable td {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 30px;
  background: #F7F7F7;
  border: none;
  font-size: min(3.6vw, 16px);
  padding: 10px;
  font-size: min(3.6vw, 16px);
  line-height: 30px;
}
.confirm .con_conf {
  margin-top: 60px;
}
.confirm .con_conf .inputs {
  padding: 10px;
  font-size: min(3.6vw, 16px);
  line-height: 30px;
}
.confirm .flex_conf {
  display: flex;
}
.confirm .flex_conf .button {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #666;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
}
.confirm .flex_conf .submit {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #225C89;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
}
@media screen and (max-width: 1100px) {
  .confirm .flex_conf {
    display: block;
  }
  .confirm .flex_conf .button {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #666;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    margin-bottom: 30px;
    max-height: 70px;
    font-weight: bold;
  }
  .confirm .flex_conf .submit {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #225C89;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    max-height: 70px;
  }
}
.confirm .error_messe {
  text-align: center;
  margin-bottom: 30px;
}
.confirm .submit {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #225C89;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
}
@media screen and (max-width: 1100px) {
  .confirm main {
    margin-top: 120px;
  }
  .confirm .submit {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #225C89;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    max-height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .confirm .formTable th {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .confirm .formTable th,
  .confirm .formTable td {
    width: 100%;
    display: block;
  }
  .confirm .text {
    font-size: min(4.2vw, 16px);
    text-align: center;
  }
  .confirm main {
    margin-top: 65px;
  }
}

.thanks {
  /*
  position: relative;
  footer {
      position: absolute;
      bottom: 0;
  }*/
}
.thanks .p_thanks {
  font-size: min(4.2vw, 16px);
  text-align: center;
}
.thanks .btn_thanks {
  display: flex;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #225C89;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
  margin-top: 60px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .thanks main {
    margin-top: 120px;
  }
  .thanks .btn_thanks {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #225C89;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    max-height: 70px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .thanks main {
    margin-top: 65px;
  }
}/*# sourceMappingURL=style.css.map */