@charset "UTF-8";
/*=============================
font
=============================*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/*=============================
color
=============================*/
/*=============================
responsive
=============================*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*=============================
common
=============================*/
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.section {
  padding: 60px 0;
}
@media screen and (max-width: 959px) {
  .section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .section {
    padding: 40px 0 20px;
  }
}

h1 {
  font-feature-settings: "palt";
}

h2 {
  color: #042275;
  font-size: 4rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  h2 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.3rem;
    letter-spacing: 0.18em;
  }
}
h2 + p {
  text-align: center;
  color: #042275;
  margin-top: 15px;
  line-height: 1.5;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 959px) {
  h2 + p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  h2 + p {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin: 20px auto;
  }
}

.bgg {
  background-color: #f2f2f2;
}

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

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: all ease 0.5s;
}

.inner {
  width: 85%;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.caption {
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .caption {
    font-size: 8px;
  }
}

.view-more {
  width: 40%;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .view-more {
    width: 50%;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .view-more {
    width: 65%;
    font-size: 1.1rem;
  }
}

.menu-btn {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  width: 95%;
  text-decoration: none;
  display: inline-block;
  padding: 1px 10px 5px 8px;
  color: #042275;
  border: solid 1px #042275;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.7s;
}
@media screen and (max-width: 959px) {
  .menu-btn {
    padding: 3px 20px 5px 10px;
  }
}
.menu-btn:hover {
  background: #042275;
  color: #fff;
  opacity: 1;
}

/* 矢印が右に移動 */
.menu-btn_arrow::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 39%;
  right: 13px;
  /*矢印の形状*/
  width: 4px;
  height: 4px;
  border-top: 1px solid #042275;
  border-right: 1px solid #042275;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
@media screen and (max-width: 959px) {
  .menu-btn_arrow::after {
    right: 10px;
    width: 4px;
    height: 4px;
    border-top: 0.5px solid #042275;
    border-right: 0.5px solid #042275;
  }
}

/*hoverした際の移動*/
.menu-btn_arrow:hover::after {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*=============================
header
=============================*/
header {
  width: 100%;
  display: flex;
  padding: 15px 30px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  header {
    padding: 13px 15px;
  }
}
header .header-l {
  width: 170px;
}
@media screen and (max-width: 768px) {
  header .header-l {
    width: 110px;
  }
}
header .header-r {
  width: 230px;
}
@media screen and (max-width: 768px) {
  header .header-r {
    width: 150px;
  }
}

/*=============================
top
=============================*/
@media screen and (max-width: 768px) {
  .top {
    padding-top: 0;
  }
  .top .bg-blue {
    height: 15px;
    background-color: #042275;
  }
}
.top .top-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top .top-inner {
    display: block;
  }
}
.top .top-inner .top-inner__left {
  width: 53%;
}
@media screen and (max-width: 959px) {
  .top .top-inner .top-inner__left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top .top-inner .top-inner__left {
    width: 100%;
  }
}
.top .top-inner .top-inner__right {
  width: 37%;
  text-align: justify;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .top .top-inner .top-inner__right {
    width: 45%;
  }
  .top .top-inner .top-inner__right img {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .top .top-inner .top-inner__right {
    width: 85%;
    margin-top: 25px;
  }
}
.top .top-inner .top-inner__right p {
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .top .top-inner .top-inner__right p {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .top .top-inner .top-inner__right p {
    margin-top: 15px;
    line-height: 1.8;
  }
}

/*=============================
map
=============================*/
.map {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .map {
    margin: 25px auto 20px;
  }
}

/*=============================
mansion
=============================*/
.mansion {
  padding-bottom: 20px;
}
.mansion .mansion-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: flex-start;
}
.mansion .mansion-wrapper .section-title__mansion {
  width: 66.7%;
  margin-right: -0.5px;
}
@media screen and (max-width: 768px) {
  .mansion .mansion-wrapper .section-title__mansion {
    width: 50%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.mansion .mansion-wrapper .mansion-item {
  width: 33.3%;
  color: #042275;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mansion .mansion-wrapper .mansion-item {
    width: 50%;
    margin-bottom: 30px;
  }
}
.mansion .mansion-wrapper .mansion-item .mansion-item__title {
  font-size: 1.8rem;
  margin: 25px 0 20px;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .mansion .mansion-wrapper .mansion-item .mansion-item__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .mansion .mansion-wrapper .mansion-item .mansion-item__title {
    margin: 18px auto;
    font-size: 1.4rem;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
}
.mansion .mansion-wrapper .mansion-item .mansion-item__title span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .mansion .mansion-wrapper .mansion-item .mansion-item__title span {
    font-size: 1.3rem;
  }
}
.mansion .mansion-wrapper .mansion-item .mansion-item__title02 {
  margin: 8px 0 13.5px;
}
@media screen and (max-width: 768px) {
  .mansion .mansion-wrapper .mansion-item .mansion-item__title02 {
    margin: 8px 0 9.8px;
  }
}
.mansion .mansion-wrapper .item__01 {
  width: 33.1%;
}
@media screen and (max-width: 768px) {
  .mansion .mansion-wrapper .item__01 {
    width: 50%;
  }
}

/*=============================
staff
=============================*/
@media screen and (max-width: 959px) {
  .staff {
    margin-top: -30px;
  }
}
.staff .staff-members {
  margin-top: 30px;
  background: linear-gradient(180deg, transparent 0%, transparent 15.3%, #042275 15.3%, #042275 65%, transparent 65%, transparent 100%);
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 959px) {
  .staff .staff-members {
    background: linear-gradient(180deg, transparent 0%, transparent 13.5%, #042275 13.5%, #042275 60%, transparent 60%, transparent 100%);
  }
}
@media screen and (max-width: 768px) {
  .staff .staff-members {
    margin-top: 0;
    flex-wrap: wrap;
    background: linear-gradient(180deg, transparent 0%, transparent 6%, #042275 6%, #042275 25%, transparent 25%, transparent 56.3%, #042275 56.3%, #042275 75%, transparent 75%, transparent 100%);
  }
}
.staff .staff-members .staff-members__item {
  width: 28%;
  margin-left: 2%;
}
@media screen and (max-width: 768px) {
  .staff .staff-members .staff-members__item {
    width: 40%;
    margin-bottom: 30px;
  }
}
.staff .staff-members .staff-members__item p {
  color: #042275;
  margin: 15px auto 10px;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  padding-left: 10px;
}
@media screen and (max-width: 959px) {
  .staff .staff-members .staff-members__item p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .staff .staff-members .staff-members__item p {
    font-size: 1.7rem;
    margin: 10px auto 7px;
    letter-spacing: 0.17em;
  }
}
.staff .staff-members .staff-members__item .view-more {
  width: 155px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding-left: 10px;
}
@media screen and (max-width: 959px) {
  .staff .staff-members .staff-members__item .view-more {
    width: 120px;
    font-size: 1.1rem;
    line-height: 1;
  }
}
.staff .staff-members .staff-01,
.staff .staff-members .staff-02,
.staff .staff-members .staff-03 {
  margin-top: -2.5px;
}
@media screen and (max-width: 768px) {
  .staff .staff-members .staff-01,
  .staff .staff-members .staff-02,
  .staff .staff-members .staff-03 {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .staff .staff-members .staff-01 {
    width: 100%;
  }
  .staff .staff-members .staff-01 img {
    width: 47%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .staff .staff-members .staff-02,
  .staff .staff-members .staff-03 {
    width: 47%;
    padding-top: 2.5px;
  }
}
.staff .staff-members .staff-04 {
  margin-top: 1px;
}
.staff .staff-members .staff-05 {
  margin-top: -1px;
}

/*=============================
finance
=============================*/
.finance .finance-submsg {
  margin: 30px auto 50px;
  text-align: justify;
}
@media screen and (max-width: 959px) {
  .finance .finance-submsg {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin: 25px auto 40px;
  }
}
@media screen and (max-width: 768px) {
  .finance .finance-submsg {
    margin: 25px auto;
  }
}

/*=============================
web
=============================*/
.web {
  padding-bottom: 0;
}
.web .specialty_wrapper {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper {
    margin-top: 30px;
    margin-bottom: 35px;
  }
}
.web .specialty_wrapper .specialtySite_box {
  background-color: #042275;
  padding: 30px 45px 40px;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .specialtySite_box {
    padding: 25px 25px 30px;
  }
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .specialtySite_box {
    padding: 20px 15px;
  }
}
.web .specialty_wrapper .specialtySite_box h3 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .specialtySite_box h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .specialtySite_box h3 {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}
.web .specialty_wrapper .specialtySite_box p {
  font-size: 1.8rem;
  text-align: justify;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .specialtySite_box p {
    font-size: 1.5rem;
  }
}
.web .specialty_wrapper .img_wrapper01 {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper01 {
    display: block;
  }
}
.web .specialty_wrapper .img_wrapper01 .nomucom_left {
  width: 35%;
  margin-top: -30px;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .img_wrapper01 .nomucom_left {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper01 .nomucom_left img {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.web .specialty_wrapper .img_wrapper01 .nomucom_right {
  width: 53%;
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper01 .nomucom_right {
    margin-top: 20px;
    width: 100%;
  }
}
.web .specialty_wrapper .img_wrapper02 {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper02 {
    flex-direction: column-reverse;
    margin: 0 auto;
  }
}
.web .specialty_wrapper .img_wrapper02 .nomucompro_left {
  display: flex;
  width: 68%;
  margin-top: 40px;
  margin-right: 10px;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_left {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_left {
    display: block;
    width: 100%;
    margin-right: 0px;
    margin: -35px auto 0;
  }
}
.web .specialty_wrapper .img_wrapper02 .nomucompro_left .nomucompro_logo {
  width: 30%;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_left .nomucompro_logo {
    width: 27%;
  }
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_left .nomucompro_logo {
    width: 60%;
    max-width: 250px;
    margin: 0 auto 10px;
  }
}
.web .specialty_wrapper .img_wrapper02 .nomucompro_left .nomucompro_tex {
  width: 65%;
  text-align: justify;
  font-size: 1.3rem;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_left .nomucompro_tex {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_left .nomucompro_tex {
    width: 100%;
  }
}
.web .specialty_wrapper .img_wrapper02 .nomucompro_right {
  width: 30%;
  margin-top: -30px;
}
@media screen and (max-width: 959px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_right {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .web .specialty_wrapper .img_wrapper02 .nomucompro_right {
    width: 80%;
    margin: 20px auto 0;
    text-align: center;
  }
}
.web .specialty_wrapper .img_wrapper02 .nomucompro_right img {
  margin: 0 auto;
  max-width: 400px;
}

/*=============================
nomupro
=============================*/
.nomupro {
  text-align: left;
}
.nomupro .nomupro-title {
  margin-left: -10px;
  width: 60%;
}
@media screen and (max-width: 959px) {
  .nomupro .nomupro-title {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .nomupro .nomupro-title {
    width: 100%;
    margin-left: 0;
  }
}
.nomupro .nomupro-sub {
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .nomupro .nomupro-sub {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .nomupro .nomupro-sub {
    font-size: 1.4rem;
  }
}
.nomupro .nomupro-flex {
  display: flex;
  justify-content: space-between;
  margin: 15px auto 30px;
}
@media screen and (max-width: 768px) {
  .nomupro .nomupro-flex {
    display: block;
  }
}
.nomupro .flex_01 {
  align-items: center;
}
.nomupro .flex_01 img {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .nomupro .flex_01 img {
    width: 100%;
    margin: 25px auto;
  }
}
.nomupro .flex_02 {
  align-items: flex-start;
}
.nomupro .flex_02 .nomupro_02 {
  width: 38.5%;
}
@media screen and (max-width: 768px) {
  .nomupro .flex_02 .nomupro_02 {
    width: 100%;
    margin: 25px auto;
  }
}
.nomupro .flex_02 .nomupro_03 {
  width: 59%;
}
@media screen and (max-width: 768px) {
  .nomupro .flex_02 .nomupro_03 {
    width: 100%;
    margin: 25px auto;
  }
}
.nomupro .nomupro_04 {
  margin-top: 30px;
}
.nomupro .caption {
  font-family: sans-serif;
}
@media screen and (max-width: 768px) {
  .nomupro .caption {
    margin-top: 15px;
  }
}

.rakumachi {
  margin-top: 50px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .rakumachi {
    margin-top: 30px;
  }
}
.rakumachi .inner {
  padding: 50px 0 30px;
}
@media screen and (max-width: 959px) {
  .rakumachi .inner {
    padding: 30px 0 20px;
  }
}
.rakumachi .inner .rakumachi-title {
  font-size: 2.4rem;
  color: #042275;
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  .rakumachi .inner .rakumachi-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .rakumachi .inner .rakumachi-title {
    font-size: 1.8rem;
    text-align: center;
  }
}
.rakumachi .inner img {
  margin-top: -5.5%;
}
@media screen and (max-width: 768px) {
  .rakumachi .inner img {
    margin-top: 10px;
  }
}
.rakumachi .inner .caption {
  width: 57%;
  margin-top: -8%;
  letter-spacing: 0.05em;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .rakumachi .inner .caption {
    width: 90%;
    margin: 10px auto 0;
  }
}
.rakumachi .inner .view-more {
  margin-top: 25px;
  width: 170px;
  margin-left: 180px;
}
@media screen and (max-width: 959px) {
  .rakumachi .inner .view-more {
    width: 130px;
    margin-left: auto;
    margin-top: 15px auto 0;
  }
}

/*=============================
service
=============================*/
.service {
  text-align: left;
}
.service .service-top {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .service .service-top {
    padding: 0;
    display: block;
  }
}
.service .service-top .service-top__left {
  width: 45%;
}
@media screen and (max-width: 959px) {
  .service .service-top .service-top__left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .service .service-top .service-top__left {
    width: 100%;
  }
}
.service .service-top .service-top__left h3 {
  color: #042275;
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 959px) {
  .service .service-top .service-top__left h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .service .service-top .service-top__left h3 {
    font-size: 1.8rem;
    text-align: center;
  }
}
.service .service-top .service-top__left .item-02 {
  margin-top: 40px;
}
.service .service-top .service-top__left p {
  text-align: justify;
}
@media screen and (max-width: 959px) {
  .service .service-top .service-top__left p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .service .service-top .service-top__left p {
    line-height: 1.7;
  }
}
.service .service-top .service-top__right {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .service .service-top .service-top__right {
    width: 80%;
    margin: 30px auto;
  }
}
.service .service-support {
  margin-top: 70px;
}
@media screen and (max-width: 959px) {
  .service .service-support {
    margin-top: 40px;
  }
}
.service .service-support h3 {
  text-align: center;
  color: #042275;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .service .service-support h3 {
    font-size: 2.2rem;
  }
}
.service .service-support .support-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service .service-support .support-wrapper .support-item {
  width: 30%;
  margin-top: 30px;
  border-top: solid 4px #042275;
  padding: 30px 0;
}
@media screen and (max-width: 959px) {
  .service .service-support .support-wrapper .support-item {
    width: 47%;
    margin-top: 25px;
    border-top: solid 3px #042275;
    padding: 15px 0;
  }
}
.service .service-support .support-wrapper .support-item h4 {
  font-size: 2.4rem;
  color: #042275;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .service .service-support .support-wrapper .support-item h4 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .service .service-support .support-wrapper .support-item h4 {
    font-size: 1.5rem;
    letter-spacing: 0em;
  }
}
.service .service-support .support-wrapper .support-item p {
  margin: 25px auto;
  height: 100px;
}
@media screen and (max-width: 959px) {
  .service .service-support .support-wrapper .support-item p {
    margin: 20px auto;
    height: 105px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .service .service-support .support-wrapper .support-item p {
    margin: 10px auto;
    height: 133px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
}
.service .service-support .support-wrapper .support-item .view-more {
  margin-top: 25px;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .service .service-support .support-wrapper .support-item .view-more {
    margin-top: 20px;
    width: 130px;
  }
}
.service .caption {
  text-align: right;
  font-family: sans-serif;
}
@media screen and (max-width: 768px) {
  .service .caption {
    text-align: left;
    font-size: 7px;
  }
}

/*=============================
contact
=============================*/
@media screen and (max-width: 959px) {
  .contact {
    margin-top: -20px;
  }
}
.contact .contact-title {
  color: #152142;
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .contact .contact-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-title {
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
.contact .contact-btn {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .contact .contact-btn {
    display: block;
  }
}
.contact .contact-btn a {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .contact .contact-btn a .img-b {
    margin-bottom: 20px;
  }
}
.contact .access_map01 {
  width: 100%;
  height: 600px;
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .contact .access_map01 {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .contact .access_map01 {
    height: 300px;
  }
}
.contact .access_map01 iframe {
  width: 100%;
  height: 100%;
}

/*=============================
footer
=============================*/
footer {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 30px 0;
  }
}
footer .footer-wrapper {
  margin: 0 auto;
  width: 65%;
  max-width: 550px;
}
@media screen and (max-width: 959px) {
  footer .footer-wrapper {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-wrapper {
    width: 75%;
    max-width: 380px;
  }
}/*# sourceMappingURL=style.css.map */