@charset "UTF-8";
* {
  vertical-align: baseline;
  font-family: 'Noto Sans JP', sans-serif;
}

h1 {
  font-size: 200%;
}

h2 {
  font-size: 150%;
  font-family: 'Noto Serif JP', serif;
}

h3 {
  font-size: 125%;
  font-family: 'Noto Serif JP', serif;
}

p {
  font-size: 100%;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
}

a {
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

a:hover {
  color: #ee2828;
}

li {
  list-style: none;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: fixed;
  right: 20px;
  top: 12px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

@media screen and (min-width: 768px) {
  .hamburger {
    top: 18px;
  }
}

.hamburger__line {
  position: absolute;
  width: 40px;
  height: 3px;
  right: 0;
  background-color: #868686;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .hamburger__line {
    width: 60px;
    height: 4px;
  }
}

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

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

@media screen and (min-width: 768px) {
  .hamburger__line--2 {
    top: 18px;
  }
}

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

@media screen and (min-width: 768px) {
  .hamburger__line--3 {
    top: 36px;
  }
}

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

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

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

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%;
  /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #1A6B9A;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}

@media screen and (min-width: 1025px) {
  .sp-nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    background-color: rgba(26, 107, 154, 0);
  }
}

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

/* 
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

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

.top {
  background-color: #1A6B9A;
}

.top__navwrap {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100vw;
  height: 60px;
}

@media screen and (min-width: 768px) {
  .top__navwrap {
    height: 80px;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap {
    height: 80px;
  }
  .top__navwrap .pc_non {
    display: none;
  }
}

.top__navwrap h1 {
  width: 230px;
  margin: 0.5em;
}

@media screen and (min-width: 768px) {
  .top__navwrap h1 {
    width: 300px;
    margin: 1.5rem 1rem;
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap h1 {
    margin: 1.5rem 1rem;
    width: 350px;
  }
}

.top__navwrap h1 img {
  width: 100%;
}

.top__navwrap nav ul {
  margin-top: 30%;
}

@media screen and (min-width: 1025px) {
  .top__navwrap nav ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.top__navwrap nav ul li {
  margin: 2rem 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media screen and (min-width: 768px) {
  .top__navwrap nav ul li {
    margin: 4rem 2.5rem;
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap nav ul li {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top__navwrap nav ul li::after {
    content: '';
    display: block;
    width: 2px;
    height: 32px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    bottom: -26px;
  }
  .top__navwrap nav ul li:last-child::after {
    display: none;
  }
}

.top__navwrap nav ul li a {
  font-size: 120%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media screen and (min-width: 768px) {
  .top__navwrap nav ul li a {
    font-size: 200%;
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap nav ul li a {
    font-size: 150%;
    padding: 1.4rem 1rem;
  }
}

.top__navwrap nav ul li a:hover {
  background-color: #f0f3ff;
  color: #000;
}

.top__navwrap_second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100vw;
  height: 60px;
}

@media screen and (min-width: 768px) {
  .top__navwrap_second {
    height: 80px;
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap_second {
    height: 80px;
  }
  .top__navwrap_second .pc_non {
    display: none;
  }
}

.top__navwrap_second h1 {
  width: 230px;
  margin: 0.5em;
}

@media screen and (min-width: 768px) {
  .top__navwrap_second h1 {
    width: 300px;
    margin: 1.5rem 1rem;
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap_second h1 {
    margin: 1.5rem 1rem;
    width: 350px;
  }
}

.top__navwrap_second h1 img {
  width: 100%;
}

.top__navwrap_second nav ul {
  margin-top: 30%;
}

@media screen and (min-width: 1025px) {
  .top__navwrap_second nav ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.top__navwrap_second nav ul li {
  margin: 2rem 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media screen and (min-width: 768px) {
  .top__navwrap_second nav ul li {
    margin: 4rem 2.5rem;
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap_second nav ul li {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top__navwrap_second nav ul li::after {
    content: '';
    display: block;
    width: 2px;
    height: 32px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    bottom: -26px;
  }
  .top__navwrap_second nav ul li:last-child::after {
    display: none;
  }
}

.top__navwrap_second nav ul li a {
  font-size: 120%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media screen and (min-width: 768px) {
  .top__navwrap_second nav ul li a {
    font-size: 200%;
  }
}

@media screen and (min-width: 1025px) {
  .top__navwrap_second nav ul li a {
    font-size: 150%;
    padding: 1.4rem 1rem;
  }
}

.top__navwrap_second nav ul li a:hover {
  background-color: #f0f3ff;
  color: #000;
}

.top__img {
  position: relative;
  z-index: 1;
  background-color: rgba(27, 68, 148, 0);
}

.top__img img {
  width: 120%;
}

.said_btn {
  position: fixed;
  top: 40vh;
  right: 0;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .said_btn {
    top: 45vh;
  }
}

.said_btn .info {
  display: inline-block;
  position: relative;
  z-index: 20;
}

@media screen and (min-width: 768px) {
  .said_btn .info {
    top: 45%;
  }
  .said_btn .info a[href^="tel:"] {
    pointer-events: none;
  }
}

.said_btn .info img {
  margin: 1rem 0 0 0;
}

.said_btn #top_back {
  position: relative;
  z-index: -1;
  margin: 1rem 0 0 0;
  opacity: 0.0;
  -webkit-transition: ease .3s opacity;
  transition: ease .3s opacity;
}

.said_btn #top_back.view {
  opacity: 1;
}

.about {
  background-image: url(../img/about.png);
  background-size: cover;
  color: #fff;
  line-height: 2.5rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .about {
    margin-top: -1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1025px) {
  .about {
    margin-top: -1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 768px) {
  .about__wrap {
    width: 80%;
  }
}

.about h2 {
  padding: 2.5rem 0 0 2rem;
  margin: 0 -1rem;
  font-size: 200%;
}

@media screen and (min-width: 768px) {
  .about h2 {
    font-size: 180%;
    margin: 0 0 0 30%;
    padding: 1rem 0 0;
  }
}

@media screen and (min-width: 1025px) {
  .about h2 {
    font-size: 250%;
    margin: 2rem 0 0 40%;
    padding: 1rem 0 0;
  }
}

.about h2::after {
  content: '';
  display: block;
  width: 250px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  margin: 1.5rem -1rem 0;
}

@media screen and (min-width: 768px) {
  .about h2::after {
    position: relative;
    top: -2.8rem;
    left: -100%;
  }
}

@media screen and (min-width: 1025px) {
  .about h2::after {
    position: relative;
    top: -2.8rem;
    left: -75%;
  }
}

.about h3 {
  font-size: 150%;
  margin: 1rem -1rem;
  padding: .5rem 2.5rem;
}

@media screen and (min-width: 768px) {
  .about h3 {
    font-size: 110%;
    margin: -1.5rem 0 0 2rem;
    padding: .5rem 2.5rem .5rem 0;
  }
}

@media screen and (min-width: 1025px) {
  .about h3 {
    font-size: 180%;
    margin: 1rem 0 0 25%;
    padding: 0.5rem 2.5rem 0.5rem 0;
  }
}

.about p {
  margin-bottom: 2.5rem;
  padding: 0 2.5rem;
}

@media screen and (min-width: 768px) {
  .about p {
    font-size: 90%;
    margin: 0 1rem 0 2rem;
    padding: 0;
    line-height: 1.6rem;
  }
}

@media screen and (min-width: 1025px) {
  .about p {
    font-size: 125%;
    margin: 0 1rem 0 25%;
    line-height: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .about__img {
    position: relative;
    right: 0;
    width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .about__img {
    right: -10%;
  }
}

.content {
  margin: 2rem 0;
  padding: 2rem 0;
  overflow: hidden;
  background-image: url(../img/bgi_sp.png);
  background-size: cover;
}

.content h2 {
  color: #4B77A3;
  font-size: 200%;
  margin-bottom: 2rem;
  margin-left: .3rem;
  padding: 1rem;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 1025px) {
  .content h2 {
    font-size: 250%;
  }
}

.content h2::before {
  content: '';
  display: block;
  width: 230px;
  height: 4px;
  background-color: #4B77A3;
  border-radius: 2px;
  margin: 1.5rem -1rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1025px) {
  .content h2::before {
    width: 280px;
  }
}

.content h2::after {
  content: '';
  display: block;
  height: 90px;
  width: 100vw;
  background-image: url(../img/h2.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: -0.3rem;
  z-index: -1;
}

@media screen and (min-width: 1025px) {
  .content__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.content__wrap figure {
  text-align: center;
  margin: 1rem;
}

.content__wrap figure img {
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .content__wrap figure img {
    width: 350px;
    height: 250px;
  }
}

.content__wrap figure p {
  font-size: 150%;
  font-weight: 700;
  color: #4B77A3;
  position: relative;
  z-index: 2;
  bottom: 48px;
}

@media screen and (min-width: 768px) {
  .content__wrap figure p {
    font-size: 200%;
    bottom: 72px;
  }
}

@media screen and (min-width: 1025px) {
  .content__wrap figure p {
    font-size: 150%;
    bottom: 53px;
  }
}

.content__wrap figure p::after {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  position: absolute;
  top: -33.34%;
  z-index: -5;
}

@media screen and (min-width: 768px) {
  .content__wrap figure p::after {
    height: 200%;
    top: -49.34%;
  }
}

.content > p {
  font-size: 115%;
  color: #4B77A3;
  padding: 0 2rem;
  line-height: 3rem;
}

@media screen and (min-width: 768px) {
  .content > p {
    font-size: 150%;
    padding: 0 4rem;
  }
}

@media screen and (min-width: 1025px) {
  .content > p {
    font-size: 125%;
    padding: 0 20%;
    line-height: 3.5rem;
  }
}

.access {
  margin: 2rem 0;
  padding: 2rem 0;
  overflow: hidden;
  background-image: url(../img/bgi_sp.png);
  background-size: cover;
}

.access h2 {
  color: #4B77A3;
  font-size: 200%;
  margin-bottom: 2rem;
  margin-left: .3rem;
  padding: 1rem;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 1025px) {
  .access h2 {
    font-size: 250%;
  }
}

.access h2::before {
  content: '';
  display: block;
  width: 170px;
  height: 4px;
  background-color: #4B77A3;
  border-radius: 2px;
  margin: 1.5rem -1rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1025px) {
  .access h2::before {
    width: 210px;
  }
}

.access h2::after {
  content: '';
  display: block;
  height: 90px;
  width: 100vw;
  background-image: url(../img/h2.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: -0.3rem;
  z-index: -1;
}

.access iframe {
  width: 100%;
  padding: 1rem;
}

@media screen and (min-width: 1025px) {
  .access iframe {
    padding: 2rem 4rem;
  }
}

#office {
  color: #4B77A3;
  text-align: center;
  background-image: url(../img/bgi_sp.png);
  background-size: cover;
  padding: 3rem 0;
}

@media screen and (min-width: 1025px) {
  #office {
    background-size: contain;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  #office .office {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1025px) {
  #office .office {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 0 16%;
    position: relative;
    top: 60px;
  }
}

#office .office__conte__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#office .office__conte__wrap p {
  font-size: 90%;
  margin: .5rem;
  padding: .3rem 1rem;
  border: solid #4B77A3 2px;
}

#office .office__wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 1rem 0 1rem 1.5rem;
}

@media screen and (min-width: 768px) {
  #office .office__wraper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 1rem 3rem 1rem 0;
  }
}

@media screen and (min-width: 1025px) {
  #office .office__wraper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 1rem 3rem 1rem 2rem;
  }
}

#office .office__wraper h3 {
  font-size: 180%;
}

#office .office__wraper address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#office .office__wraper address p {
  line-height: 1rem;
  font-size: 150%;
  margin: 0 0 1rem .5rem;
  position: relative;
}

#office .office__wraper address p a {
  position: absolute;
  bottom: -10px;
  color: #4B77A3;
}

@media screen and (min-width: 768px) {
  #office .office__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 1025px) {
  #office .office__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}

@media screen and (min-width: 1025px) {
  #office .office__img__no1 {
    position: relative;
    bottom: 20px;
    height: 300px;
  }
}

#office .office__img__no1 img {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 768px) {
  #office .office__img__no1 img {
    margin: 0;
    padding: 0;
    height: 100%;
  }
}

@media screen and (min-width: 1025px) {
  #office .office__img__no1 img {
    margin: 0;
    padding: 0;
  }
}

@media screen and (min-width: 1025px) {
  #office .office__img__no2 {
    position: relative;
    bottom: 90px;
    height: 500px;
  }
}

#office .office__img__no2 img {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 768px) {
  #office .office__img__no2 img {
    margin: 0;
    padding: 0;
  }
}

@media screen and (min-width: 1025px) {
  #office .office__img__no2 img {
    margin: 0;
    padding: 0;
    position: relative;
    bottom: 29px;
    height: 100%;
  }
}

.overview {
  margin: 2rem 0;
  padding: 2rem 0;
  overflow: hidden;
  background-image: url(../img/bgi_sp.png);
  background-size: contain;
}

.overview h2 {
  color: #4B77A3;
  font-size: 200%;
  margin-bottom: 2rem;
  margin-left: .3rem;
  padding: 1rem;
  position: relative;
  z-index: 5;
}

.overview h2::before {
  content: '';
  display: block;
  width: 180px;
  height: 4px;
  background-color: #4B77A3;
  border-radius: 2px;
  margin: 1.5rem -1rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.overview h2::after {
  content: '';
  display: block;
  height: 90px;
  width: 100vw;
  background-image: url(../img/h2.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: -0.3rem;
  z-index: -1;
}

.overview h3 {
  font-size: 200%;
  color: #444;
  text-align: center;
  margin: 3rem;
}

.overview p {
  font-size: 100%;
  color: #444;
  margin: 1.5rem;
  padding: 1rem 1rem;
  line-height: 2.5rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .overview p {
    font-size: 150%;
    padding: 3rem;
    line-height: 3rem;
  }
}

.profile {
  margin: 2rem 0;
  padding: 2rem 0;
  overflow: hidden;
  background-image: url(../img/bgi_sp.png);
  background-size: contain;
}

.profile h2 {
  text-align: center;
  color: #333;
  font-size: 200%;
  margin-bottom: 2rem;
  margin-left: .3rem;
  padding: 1rem;
  position: relative;
  z-index: 5;
}

.profile table {
  border-collapse: collapse;
  margin: .5rem;
}

@media screen and (min-width: 768px) {
  .profile table {
    margin: 0 auto;
    width: 80%;
  }
}

.profile td {
  margin: .5rem;
  border: 1px solid #333;
  font-size: 90%;
  color: #333;
  margin: 1.5rem;
  padding: .5rem 1rem;
  line-height: 2rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .profile td {
    font-size: 120%;
    padding: 1rem 1.5rem;
  }
}

.profile .td1 {
  width: 100px;
  text-align: center;
  vertical-align: middle;
  margin: 1.5rem;
  padding: .5rem;
  background-color: #F4F4F4;
}

@media screen and (min-width: 768px) {
  .profile .td1 {
    width: 25%;
  }
}

.policy {
  margin: 2rem 0;
  padding: 2rem 0;
  overflow: hidden;
  background-image: url(../img/bgi_sp.png);
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .policy {
    margin: 2.5rem 0;
    padding: 2.5rem 0;
  }
}

.policy h2 {
  color: #4B77A3;
  font-size: 140%;
  margin-bottom: 2rem;
  margin-left: .3rem;
  padding: 1.5rem 1rem 1rem;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .policy h2 {
    font-size: 200%;
  }
}

.policy h2::before {
  content: '';
  display: block;
  width: 230px;
  height: 4px;
  background-color: #4B77A3;
  border-radius: 2px;
  margin: 1.5rem -1rem 0;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.policy h2::after {
  content: '';
  display: block;
  height: 90px;
  width: 100vw;
  background-image: url(../img/h2.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: -.3rem;
  z-index: -1;
}

.policy div {
  background-color: #fefefe;
  margin: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .policy div {
    margin: 1.5rem;
    padding: 1.5rem;
  }
}

@media screen and (min-width: 1025px) {
  .policy div {
    margin: 1rem 15%;
    padding: 3rem;
  }
}

.policy h3 {
  font-size: 130%;
  margin: 3rem 2rem 0 1rem;
  color: #444;
  line-height: 2.5rem;
}

@media screen and (min-width: 768px) {
  .policy h3 {
    font-size: 200%;
  }
}

@media screen and (min-width: 1025px) {
  .policy h3 {
    font-size: 150%;
    margin: 1rem;
  }
}

.policy .center {
  text-align: center;
  font-size: 150%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .policy .center {
    font-size: 225%;
    margin: 5% auto;
  }
}

@media screen and (min-width: 1025px) {
  .policy .center {
    font-size: 225%;
    margin: 1% auto;
  }
}

.policy p {
  font-size: 90%;
  color: #444;
  padding: 2rem 1.5rem;
  line-height: 2rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .policy p {
    font-size: 150%;
    line-height: 2.5rem;
  }
}

@media screen and (min-width: 1025px) {
  .policy p {
    font-size: 125%;
    line-height: 3rem;
  }
}

footer {
  margin: 2rem 0 0;
  background-image: url(../img/footer.png);
  background-size: cover;
  color: #fff;
}

footer h2 {
  padding: 2rem 1rem;
}

@media screen and (min-width: 768px) {
  footer h2 {
    font-size: 200%;
    padding: 3rem 2rem 0;
  }
}

@media screen and (min-width: 1025px) {
  footer h2 {
    margin: 0 0 0 12%;
  }
}

@media screen and (min-width: 768px) {
  footer .footer__conte {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

footer .footer__warp {
  margin: 1rem 0;
}

footer .footer__warp div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer__warp div p {
  margin: 1rem 0 0 1rem;
  font-size: 85%;
}

footer .footer__warp div .footer_address1 {
  width: 35px;
}

@media screen and (min-width: 768px) {
  footer nav {
    position: relative;
    top: -4rem;
  }
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

footer nav ul li {
  width: 150px;
  font-size: 130%;
}

@media screen and (min-width: 768px) {
  footer nav ul li {
    font-size: 150%;
  }
}

footer nav ul .list_size {
  width: 300px;
}

footer small p {
  text-align: center;
  font-size: 75%;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  footer small p {
    text-align: right;
    margin-right: 3rem;
  }
}
/*# sourceMappingURL=style.css.map */