@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

/* ---------- reset ---------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p,
a, em, img, strong, time,
dl, dt, dd, ol, ul, li, form,
table, tbody, thead, tr, th, td,
article, aside, figure, figcaption,
footer, header, nav, section {
  border: 0;
  font-size: 100%;
  font-style: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article, aside, footer, header, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---------- body ---------- */
body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  min-width: 1100px;
  padding: 185px 0 0;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #333;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

a[href^="tel:"] {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  body {
    min-width: auto;
    padding: 50px 0 0;
  }
}

@media screen and (max-width: 640px) {
  a[href^="tel:"] {
    text-decoration: none;
  }
}

/* ---------- header ---------- */
#header {
  min-width: 1100px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

#header a {
  text-decoration: none;
}

#header div,
#header ul {
  display: flex;
  margin: 0 auto;
  max-width: 1380px;
  padding: 0 30px;
}

#header div {
  height: 115px;
}

#header h1 {
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 12px;
  padding: 30px 10px 20px 0;
}

#header h1 span {
  display: block;
  font-size: 2.1rem;
  padding: 5px 0 0;
}

#header h1 span:first-letter {
  color: #2772B3;
}

#header h1 img{
  width: 250px;
}

#header p.catch {
  line-height: 1.4;
  padding: 60px 0 0;
}

#header p.phone {
  margin: 0 0 0 auto;
  padding: 30px 0 0;
}

#header p.phone a {
  display: block;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin: 5px 0 0;
}

#header nav {
  background: #eee;
  min-width: 1100px;
  width: 100%;
}

body.fixed #header nav {
  position: fixed;
  top: 0;
}

#header nav p {
  display: none;
}

#header li {
  border-left: #fff 2px solid;
  box-sizing: border-box;
  width: 20%;
  line-height: 150%;
  text-align: center;
}

#header li:last-child {
  border-right: #fff 2px solid;
}

#header li a {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 70px;
  transition: all .2s;
}

#header li a:hover {
  background-color: #2772B3;
  color: #fff;
}

@media (max-width: 768px) {
  #header {
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    min-width: inherit;
    position: fixed;
  }

  #header div,
  #header ul {
    height: inherit;
    padding: 0;
  }

  #header h1 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 0.65rem;
    padding: 8px 0 4px 15px;
  }

  #header h1 span {
    display: block;
    font-size: 1.1rem;
    padding: 5px 0 0;
  }

  #header p.catch {
    display: none;
  }

  #header p.phone {
    margin: 0 51px 0 auto;
    padding: 0;
  }

  #header p.phone span {
    display: none;
  }

  #header p.phone a {
    background-color: #000;
    background-image: url("../svg/phone.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px auto;
    box-sizing: border-box;
    height: 50px;
    margin: 0;
    overflow: hidden;
    padding: 50px 0 0;
    width: 50px;
  }

  #header nav {
    min-width: inherit;
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
  }

  body.fixed #header nav {
    position: static;
  }

  #header nav p {
    background: #2772B3;
    box-sizing: border-box;
    display: block;
    height: 50px;
    padding: 16px 12px;
    width: 50px;
  }

  #header nav p>span {
    display: block;
    height: 100%;
    position: relative;
  }

  #header nav p span span {
    background: #fff;
    display: inline-block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all .4s;
    width: 100%;
  }

  #header nav p span span:nth-of-type(1) {
    top: 0;
  }

  #header nav p span span:nth-of-type(2) {
    top: calc(50% - 1px);
  }

  #header nav p span span:nth-of-type(3) {
    bottom: 0;
  }

  #header nav.active p span span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  #header nav.active p span span:nth-of-type(2) {
    opacity: 0;
  }

  #header nav.active p span span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  #header ul {
    background: #2772B3;
    border-top: #fff 1px solid;
    box-sizing: border-box;
    display: none;
    height: calc(100vh - 50px);
    left: 0;
    overflow-y: scroll;
    padding: 20px 20px 100px;
    position: fixed;
    top: 50px;
    transition: right .2s ease-in;
    width: 100%;
  }

  #header li {
    background: url("../svg/navi.svg") no-repeat right 10px bottom 20px;
    border-left: none;
    border-bottom: #fff 1px solid;
    display: block;
    padding: 0;
    width: 100%;
  }

  #header li:last-child {
    border-right: none;
  }

  #header li a {
    color: #fff;
    display: block;
    font-family: "Noto Serif JP";
    font-size: 0.95rem;
    letter-spacing: 0.1rem;
    line-height: 1.8;
    height: auto;
    margin: 0;
    padding: 30px 5px 10px;
  }
}

/* ---------- desk ---------- */
#desk {
  display: flex;
  margin: 0 auto;
  max-width: 1280px;
  padding: 100px 20px 200px;
}

#desk>div {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  width: 50%;
}

#desk div div {
  align-items: center;
  box-sizing: border-box;
  border: #eee 1px solid;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 0 50px;
  padding: 20px 30px 40px;
}

#desk #desk_online div {
  padding: 30px 30px 30px calc(50% + 30px);
  position: relative;
}

#desk #desk_online div::before {
  background: url("../img/base/online.jpg") no-repeat center 0 / cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 50%;
}

#desk div div p {
  line-height: 1.6;
}

#desk .phone {
  padding: 0 0 20px;
}

#desk .phone a {
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  #desk {
    flex-wrap: wrap;
    padding: 50px 20px 0;
  }

  #desk>div {
    padding: 0 0 60px;
    width: 100%;
  }

  #desk div div {
    margin: 0 0 30px;
    min-height: inherit;
    padding: 20px 30px 40px;
  }

  #desk #desk_online div {
    padding: 180px 30px 30px;
  }

  #desk #desk_online div::before {
    height: 150px;
    width: 100%;
  }

  #desk .phone a {
    font-size: 1.8rem;
  }
}

/* ---------- banner ---------- */
#banner {
  background: #f4f4f4;
  margin: 0 0 160px;
  padding: 70px 20px;
}

#banner ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1420px;
}

#banner li {
  box-sizing: border-box;
  padding: 0 20px;
  width: 33.33%;
}

@media (max-width: 768px) {
  #banner {
    background: #f4f4f4;
    margin: 0;
    padding: 40px 20px 20px;
  }

  #banner li {
    padding: 0 0 20px;
    width: 100%;
  }
}

/* ---------- footer ---------- */
#footer {
  background: #3C5B9A;
  color: #fff;
  line-height: 1.6;
  padding: 60px 0 50px;
  text-align: center;
}

#footer h1 {
  font-weight: 700;
  padding: 0 0 10px;
}

#footer dl {
  display: flex;
  justify-content: center;
  padding: 0 0 30px;
}

#footer dl div {
  display: flex;
  padding: 0 10px;
}

#footer dt::after {
  content: "：";
}

#footer dl div:nth-child(1) dt {
  display: none;
}

#footer a {
  color: #fff;
}

@media (max-width: 768px) {
  #footer {
    padding: 50px 0;
  }

  #footer dl {
    flex-wrap: wrap;
    font-size: 0.8rem;
    line-height: 1.8;
  }

  #footer dl div:nth-child(1) {
    width: 100%;
  }

  #footer dl div:nth-child(1) dd {
    width: 100%;
  }

  #footer .copyright {
    font-size: 0.75rem;
  }
}

/* ---------- home_keyvisual ---------- */
#home_keyvisual {
  padding: 450px 30px 0;
  position: relative;
  z-index: 0;
}

#home_keyvisual::before,
#home_keyvisual::after {
  background-image: url("../img/home/0000011.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 750px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100;
}

/* #home_keyvisual::after {
  background-image: url("../img/home/shadow.png");
  background-position: center bottom;
  background-size: auto 90%;
  z-index: -10;
} */

#home_keyvisual div {
  margin: 0 auto;
  max-width: 800px;
}

#home_keyvisual h2 {
  font-family: "Noto Serif JP";
  font-size: 30px;
  font-weight: 400;
  padding: 0 0 50px;
}

#home_keyvisual h2 br {
  display: none;
}

#home_keyvisual p {
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  #home_keyvisual {
    padding: 250px 20px 0;
  }

  #home_keyvisual::before,
  #home_keyvisual::after {
    height: 300px;
  }

  #home_keyvisual div {
    padding: 30px 20px;
  }

  #home_keyvisual h2 {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 0 20px;
  }

  #home_keyvisual h2 br {
    display: block;
  }

  #home_keyvisual p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }
}

/* ---------- common ---------- */
.section {
  padding: 170px 30px;
}

.section._bgcolor {
  background: #F8F8F8;
}

.title_l {
  font-size: 1.1rem;
  text-align: center;
  padding: 0 0 45px;
}

.title_l::before {
  content: attr(data-en);
  font-family: "Noto Serif JP";
  font-size: 30px;
  display: block;
  padding: 0 0 20px;
}

.title_m {
  font-family: 'Noto Serif JP';
  font-size: 30px;
  padding: 0 0 40px;
  text-align: center;
}

.button {
  text-align: center;
}

.button a {
  background: #2772B3;
  color: #fff;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  width: 180px;
}
.tuika{padding: 15px 0!important;}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .title_l {
    font-size: 0.9rem;
    padding: 0 0 35px;
  }

  .title_l::before {
    font-size: 2rem;
    padding: 0 0 15px;
  }

  .title_m {
    font-size: 1.6rem;
    padding: 0 0 30px;
  }

  .button a {
    padding: 15px 0;
    width: 240px;
  }
}

/* ---------- home_profile ---------- */
#home_profile {
  margin: 0 auto;
  max-width: 1280px;
}

#home_profile ul {
  border: #eee 1px solid;
  border-right: none;
  display: flex;
  margin: 0 0 80px;
}

#home_profile li {
  border-right: #eee 1px solid;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 35px 50px 430px;
  position: relative;
  width: 33.33%;
}

#home_profile li::after {
  background-image: url("../img/home/compnay.jpg");
  background-size: cover;
  background-position: center center;
  bottom: 0;
  content: "";
  height: 400px;
  left: 0;
  position: absolute;
  width: 100%;
}

#home_profile li:nth-child(2)::after {
  background-image: url("../img/home/medical.jpg");
}

#home_profile li:nth-child(3)::after {
  background-image: url("../img/home/care.jpg");
}

#home_profile h3 {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  justify-content: center;
  line-height: 1.4;
  padding: 0 0 20px;
}

#home_profile li p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  #home_profile ul {
    border: none;
    flex-wrap: wrap;
    margin: 0 0 30px;
  }

  #home_profile li {
    border: #eee 1px solid;
    margin: 0 0 20px;
    padding: 30px 30px 325px;
    width: 100%;
  }

  #home_profile li::after {
    height: 300px;
  }

  #home_profile h3 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

}
#home_profile .greeting{
  text-align: center;

}
#home_profile .greeting img{
  width: 60%;
  margin: 20px auto;
}
#home_profile .greeting p{
  text-align: left;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (min-width: 601px) {
#home_profile .greeting{
  display: flex;
  width: 550px;
  margin: 0 auto;
}
#home_profile .greeting img{
  width: 150px;
  margin: 0;
}
#home_profile .greeting p{
  width: 380px;
  padding-left: 20px;
}
}
@media screen and (min-width: 1001px) {
  #home_profile .greeting{
    width: 950px;
  }
  #home_profile .greeting img{
    width: 300px;
  }
  #home_profile .greeting p{
    width: 630px;
  }
}








/* ---------- home_consulting ---------- */
#home_consulting {
  margin: 60px auto 10px auto;
  max-width: 1280px;
}

#home_consulting ul {
  border: #eee 1px solid;
  border-right: none;
  display: flex;

  margin: 30px 0 80px;
}

#home_consulting li {
  border-right: #eee 1px solid;
  box-sizing: border-box;

  padding: 35px 50px 280px;
  position: relative;
  width: 33.3%;
}

#home_consulting li::after {
  background-image: url("../img/home/medical.jpg");
  background-size: cover;
  background-position: center center;
  bottom: 0;
  content: "";
  height: 250px;
  left: 0;
  position: absolute;
  width: 100%;
}

#home_consulting li:nth-child(2)::after {
  background-image: url("../img/home/care.jpg");
}

#home_consulting li:nth-child(3)::after {
  background-image: url("../img/home/zeimu.png");
}

#home_consulting h3 {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  justify-content: center;
  line-height: 1.4;
  padding: 0 0 20px;
  text-align:center;
}

#home_consulting li p {
  line-height: 1.6;
}
#home_consulting li a {display: block;text-align: center;text-decoration:none;color: #fff;background-color: #2772B3;padding: 10px 0 0 0;margin: 20px auto 10px auto;width: 180px;height: 36px;}
#home_consulting .advisor{
  margin: 0 auto 50px auto;
  max-width: 1280px;
  border: #eee 1px solid;
  display: flex;
}
#home_consulting .advisor .imgwarp{
  width: 500px;
  height: 250px;

}
#home_consulting .advisor img{
  object-fit: cover;
  display: block;
  width: 500px;
  height: 350px;
}
#home_consulting .advisor .advisortext{
  margin: 30px 70px 30px 70px;
  width: 500px;
  line-height: 180%;
}
.advisorbtn{
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  #home_consulting ul {
    border: none;
    flex-wrap: wrap;
    margin: 0 0 30px;
  }

  #home_consulting li {
    border: #eee 1px solid;
    margin: 0 0 20px;
    padding: 30px 30px 325px;
    width: 100%;
  }

  #home_consulting li::after {
    height: 300px;
  }

  #home_consulting h3 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

#home_consulting .advisor{
  display: block;
}
#home_consulting .advisor .advisortext{
  width: 100%;
  margin: 0;
  padding: 30px 30px 30px 30px;
  box-sizing: border-box;
}
#home_consulting .advisor .imgwarp{
width: 100%;
}
#home_consulting .advisor img{
width: 100%;
}
}

/* ---------- home_writing ---------- */
#home_writing>div {
  background: #fff;
  border: #eee 1px solid;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  padding: 0 40px 0 0;
}

#home_writing figure {
  float: left;
}

#home_writing h3 {
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  padding: 30px 0 10px 445px;
  text-align: center;
}

#home_writing p {
  line-height: 1.8;
  padding: 0 0 40px 445px;
}

@media (max-width: 768px) {
  #home_writing>div {
    padding: 0;
  }

  #home_writing figure {
    float: none;
    text-align: center;
  }

  #home_writing h3 {
    font-size: 1.4rem;
    padding: 30px 0 20px;
  }

  #home_writing p {
    font-size: 0.9rem;
    padding: 0 20px 25px;
  }
}

/* ---------- home_information ---------- */
#home_information {
  margin: 0 auto;
  max-width: 1100px;
}

#home_information ul {
  padding: 0 0 80px;
}

#home_information li {
  border-bottom: #333 1px solid;
}

#home_information li a {
  display: block;
  overflow: hidden;
  padding: 20px 30px;
  text-decoration: none;
}

#home_information li p {
  float: left;
  line-height: 1.8;
}

#home_information li p.new {
  background: red;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1;
  margin: 4px 20px 0;
  padding: 3px 5px;
}

#home_information li p.title {
  float: none;
  padding: 0 0 0 180px;
}

@media (max-width: 768px) {
  #home_information ul {
    padding: 0 0 40px;
  }

  #home_information li a {
    padding: 20px 10px;
  }

  #home_information li p.new {
    font-size: 0.75rem;
    margin: 5px 0 0 15px;
  }

  #home_information li p.title {
    clear: both;
    font-size: 0.9rem;
    padding: 10px 0 0;
  }
}

/* ---------- home_flow ---------- */
#home_flow {
  padding: 100px 0;
}

#home_flow h2 {
  background-image: url("../img/home/flow_bg.jpg");
  background-repeat: repeat-x;
  background-position: center bottom;
  padding: 0 0 280px;
}

#home_flow div {
  margin: 0 auto;
  max-width: 900px;
  padding: 60px 0 80px;
}

#home_flow div p {
  line-height: 1.8;
}

@media (max-width: 768px) {
  #home_flow {
    padding: 50px 0;
  }

  #home_flow h2 {
    background-size: auto 100px;
    font-size: 1.8rem;
    padding: 0 0 140px;
  }

  #home_flow div {
    padding: 30px 20px;
  }

  #home_flow div p {
    font-size: 0.9rem;
  }
}

/* ---------- title ---------- */
#title {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 400px 30px 0 30px;
  margin: 2px 0 0;
}
#title2 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 600px 30px 0 30px;
  margin: 2px 0 0;
}
#about #title {

}
.titleimg01 {background-image: url("../img/base/title_bg01.jpg");}
.titleimg02 {background-image: url("../img/base/title_bg02.jpg");}
.titleimg03 {background-image: url("../img/base/title_bg03.jpg");}
.titleimg04 {background-image: url("../img/base/title_bg04.jpg");}
.titleimg05 {background-image: url("../img/base/title_bg05.jpg");}
.titleimg06 {background-image: url("../img/base/title_bg06.jpg");}
.titleimg07 {background-image: url("../img/base/title_bg07.jpg");}
.titleimg08 {background-image: url("../img/base/title_bg08.jpg");}
.titleimg09 {background-image: url("../img/base/title_bg09.jpg");}
.titleimg10 {background-image: url("../img/base/title_bg10.jpg");}
.titleimg11 {background-image: url("../img/base/title_bg11.jpg");}
.titleimg12 {background-image: url("../img/base/title_bg12.jpg");}
.titleimg13 {background-image: url("../img/base/title_bg13.jpg");}
.titleimg14 {background-image: url("../img/base/title_bg14.jpg");}
.titleimg15 {background-image: url("../img/base/title_bg15.jpg");}
.titleimg16 {background-image: url("../img/base/title_bg16.jpg");}

#title div {
  margin: 0 auto;
  max-width: 1500px;
}

#title p {
  background: #2772B3;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 2.6rem;
  font-weight: 700;
  display: inline-block;
  padding: 20px 40px;
}

@media (max-width: 768px) {
  #title {
    margin: 0;
    padding: 130px 0 0;
  }

  #about #title {
    background-position: right bottom;
  }

  #title p {
    font-size: 0.95rem;
    display: block;
    padding: 10px;
    text-align: center;
  }
}

/* ---------- about_greeting ---------- */
#about_greeting {
  margin: 0 auto;
  max-width: 1400px;
}

#about_greeting>p {
  font-family: "Noto Serif JP";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 0 60px;
  text-align: center;
}

#about_greeting figure {
  border: #ccc 2px solid;
  float: left;
  margin: 5px 0 0;
  padding: 2px;
}

#about_greeting div {
  padding: 0 0 0 550px;
}

#about_greeting p {
  line-height: 1.8;
}

@media (max-width: 768px) {
  #about_greeting>p {
    font-size: 1.4rem;
    padding: 0 0 25px;
    text-align: left;
  }

  #about_greeting>p br {
    display: none;
  }

  #about_greeting figure {
    float: none;
    max-width: 260px;
    margin: 0 auto 25px;
    padding: 2px;
  }

  #about_greeting div {
    padding: 0;
  }

  #about_greeting p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

/* ---------- about_profile ---------- */
#about_profile {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1460px;
  padding: 0 30px 100px 580px;
}

#about_profile h2 {
  font-family: "Noto Serif JP";
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 0 20px;
}

#about_profile ul {
  line-height: 1.8;
  list-style: disc;
  margin: 0 0 0 25px;
}

@media (max-width: 768px) {
  #about_profile {
    padding: 0 20px 70px;
  }

  #about_profile h2 {
    font-size: 1.6rem;
  }

  #about_profile ul {
    font-size: 0.9rem;
  }
}

/* ---------- about_outline ---------- */
#about_outline {
  margin: 0 0 100px;
}

#about_outline div {
  margin: 0 auto;
  max-width: 800px;
}

#about_outline table {
  line-height: 1.8;
  width: 100%;
}

#about_outline tr {
  border-bottom: #333 1px solid;
}

#about_outline th {
  padding: 20px 50px;
  text-align: left;
  white-space: nowrap;
}

#about_outline td {
  padding: 20px;
}

@media (max-width: 768px) {
  #about_outline {
    margin: 0 0 60px;
  }

  #about_outline th,
  #about_outline td {
    box-sizing: border-box;
    display: block;
    padding: 20px 10px 5px;
    width: 100%;
  }

  #about_outline td {
    padding: 0 10px 20px;
  }
}
.gyomu{text-align: center;font-size: 20px;padding: 20px;border-top: 1px solid #2772B3;border-bottom:  1px solid #2772B3;font-weight: bold;margin-bottom: 40px;margin-top: -140px;}
.fb {width: 70px;position: absolute;top:20px;right: 50px;}
.bg-slider {width: 100%;background:url(../img/bgswitcher/img_bg01.jpg) center bottom no-repeat;background-position: center center; background-size: cover; height:750px; }
.bg-slider p{text-align:center; padding-top:450px; box-sizing:border-box}
.bg-slider p img{ width:800px ; height:auto}
