@charset "UTF-8";
/*=============================
レスポンシブ
=============================*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

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

/*=============================
共通パーツ
=============================*/
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  font-family: serif;
  font-size: 1.5rem;
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.3rem;
  }
}

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

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

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

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

.point_mark {
  text-align: center;
  font-size: 30px;
  font-style: italic;
  border-bottom: 4px solid #00194b;
  width: 150px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .point_mark {
    font-size: 17px;
    border-bottom: 3px solid #000;
    width: 110px;
    margin-bottom: 30px;
  }
}
.point_mark span {
  font-size: 45px;
}
@media screen and (max-width: 768px) {
  .point_mark span {
    font-size: 30px;
  }
}

.point_title {
  font-size: 25px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .point_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .point_title {
    font-size: 1.7rem;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
  }
}

.point_lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .point_lead {
    margin-bottom: 20px;
  }
}

/*=============================
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;
  }
}

/*=============================
intro
=============================*/
.intro {
  background-color: #00194b;
  color: #fff;
  padding: 60px 0px 80px;
}
@media screen and (max-width: 959px) {
  .intro {
    padding: 30px 0px 50px;
  }
}
.intro h1 {
  font-size: 50px;
  text-align: center;
  border-bottom: 1px solid #fff;
  width: 800px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 959px) {
  .intro h1 {
    width: 90%;
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .intro h1 {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
}
.intro h2 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .intro h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .intro h2 {
    font-size: 14px;
  }
}

/*=============================
point01
=============================*/
.point01 {
  background-color: #f2f2f2;
}
.point01 p {
  color: #595757;
}
.point01 .point_title {
  color: #00194b;
}
.point01 .point01_box {
  background-color: #00194b;
  padding: 30px 40px;
  color: #fff;
}
.point01 .point01_box h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .point01 .point01_box h1 {
    font-size: 18px;
  }
}
.point01 .point01_box p {
  color: #fff;
}
.point01 .point01_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .point01 .point01_wrapper {
    display: block;
  }
}
.point01 .point01_wrapper .point01_wrapper_left {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .point01 .point01_wrapper .point01_wrapper_left {
    width: 100%;
  }
}
.point01 .point01_wrapper .point01_wrapper_left img {
  width: 50%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .point01 .point01_wrapper .point01_wrapper_left img {
    margin: 0 auto 20px;
  }
}
.point01 .point01_wrapper .point01_wrapper_right {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .point01 .point01_wrapper .point01_wrapper_right {
    width: 70%;
    margin: 20px auto;
  }
}
.point01 .point01_strong {
  margin-top: -70px;
}
@media screen and (max-width: 959px) {
  .point01 .point01_strong {
    margin-top: -30px;
  }
}
.point01 .point01_strong h1 {
  text-align: center;
  font-size: 30px;
  color: #00194b;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .point01 .point01_strong h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .point01 .point01_strong h1 {
    font-size: 16px;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .point01 .point01_strong img {
    width: 75%;
    margin: 0 auto;
  }
}

/*=============================
point02
=============================*/
.point02 p {
  color: #595757;
}
.point02 .point_title {
  color: #b10011;
}
.point02 .point_mark {
  text-align: center;
  font-size: 30px;
  font-style: italic;
  border-bottom: 4px solid #b10011;
  width: 150px;
  margin: 0 auto 50px;
  color: #b10011;
}
@media screen and (max-width: 768px) {
  .point02 .point_mark {
    font-size: 17px;
    border-bottom: 3px solid #b10011;
    width: 110px;
    margin-bottom: 30px;
  }
}
.point02 .point_mark span {
  font-size: 45px;
}
@media screen and (max-width: 768px) {
  .point02 .point_mark span {
    font-size: 30px;
  }
}
.point02 .point02_wrapper01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .point02 .point02_wrapper01 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .point02 .point02_wrapper01 {
    display: block;
  }
}
.point02 .point02_wrapper01 div {
  padding: 30px 20px;
  background-color: #b10011;
  color: #fff;
  width: 32%;
}
@media screen and (max-width: 959px) {
  .point02 .point02_wrapper01 div {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .point02 .point02_wrapper01 div {
    width: 80%;
    margin: 0 auto 20px;
  }
}
.point02 .point02_wrapper01 div h1 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .point02 .point02_wrapper01 div h1 {
    font-size: 15px;
  }
}
.point02 .point02_wrapper01 div p {
  color: #fff !important;
}
.point02 .point02_wrapper01 .point02_wrapper01_center h1 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .point02 .point02_wrapper01 .point02_wrapper01_center h1 {
    margin-top: 0px;
  }
}
.point02 .point02_wrapper01 .point02_wrapper01_center p {
  margin-top: 37px;
}
@media screen and (max-width: 959px) {
  .point02 .point02_wrapper01 .point02_wrapper01_center p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .point02 .point02_wrapper01 .point02_wrapper01_center p {
    margin-top: 0px;
  }
}
.point02 .point02_wrapper02 {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .point02 .point02_wrapper02 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .point02 .point02_wrapper02 {
    display: block;
  }
}
.point02 .point02_wrapper02 .point02_wrapper02_item {
  background-color: #b10011;
  font-size: 1.8rem;
  color: #fff;
  width: 24.5%;
  line-height: 1.5;
  padding: 15px 0px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .point02 .point02_wrapper02 .point02_wrapper02_item {
    margin-top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .point02 .point02_wrapper02 .point02_wrapper02_item {
    width: 80%;
    margin: 0 auto 20px;
  }
}
.point02 .point02_wrapper02 .point02_wrapper02_item h1 {
  text-align: center;
}

/*=============================
point03
=============================*/
.point03 {
  background-color: #f2f2f2;
}
.point03 p {
  color: #595757;
}
.point03 .point_title {
  color: #00194b;
}

/*=============================
point04
=============================*/
.point04 p {
  color: #595757;
}
.point04 .point_mark {
  text-align: center;
  font-size: 30px;
  font-style: italic;
  border-bottom: 4px solid #b10011;
  width: 150px;
  margin: 0 auto 50px;
  color: #b10011;
}
@media screen and (max-width: 768px) {
  .point04 .point_mark {
    font-size: 17px;
    border-bottom: 3px solid #b10011;
    width: 110px;
    margin-bottom: 30px;
  }
}
.point04 .point_mark span {
  font-size: 45px;
}
@media screen and (max-width: 768px) {
  .point04 .point_mark span {
    font-size: 30px;
  }
}
.point04 .point_title {
  color: #b10011;
}
.point04 .point04_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .point04 .point04_wrapper {
    display: block;
  }
}
.point04 .point04_wrapper .point04_wrapper_left {
  width: 45%;
}
@media screen and (max-width: 959px) {
  .point04 .point04_wrapper .point04_wrapper_left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.point04 .point04_wrapper .point04_wrapper_left h1 {
  font-size: 25px;
  color: #b10011;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .point04 .point04_wrapper .point04_wrapper_left h1 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.point04 .point04_wrapper .point04_wrapper_left .point04_wrapper_left_top {
  margin-bottom: 20px;
}
.point04 .point04_wrapper .point04_wrapper_right {
  width: 50%;
}
@media screen and (max-width: 959px) {
  .point04 .point04_wrapper .point04_wrapper_right {
    width: 70%;
    margin: 0 auto;
  }
}

/*=============================
case
=============================*/
.case {
  background-color: #f2f2f2;
}
.case .case_title {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .case .case_title {
    display: block;
    margin-bottom: 60px;
  }
}
.case .case_title h1 {
  font-size: 40px;
  border-right: 1px solid #333;
  padding-right: 50px;
  margin-right: 50px;
}
@media screen and (max-width: 959px) {
  .case .case_title h1 {
    font-size: 25px;
    padding-right: 0px;
    margin-right: 25px;
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .case .case_title h1 {
    border-right: 0px;
    text-align: center;
    margin-right: 0px;
    padding-right: 0px;
    width: 100%;
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.case .case_title p {
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .case .case_title p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .case .case_title p {
    font-size: 12px;
  }
}
.case .case_wrapper_items01 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items01 {
    display: block;
  }
}
.case .case_wrapper_items01 .case_wrapper_item {
  width: 30%;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items01 .case_wrapper_item {
    width: 80%;
    margin: 0 auto 80px;
  }
}
.case .case_wrapper_items01 .case_wrapper_item img {
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items01 .case_wrapper_item img {
    width: 20%;
  }
}
.case .case_wrapper_items01 .case_wrapper_item h1 {
  font-size: 25px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items01 .case_wrapper_item h1 {
    margin-top: 20px;
    font-size: 17px;
  }
}
.case .case_wrapper_items02 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items02 {
    display: block;
  }
}
.case .case_wrapper_items02 .case_wrapper_item {
  width: 30%;
}
.case .case_wrapper_items02 .case_wrapper_item:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items02 .case_wrapper_item {
    width: 80%;
    margin: 0 auto 80px;
  }
}
.case .case_wrapper_items02 .case_wrapper_item img {
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items02 .case_wrapper_item img {
    width: 20%;
  }
}
.case .case_wrapper_items02 .case_wrapper_item h1 {
  font-size: 25px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .case .case_wrapper_items02 .case_wrapper_item h1 {
    margin-top: 20px;
    font-size: 17px;
  }
}
.case .case_plus {
  margin-top: 100px;
  border-bottom: 1.5px solid #000;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .case .case_plus {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
  }
}
.case .case_plus h1 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  position: relative;
  padding: 0 65px;
}
@media screen and (max-width: 959px) {
  .case .case_plus h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .case .case_plus h1 {
    font-size: 15px;
    padding: 0px 0px;
  }
}
.case .case_plus h1::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #000;
}
.case .case_plus h1 span {
  position: relative;
  padding: 0 1em;
  background: #f2f2f2;
}
.case .case_plus .case_plus_wrapper01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .case .case_plus .case_plus_wrapper01 {
    flex-wrap: wrap;
    margin-bottom: 0px;
  }
}
.case .case_plus .case_plus_wrapper01 img {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .case .case_plus .case_plus_wrapper01 img {
    width: 48%;
    margin-bottom: 10px;
  }
}
.case .case_plus .case_plus_wrapper02 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .case .case_plus .case_plus_wrapper02 {
    flex-wrap: wrap;
  }
}
.case .case_plus .case_plus_wrapper02 img {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .case .case_plus .case_plus_wrapper02 img {
    width: 48%;
    margin-bottom: 10px;
  }
}
.case .case_caption {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .case .case_caption {
    font-size: 12px;
    text-align: left;
  }
}

/*=============================
business
=============================*/
.business {
  background-color: #f2f2f2;
}
@media screen and (max-width: 959px) {
  .business {
    padding-bottom: 0px;
  }
}
.business .business_01,
.business .business_02 {
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  .business .business_01 {
    margin-bottom: 0px;
  }
  .business .business_02 {
    width: 70%;
    margin: 0 auto 30px;
  }
}
.business .business_box {
  background-color: #00194b;
  color: #fff;
  padding: 20px 50px;
}
.business .business_box h1 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .business .business_box h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .business .business_box h1 {
    font-size: 20px;
  }
}
.business .business_box p {
  text-align: center;
  font-size: 25px;
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .business .business_box p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .business .business_box p {
    font-size: 15px;
  }
}
.business .business_box .business_box_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .business .business_box .business_box_wrapper {
    display: block;
  }
}
.business .business_box .business_box_wrapper img {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .business .business_box .business_box_wrapper img {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .business .business_box .business_box_wrapper img:last-child {
    margin-bottom: 0px;
  }
}
.business .business_wrapper {
  background-color: #fff !important;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .business .business_wrapper {
    display: block;
  }
}
.business .business_wrapper .business_wrapper_left {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .business .business_wrapper .business_wrapper_left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.business .business_wrapper .business_wrapper_right {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .business .business_wrapper .business_wrapper_right {
    width: 80%;
    margin: 0 auto;
  }
}

.b-contents_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .b-contents_wrapper {
    display: block;
  }
}
.b-contents_wrapper .b-wrapper_l {
  width: 25%;
  background-color: #00194b;
  color: #fff;
  padding: 35px;
}
@media screen and (max-width: 959px) {
  .b-contents_wrapper .b-wrapper_l {
    width: 32%;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .b-contents_wrapper .b-wrapper_l {
    width: 100%;
    padding: 20px 25px;
  }
}
.b-contents_wrapper .b-wrapper_l img {
  width: 80%;
  margin: 0 auto 15px;
}
@media screen and (max-width: 959px) {
  .b-contents_wrapper .b-wrapper_l img {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .b-contents_wrapper .b-wrapper_l img {
    width: 35%;
  }
}
.b-contents_wrapper .b-wrapper_l h3 {
  width: 100%;
  font-size: min(3vw, 4.2rem);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .b-contents_wrapper .b-wrapper_l h3 {
    font-size: 2.2rem;
  }
}
.b-contents_wrapper .b-wrapper_l h4 {
  margin-top: 20px;
  font-size: min(1.6vw, 2.2rem);
}
@media screen and (max-width: 959px) {
  .b-contents_wrapper .b-wrapper_l h4 {
    margin-top: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .b-contents_wrapper .b-wrapper_l h4 {
    letter-spacing: 0.12em;
    font-size: 1.6rem;
  }
}
.b-contents_wrapper .b-wrapper_l p {
  margin-top: 15px;
  font-size: min(1.2vw, 1.5rem);
}
@media screen and (max-width: 959px) {
  .b-contents_wrapper .b-wrapper_l p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .b-contents_wrapper .b-wrapper_l p {
    font-size: 1.1rem;
  }
}
.b-contents_wrapper .b-wrapper_r {
  width: 73%;
}
@media screen and (max-width: 959px) {
  .b-contents_wrapper .b-wrapper_r {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .b-contents_wrapper .b-wrapper_r {
    width: 100%;
    margin: 30px auto;
  }
}

.business_02 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .business_02 {
    margin-top: 30px;
  }
}

/*=============================
revenue
=============================*/
.revenue {
  background-color: #f2f2f2;
}
.revenue .revenue_01,
.revenue .revenue_02 {
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  .revenue .revenue_01 {
    margin-bottom: 0px;
  }
  .revenue .revenue_02 {
    width: 70%;
    margin: 0 auto 30px;
  }
}
.revenue .revenue_box {
  background-color: #b10011;
  color: #fff;
  padding: 20px 50px;
}
@media screen and (max-width: 959px) {
  .revenue .revenue_box {
    margin-bottom: 0px;
  }
}
.revenue .revenue_box h1 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .revenue .revenue_box h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .revenue .revenue_box h1 {
    font-size: 15px;
  }
}
.revenue .revenue_box p {
  text-align: center;
  font-size: 25px;
  margin-top: 0px;
}
@media screen and (max-width: 959px) {
  .revenue .revenue_box p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .revenue .revenue_box p {
    font-size: 12px;
  }
}
.revenue .revenue_box .revenue_box_wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .revenue .revenue_box .revenue_box_wrapper {
    display: block;
  }
}
.revenue .revenue_box .revenue_box_wrapper img {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .revenue .revenue_box .revenue_box_wrapper img {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .revenue .revenue_box .revenue_box_wrapper img:last-child {
    margin-bottom: 0px;
  }
}
.revenue .revenue_wrapper {
  background-color: #fff;
  padding: 30px;
}
.revenue .b-wrapper_l {
  background-color: #b10011;
}

.revenue_02 {
  margin-top: 30px;
}

/*=============================
info
=============================*/
.info {
  background: #d3d3d4;
}
.info .info_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .info .info_wrapper {
    display: block;
  }
}
.info .info_wrapper a {
  display: block;
  width: 31%;
}
@media screen and (max-width: 959px) {
  .info .info_wrapper a {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .info .info_wrapper a:last-child {
    margin-bottom: 0px;
  }
}
.info .more {
  width: 25%;
  margin: 0 auto;
  margin-top: 35px;
}
@media screen and (max-width: 959px) {
  .info .more {
    width: 70%;
    margin-top: 20px;
  }
}

/*=============================
contact
=============================*/
.contact {
  padding: 70px 0px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 0px;
  }
}
.contact .contact_title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .contact .contact_title {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact_title {
    font-size: 17px;
  }
}
.contact .contact_wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact .contact_wrapper {
    display: block;
  }
}
.contact .contact_wrapper .contact_left {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .contact .contact_wrapper .contact_left {
    margin-bottom: 10px;
    width: 100%;
    display: block;
  }
}
.contact .contact_wrapper .contact_right {
  width: 49%;
}

/*=============================
map
=============================*/
.map iframe {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .map iframe {
    margin-bottom: 0px !important;
  }
}

/*=============================
footer
=============================*/
footer {
  padding: 30px 0px 50px;
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  footer {
    width: 500px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    width: 250px;
    padding-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */