@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 2.25;
  }
}

.inner {
  max-width: 1160px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

header {
  height: 70px;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #fff;
  -webkit-box-shadow: 2px 2px 2px #f1f1f1;
          box-shadow: 2px 2px 2px #f1f1f1;
}
@media screen and (max-width: 767px) {
  header {
    position: relative;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 205px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 125px;
    z-index: 0;
  }
}
.header__logo a img {
  width: 100%;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
.header__nav ul li a {
  padding: 0 10px;
  border-left: 1px solid #000;
}

.logo {
  font-size: 1.25em;
  font-weight: bold;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: fixed;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  right: 10px;
  top: 10px;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer__button > span:first-child {
  -webkit-transform: translate(-50%, calc(-50% - 0.5rem));
          transform: translate(-50%, calc(-50% - 0.5rem));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.drawer__button > span:last-child {
  -webkit-transform: translate(-50%, calc(-50% + 0.5rem));
          transform: translate(-50%, calc(-50% + 0.5rem));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active > span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: white;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.drawer__nav.active .drawer__nav__inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 10000000;
  position: relative;
}

.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}

.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

.header__nav ul li a:hover {
  opacity: 0.7;
}

/*==================================
fv
===================================*/
.fv {
  padding-top: 50.1388888889vw;
  background: url(/img/fv.png) center center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv {
    background: #fff;
    padding-top: 0;
  }
}

.fv__contents {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  padding: 10px 0 20px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__contents {
    position: static;
    background: transparent;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    color: #000;
    padding: 0px 0 20px 0;
  }
}

.fv__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 23px;
    line-height: 1.3;
    margin-top: 0;
  }
}
.fv__title span {
  font-size: 100px;
  color: #ffff00;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fv__title span {
    font-size: 46px;
    color: #c1272d;
  }
}

.fv__text {
  font-size: 25px;
  font-weight: 700;
  line-height: 2.8;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 15px;
  }
}

/*==================================
service
===================================*/
.service {
  padding-bottom: 130px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .service {
    padding-bottom: 45px;
  }
}

.section__title-en {
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  font-weight: 500;
  color: #005aa4;
  line-height: 1.4285714286;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section__title-en {
    font-size: 46px;
    line-height: 1.4130434783;
  }
}

.section__title-ja {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section__title-ja {
    font-size: 16px;
    line-height: 1.6;
  }
}

.service__text1 {
  text-align: center;
  font-weight: 700;
  margin-top: 50px;
  line-height: 1.4583333333;
  font-size: 48px;
}
.service__text1 span {
  color: #c1272d;
}
@media screen and (max-width: 767px) {
  .service__text1 {
    font-size: 20px;
    margin-top: 10px;
  }
}

.service__problem-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .service__problem-wrapper {
    display: block;
    margin-top: 20px;
  }
}

.service__problem-left {
  margin: auto 0;
}
.service__problem-left p {
  background: #000;
  color: #fff;
  font-size: 34px;
  padding: 20px 30px;
  position: relative;
  line-height: 1.2058823529;
}
@media screen and (max-width: 767px) {
  .service__problem-left p {
    font-size: 20px;
    padding: 15px 20px;
    text-align: center;
  }
}
.service__problem-left p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #000000;
  border-right: 0;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service__problem-left p::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 10px solid #000000;
    border-bottom: 0;
    top: auto;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service__problem-right {
  line-height: 1.95;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .service__problem-right {
    font-size: 16px;
    line-height: 1.375;
    margin-top: 30px;
  }
}

.service__problem-text {
  padding-left: 35px;
  position: relative;
}
.service__problem-text::before {
  position: absolute;
  content: "";
  background: url(/img/check.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service__problem-text::before {
    top: 15px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .service__problem-text {
    margin-top: 15px;
    padding-left: 30px;
  }
}

.service__text2 {
  font-size: 48px;
  text-align: center;
  font-weight: 700;
  margin-top: 100px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .service__text2 {
    font-size: 24px;
    margin-top: 30px;
  }
}
.service__text2 .yellow {
  font-size: 87px;
  color: #ffe500;
  background: #005aa4;
  display: inline-block;
  margin-right: 20px;
  line-height: 1;
  padding: 13px 20px 18px 20px;
}
@media screen and (max-width: 767px) {
  .service__text2 .yellow {
    font-size: 46px;
    margin-right: 10px;
    padding: 10px 11px 18px 11px;
  }
}
.service__text2 .yellow2 {
  margin-right: 0;
}
.service__text2 .red {
  font-size: 76px;
  color: #c1272d;
}
@media screen and (max-width: 767px) {
  .service__text2 .red {
    font-size: 46px;
    line-height: 1.5;
  }
}
.service__text2 .span1 {
  font-size: 76px;
}
@media screen and (max-width: 767px) {
  .service__text2 .span1 {
    font-size: 46px;
    line-height: 1.2;
  }
}

.service__text3 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .service__text3 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.4;
  }
}

.service__flow {
  margin-top: 40px;
}

.service__flow-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background: #005aa4;
  text-align: center;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .service__flow-title {
    font-size: 20px;
    padding: 3px 0;
  }
}

.service__flow-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__flow-wrapper {
    display: block;
  }
}

.service__flow-item {
  width: 48%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .service__flow-item {
    width: 100%;
  }
}
.service__flow-item img {
  width: 100%;
}

.service__flow-text {
  margin-top: 25px;
  padding-left: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__flow-text {
    line-height: 1.5;
    margin-top: 15px;
  }
}
.service__flow-text::before {
  position: absolute;
  content: "1";
  color: #fff;
  background: #005aa4;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin: auto;
  text-align: center;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service__flow-text::before {
    top: 15px;
  }
}

.service__flow-text2::before {
  position: absolute;
  content: "2";
}

.service__flow-text3::before {
  position: absolute;
  content: "3";
}

.service__flow-text4::before {
  position: absolute;
  content: "4";
}

.service__text4 {
  margin-top: 60px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #000;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .service__text4 {
    font-size: 20px;
    text-align: left;
    padding: 13px;
    line-height: 1.7;
  }
}

.service__merit-title {
  margin-top: 100px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__merit-title {
    font-size: 30px;
    margin-top: 40px;
    line-height: 1.3333333333;
  }
}

.merit__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 0;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .merit__wrapper {
    display: block;
    margin-top: 0;
  }
}

.service__merit-item {
  width: 31%;
  border: 5px solid #999999;
  border-radius: 20px;
  padding: 15px 15px 30px 15px;
}
@media screen and (max-width: 767px) {
  .service__merit-item {
    width: 100%;
    margin-top: 20px;
  }
}

.merit__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: calc(100% - 84px);
}

.merit__item-img {
  margin: auto;
}
.merit__item-img img {
  width: 100%;
}

.merit__item-img1 {
  width: 137px;
}

.merit__item-img2 {
  width: 154px;
}

.merit__item-img3 {
  width: 155px;
}

.merit__item-img4 {
  width: 178px;
}

.merit__item-img5 {
  width: 222px;
}

.merit__item-img6 {
  width: 159px;
}

.merit__number {
  font-family: "Oswald", sans-serif;
  color: #005aa4;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
}
.merit__number span {
  display: inline-block;
  font-size: 58px;
}

.service__merit-text {
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}

/*==================================
SDGs
===================================*/
.sdgs {
  padding: 70px 0;
  background: #eeeeee;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sdgs {
    padding: 50px 0;
  }
}

.sdgs__title1 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .sdgs__title1 {
    font-size: 30px;
    line-height: 1.3333333333;
  }
}

.sdgs__text1 {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sdgs__text1 {
    text-align: left;
    line-height: 1.5;
  }
}

.sdgs__title2 {
  margin-top: 50px;
  font-weight: 700;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .sdgs__title2 {
    margin-top: 30px;
  }
}

.sdgs__text2 {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .sdgs__text2 {
    text-align: left;
    line-height: 1.5;
  }
}

.sdgs__logo {
  width: 355px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .sdgs__logo {
    margin-top: 15px;
    width: 100%;
  }
}

/*==================================
FAQ
===================================*/
.faq {
  padding-top: 150px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.qa__wrapper {
  margin: auto;
  margin-top: 90px;
  max-width: 922px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .qa__wrapper {
    margin-top: 0;
  }
}

.qa__item {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .qa__item {
    margin-top: 20px;
  }
}

.qa__q {
  font-size: 20px;
  line-height: 1.6;
  padding-left: 50px;
  position: relative;
  font-weight: 700;
}
.qa__q::before {
  position: absolute;
  content: "Q";
  font-size: 22px;
  width: 32px;
  height: 32px;
  line-height: 1.2;
  color: #fff;
  background: #c1272d;
  left: 0;
  font-weight: 700;
  text-align: center;
}

.qa__a {
  padding-left: 50px;
  position: relative;
  margin-top: 10px;
  line-height: 2;
}
.qa__a::before {
  position: absolute;
  content: "A";
  font-size: 22px;
  width: 32px;
  height: 32px;
  line-height: 1.2;
  color: #fff;
  background: #005aa4;
  left: 0;
  font-weight: 700;
  text-align: center;
}

/*==================================
price
===================================*/
.price {
  padding-top: 60px;
  padding-bottom: 70px;
  background: #eeeeee;
}
@media screen and (max-width: 767px) {
  .price {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.price__contents {
  margin-top: 30px;
}

.price__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .price__top {
    display: block;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    padding-top: 10px;
  }
}

.price__top-left {
  font-size: 40px;
  font-weight: 700;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .price__top-left {
    font-size: 22px;
  }
}

.price__top-right {
  width: calc(100% - 300px);
}
@media screen and (max-width: 767px) {
  .price__top-right {
    width: 100%;
  }
}

.price__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .price__bottom {
    display: block;
    margin-top: 0;
  }
}

.price__bottom-item {
  border-left: 1px solid #000;
  padding-left: 15px;
  width: 33.3333333333%;
}
.price__bottom-item:first-child {
  border-left: none;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .price__bottom-item {
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    padding-top: 10px;
    width: 100%;
  }
}

.price__bottom-text {
  font-size: 22px;
  font-weight: 700;
}

/*==============
form
===============*/
.contact {
  padding-top: 140px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

form {
  max-width: 720px;
  width: 100%;
  margin: auto;
  margin-top: 30px;
}

.contact__red {
  font-weight: 700;
  color: #c1272d;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .row {
    display: block;
    margin-top: 0px;
  }
}
.row label {
  width: 30%;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .row label {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .row label {
    font-size: 14px;
    line-height: 1;
  }
}
.row .input-wrapper {
  width: 70% !important;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .row .input-wrapper {
    width: 100% !important;
  }
}
.row input,
.row textarea {
  width: 100% !important;
  padding: 5px;
}
.row .required {
  display: inline-block;
  position: relative;
}
.row .required::after {
  position: absolute;
  content: "※";
  color: #c1272d;
  font-size: 14px;
  font-weight: 700;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .row .required::after {
    right: -20px;
  }
}

.checkbox {
  width: 70%;
  margin-top: 20px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .checkbox {
    width: 100%;
    font-size: 13px;
    margin-top: 0;
  }
}

input[type=submit] {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

div.mfp_buttons {
  width: 70%;
  margin-left: auto;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  div.mfp_buttons {
    width: 100%;
    margin-left: 0;
  }
}
div.mfp_buttons button {
  padding: 5px 20px;
  background: #449ce4;
  color: #fff;
  border-radius: 5px;
  text-shadow: none !important;
}
@media screen and (max-width: 767px) {
  div.mfp_buttons button {
    padding: 3px 20px;
  }
}

.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
  color: #449ce4;
  border: 1px solid #449ce4;
}

.thanks-body {
  background: #fff;
}

.thanks-wrapper {
  margin-top: 100px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .thanks-wrapper {
    max-width: 300px;
  }
}
.thanks-wrapper a {
  color: #000;
  position: relative;
  margin-top: 20px;
  display: inline-block;
}
.thanks-wrapper a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../image/next-button.png);
  background-size: contain;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.thanks-wrapper a:hover {
  opacity: 0.8;
}

form#mailformpro label {
  white-space: normal !important;
}
@media screen and (max-width: 767px) {
  form#mailformpro label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

form#mailformpro label.mfp_not_checked {
  border: none !important;
}

.contact__text {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__text {
    line-height: 1.4;
  }
}

.contact__text1 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .contact__text1 {
    margin-top: 50px;
    line-height: 1.4;
  }
}

.contact__number {
  font-size: 80px;
  font-weight: 700;
  text-align: center;
  font-family: "Oswald", sans-serif;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-left: 65px;
}
.contact__number a {
  color: #005aa4;
}
.contact__number::before {
  position: absolute;
  content: "";
  width: 53px;
  height: 70px;
  background: url(/img/tell.png) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__number::before {
    width: 30px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact__number {
    font-size: 44px;
    padding-left: 35px;
    line-height: 1.7115384615;
  }
}

.footer__copy {
  font-size: 16px;
  font-weight: 700;
  background: #005aa4;
  color: #fff;
  text-align: center;
  padding: 8px 0 10px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    padding: 0 0 2px 0;
    margin-bottom: 20px;
  }
}

div.mfp_buttons button {
  background: #005aa4;
}

/*==============
thanks
===============*/
.main__thanks {
  position: relative;
  height: 100vh;
}

.thanks__contents {
  position: absolute;
  content: "";
  top: 35%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding: 100px 50px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .thanks__contents {
    padding: 50px 10px;
    width: 80%;
  }
}

.thanks__p2 {
  margin-top: 10px;
  text-align: center;
}
.thanks__p2 a {
  text-decoration: underline;
}
.thanks__p2 a:hover {
  opacity: 0.8;
  color: #005aa4;
}