@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- common.css  共通パーツCSS
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic,
    "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
}
.tx-bold {
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", sans-serif;
}

@font-face {
  font-family: "ProximaNova-Regular";
  src: url("../font/proxima-nova.woff") format("woff");
  font-weight: normal;
}
.my-font01 {
  font-family: "ProximaNova-Regular";
  font-weight: normal;
}

@font-face {
  font-family: "ProximaNova-Bold";
  src: url("../font/proxima-nova-bold.woff") format("woff");
  font-weight: bold;
}
.my-font02 {
  font-family: "ProximaNova-Bold";
  font-weight: bold;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base-color01 {
  /*--メイン文字カラー 黒--*/
  color: #313131;
}
.base-back01 {
  /*--メイン背景カラー--*/
  background: #fff;
}
.point-color01 {
  /*--ポイント文字カラー 赤--*/
  color: #c0506b;
}
.point-color02 {
  /*--ポイント文字カラー 緑--*/
  color: #3c676e;
}
.point-back01 {
  /*--ポイント背景カラー 赤--*/
  background: #c0506b;
}
.point-back02 {
  /*--ポイント背景カラー 緑--*/
  background: #3c676e;
}
.point-back03 {
  /*--ポイント背景カラー 青--*/
  background: #2ba7d2;
}

.LightPink {
	/*--ポイント背景カラー 薄いピンク--*/
    /*background: rgba(192, 80, 107, 0.5);*/
	background: #ffb5c7;
}
 .lightBlue {
	/*--ポイント背景カラー 水色--*/
   /* background: rgba(43, 167, 210, 0.5);*/
	 background: #4dceff;
}


.accent-back01 {
  /*--アクセント背景カラー グレー--*/
  background: #f0eeea;
}
.accent-back02 {
  /*--アクセント背景カラー グラデーション--*/
  background-image: linear-gradient(to right, #f0dbdb, #d0ecf6);
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
.btn01 {
  min-width: 280px;
  min-height: 60px;
  display: inline-block;
  border: solid 1px #3c676e;
  padding: 20px 20px 17px;
  color: #3c676e;
  background-color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 650px) {
  .btn01 {
    max-width: 100%;
    padding: 18px 20px 17px;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 650px) {
  .mywidth {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}

/* title */
.content-title01 {
  position: relative;
  margin-top: -5px;
  padding-top: 40px;
}
.content-title01::before {
  content: attr(data-text) "";
  font-size: 20px;
  font-family: "ProximaNova-Regular";
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 68px;
}
.content-title01::after {
  content: "";
  width: 54px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 10px;
  left: 0;
}
@media screen and (max-width: 650px) {
  .content-title01 {
    padding-top: 34px;
  }
  .content-title01::before {
    font-size: 18px;
    left: 55px;
  }
  .content-title01::after {
    width: 40px;
  }
}

/*----------------------------------------------------
	common.css  共通パーツCSS
----------------------------------------------------*/
/* slide */
.common-slide-wrap {
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 13px;
}
.common-slide-box {
  width: calc((100% - (32px * 3)) / 4);
  height: 330px;
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 13px;
  margin-bottom: 13px;
}
.common-slide-box a {
  display: block;
  border: 1px solid #e7e6e6;
  box-shadow: 0px 0px 13px 0px rgba(211, 213, 213, 0.47);
  border-radius: 8px;
  color: #313131;
  overflow: hidden;
  position: relative;
}
.common-slide-box .image.small {
  height: 160px;
}
.common-slide-box .image.medium {
  height: 200px;
}
.common-slide-box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.common-slide-box .text-wrap {
  padding: 10px 9px 55px 10px;
}
.common-slide-box .text-wrap .title {
  letter-spacing: -0.02em;
  color: #000;
}
.common-slide-box .text-wrap .list dt {
  width: 50px;
  margin-right: 6px;
  border-radius: 30px;
  padding-top: 1px;
  padding-bottom: 2px;
}
.common-slide-box .text-wrap .list dt.pink {
  background-color: #edddde;
}
.common-slide-box .text-wrap .list dt.blue {
  background-color: #d2ebf4;
}
.common-slide-box .text-wrap .list dd {
  width: calc(100% - 56px);
}
.common-slide-box .text-wrap .list dt,
.common-slide-box .text-wrap .list dd {
  margin-top: 7px;
}
.common-slide-box .text-wrap .more {
  border-top: 1px solid #e1e1e1;
  width: 100%;
  height: 45px;
  padding-top: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 650px) {
  .common-slide-wrap {
  }
  .common-slide-box {
    width: 90vw;
  }
  .common-slide-box .image.small {
    height: 180px;
  }
  .common-slide-box .image.medium {
    height: 200px;
  }
  .common-slide-box .text-wrap {
    padding: 15px 15px 60px;
  }
  .common-slide-box .text-wrap .list dt {
    width: 70px;
    margin-right: 0;
    padding-top: 4px;
  }
  .common-slide-box .text-wrap .more {
    padding-top: 12px;
  }
}

/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/
/*  content01  */
.content01 {
  padding-top: 55px;
  padding-bottom: 60px;
}
.content01 .sub-title::before {
  content: "";
  width: 1px;
  height: 22px;
  background-color: #000;
  transform: rotate(-45deg);
  margin-right: 25px;
  margin-bottom: 2px;
}
.content01 .sub-title::after {
  content: "";
  width: 1px;
  height: 22px;
  background-color: #000;
  transform: rotate(45deg);
  margin-left: 20px;
  margin-bottom: 2px;
}
.content01 .box-wrap {
  margin-left: -16.5px;
  margin-right: -16.5px;
}
.content01 .box {
  margin-left: 16.5px;
  margin-right: 16.5px;
}
.content01 .box a {
  display: block;
  position: relative;
  z-index: 1;
  padding-bottom: 117px;
}
.content01 .box .image {
  width: 270px;
  height: 290px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.content01 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.content01 .box .text-wrap {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  width: calc(100% - 40px);
  padding: 15px 0 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 150px;
}

.content01 .box .text-wrap .name{
height:60px;
}


.content01 .box .text-wrap .name::after {
  content: attr(data-text) "";
  font-size: 11px;
  font-weight: normal;
  color: #8a8989;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}
.content01 .box .text-wrap .btn {
  display: inline-block;
  width: 170px;
  height: 40px;
  border-radius: 20px;
  padding-top: 10px;
}
@media screen and (max-width: 650px) {
  .content01 .box-wrap,
  .content01 .box {
    margin-left: 0;
    margin-right: 0;
  }
  .content01 .sub-title::before {
    height: 50px;
  }
  .content01 .sub-title::after {
    height: 50px;
  }
  .content01 .box {
    width: 90vw;
  }
  .content01 .box .image {
    width: 100%;
   height: 380px;
  }
  .content01 .box .image img {
    object-position: 50% 0;
  }
  .content01 .box .text-wrap .btn {
    display: inline-block;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

/*  content02  */
.content02 {
  padding-top: 60px;
  padding-bottom: 47px;
}
@media screen and (max-width: 650px) {
  .content02 {
    padding-bottom: 60px;
  }
}

/*  content03  */
.content03 .left {
  width: calc((100% - 1180px) / 2 + 590px);
  padding-left: calc((100% - 1180px) / 2);
}
.content03 .left .inner {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 70px;
  padding-right: 70px;
}
.content03 .left .title {
  padding-bottom: 22px;
  position: relative;
}
.content03 .left .title::before {
  content: attr(data-text) "";
  font-family: "ProximaNova-Regular";
  font-weight: normal;
  font-size: 20px;
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.content03 .left .title::after {
  content: "";
  width: 155px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.content03 .right {
  flex: 1;
  padding-right: calc((100% - 1180px) / 2);
}
.content03 .right .inner {
  position: relative;
  padding-bottom: 44px;
}
.content03 .right .image-wrap {
  height: 533px;
}
.content03 .right .image-wrap .image-main {
  position: absolute;
  top: 194px;
  left: 32px;
  z-index: 1;
}
.content03 .right .image-wrap .image-text01,
.content03 .right .image-wrap .image-text02,
.content03 .right .image-wrap .image-text03 {
  width: 251px;
  height: 183px;
  position: absolute;
}
.content03 .right .image-wrap .image-text01 {
  background: url("../images/about-02.png") no-repeat center / cover;
  top: 51px;
  left: 49px;
  padding-top: 24px;
  padding-left: 70px;
}
.content03 .right .image-wrap .image-text02 {
  background: url("../images/about-03.png") no-repeat center / cover;
  top: 98px;
  right: 0;
  padding-top: 24px;
  padding-left: 62px;
}
.content03 .right .image-wrap .image-text03 {
  background: url("../images/about-04.png") no-repeat center / cover;
  top: 309px;
  right: 20px;
  padding-top: 20px;
  padding-left: 80px;
}
.content03 .right .yellow {
  color: #F8FB87;
  position: relative;
  margin-left: 65px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.content03 .right .yellow::before {
  content: "";
  width: 48px;
  height: 30px;
  background: url("../images/quote-yellow.png") no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
}
.content03 .right .yellow::after {
  content: "";
  width: 48px;
  height: 30px;
  background: url("../images/quote-yellow.png") no-repeat center / cover;
  position: absolute;
  bottom: 0;
  right: 35px;
  transform: scale(-1, -1);
}
@media screen and (max-width: 650px) {
  .content03 .left {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .content03 .left .inner {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .content03 .right {
    flex: 1;
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .content03 .right .image-wrap {
    height: 410px;
  }
  .content03 .right .image-wrap .image-main {
    top: 130px;
    left: calc(50% - 200px);
  }
  .content03 .right .image-wrap .image-main img {
    width: 190px;
    height: 271px;
  }
  .content03 .right .image-wrap .image-text01,
  .content03 .right .image-wrap .image-text02,
  .content03 .right .image-wrap .image-text03 {
    width: 176px;
    height: 128px;
  }
  .content03 .right .image-wrap .image-text01 {
    top: 30px;
    left: calc(50% - 170px);
    padding-top: 15px;
    padding-left: 43px;
  }
  .content03 .right .image-wrap .image-text02 {
    top: 115px;
    right: calc(50% - 180px);
    padding-top: 15px;
    padding-left: 32px;
  }
  .content03 .right .image-wrap .image-text03 {
    top: 270px;
    right: calc(50% - 170px);
    padding-top: 15px;
    padding-left: 50px;
  }
  .content03 .right .yellow {
    margin-left: 0;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .content03 .right .yellow::before,
  .content03 .right .yellow::after {
    width: 31px;
    height: 20px;
  }
  .content03 .right .yellow::after {
    right: 0;
  }
}

/*  content04  */
.content04 {
  height: 830px;
  background: url("../images/feature-06.jpg") no-repeat bottom center / 1920px
    auto;
  padding-top: 122px;
}
.content04 .title::before {
  content: "";
  width: 5px;
  height: 86px;
  background-color: #c0506b;
  transform: rotate(-40deg);
  margin-right: 43px;
  margin-bottom: -13px;
}
.content04 .title::after {
  content: "";
  width: 5px;
  height: 86px;
  background-color: #c0506b;
  transform: rotate(40deg);
  margin-left: 43px;
  margin-bottom: -13px;
}
.content04 .sub-title span {
  display: inline-block;
  border: 1px solid #c0506b;
  padding: 7px 10px;
  margin-right: 10px;
}
.content04 .box {
  width: 220px;
  height: 220px;
  background-image: linear-gradient(to right, #dfaaaa, #a9d6e6);
  position: relative;
  border-radius: 100%;
  margin-left: 18px;
  margin-right: 18px;
}
.content04 .box .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 650px) {
  .content04 {
    height: auto;
    background: url("../images/feature-06.jpg") no-repeat top 80px center / 190%
      auto;
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .content04 .title img {
    width: auto;
    height: 30px;
  }
  .content04 .title::before {
    width: 2px;
    height: 40px;
    margin-right: 30px;
    margin-bottom: -5px;
  }
  .content04 .title::after {
    width: 2px;
    height: 40px;
    margin-left: 30px;
    margin-bottom: -5px;
  }
  .content04 .sub-title span img {
    height: 36px;
  }
  .content04 .box {
    width: 180px;
    height: 180px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }
  .content04 .box:first-of-type {
    margin-top: 0;
  }
  .content04 .box img {
    width: 60px;
  }
  .content04 .box:first-of-type img {
    width: 46px;
  }
}

/*  content05  */
.content05 {
}
@media screen and (max-width: 650px) {
  .content05 {
  }
}

/*  content06  */
.content06 {
  padding-top: 70px;
}
@media screen and (max-width: 650px) {
  .content06 {
  }
}

/*  content07  */
.content07 {
  padding-top: 80px;
}
.content07 .left {
  width: 560px;
  height: 588px;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
.content07 .left::before {
  content: "";
  width: calc(560px + ((100vw - 1180px) / 2));
  height: 250px;
  background-image: linear-gradient(to right, #f0dbdb, #d0ecf6);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.content07 .title::before {
  content: attr(data-text) "";
  font-family: "ProximaNova-Bold";
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.2em;
}
.content07 .left .map {
  position: absolute;
  top: 50px;
  right: 30px;
}
.content07 .right {
  flex: 1;
}
.content07 .right dt {
  margin-top: 20px;
  margin-bottom: 8px;
  line-height: 1;
}
.content07 .right dt:first-of-type {
  margin-top: 0;
}
.content07 .right .area-list li a {
  display: block;
  background-color: #efefef;
  width: 80px;
  padding: 7px 0;
  border-radius: 20px;
  margin-left: 5px;
  margin-top: 9px;
  line-height: 1;
}
.content07 .right dt:first-of-type {
  color: #5689a9;
}
.content07 .right dt:nth-of-type(2) {
  color: #bf9ca8;
}
.content07 .right dt:nth-of-type(3) {
  color: #64928b;
}
.content07 .right dt:nth-of-type(4) {
  color: #e6c695;
}
.content07 .right dt:nth-of-type(5) {
  color: #a2c8b2;
}
.content07 .right dt:nth-of-type(6) {
  color: #c2b0ce;
}
.content07 .quick-area {
  padding-top: 25px;
  padding-bottom: 20px;
}
.content07 .quick-area .title {
  width: 300px;
  margin-right: 20px;
}
.content07 .quick-area .search-box-wrap {
  flex: 1;
}
.content07 .quick-area .box {
  margin-left: 14px;
}
.content07 .quick-area .box:first-of-type {
  margin-left: 0;
}
.content07 .quick-area .select-wrap {
  position: relative;
}
.content07 .quick-area .select-wrap::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 11px;
  border: 5px solid transparent;
  border-top: 9px solid #3c676e;
  z-index: 1;
}
.content07 .quick-area .select-wrap select {
  display: block;
  width: 220px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic,
    "Noto Sans JP", sans-serif;
}
.content07 .quick-area .sbtn-wrap {
  margin-left: 15px;
}
.content07 .quick-area .sbtn-wrap input[type="submit"] {
  border: none;
  width: 156px;
  height: 40px;
  padding-left: 18px;
  border-radius: 6px;
  cursor: pointer;
  background-image: url(../images/icon-search.png);
  background-repeat: no-repeat;
  background-position: center left 40px;
}
.content07 .quick-area .sbtn-wrap input[type="button"] {
  border: none;
  width: 156px;
  height: 40px;
  padding-left: 18px;
  border-radius: 6px;
  cursor: pointer;
  background-image: url(../images/icon-search.png);
  background-repeat: no-repeat;
  background-position: center left 40px;
}

@media screen and (min-width: 651px) {
  .content07 .right .area-list li:nth-of-type(7n + 1) a {
    margin-left: 0;
  }
  .content07 .right .area-list li:nth-of-type(-n + 7) a {
    margin-top: 0;
  }
}
@media screen and (max-width: 650px) {
  .content07 {
    padding-top: 70px;
  }
  .content07 .left {
    width: 100%;
    height: 340px;
    margin-right: 0;
  }
  .content07 .left::before {
    width: 90vw;
    height: 120px;
    right: 10vw;
  }
  .content07 .left .map {
    top: 30px;
    right: 0;
  }
  .content07 .left .map img {
    width: 280px;
  }
  .content07 .right {
    padding-bottom: 40px;
  }
  .content07 .right dt {
    margin-bottom: 2px;
  }
  .content07 .right .area-list li a {
    width: calc((90vw - (5px * 3)) / 4);
  }
  .content07 .right .area-list li:nth-of-type(4n + 1) a {
    margin-left: 0;
  }
  .content07 .quick-area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .content07 .quick-area .title {
    width: 100%;
    margin-right: 0;
  }
  .content07 .quick-area .box {
    width: 100%;
    margin-left: 0;
  }
  .content07 .quick-area .select-wrap select {
    width: 100%;
  }
  .content07 .quick-area .sbtn-wrap {
    margin-left: 0;
  }
  .content07 .quick-area .sbtn-wrap input[type="submit"] {
    width: 200px;
  }
}

/*  content08  */
.content08 {
  padding-top: 60px;
  padding-bottom: 67px;
}
.content08 .box {
  background-color: #fff;
  padding-left: 21px;
  padding-right: 19px;
  margin-top: 18px;
}
.content08 .box:first-of-type {
  margin-top: 0;
}
.content08 .box .question {
  padding-top: 22px;
  padding-left: 42px;
  padding-right: 43px;
  padding-bottom: 24px;
  position: relative;
  cursor: pointer;
}
.content08 .box .question::before {
  content: "Q";
  font-family: "ProximaNova-Regular";
  font-weight: normal;
  font-size: 20px;
  color: #c0506b;
  position: absolute;
  top: 25px;
  left: 0;
}
.content08 .box .question::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/icon-plus.png") no-repeat center / 16px auto;
  position: absolute;
  top: 29px;
  right: 0;
}
.content08 .box .question.open::after {
  background-image: url("../images/icon-minus.png");
}
.content08 .box .answer {
  padding-top: 5px;
  padding-left: 42px;
  padding-right: 40px;
  padding-bottom: 25px;
  position: relative;
  display: none;
}
.content08 .box .answer::before {
  content: "A";
  font-family: "ProximaNova-Regular";
  font-weight: normal;
  font-size: 20px;
  color: #3c676e;
  position: absolute;
  top: 10px;
  left: 1px;
}
@media screen and (max-width: 650px) {
  .content08 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .content08 .box {
    padding-left: 16px;
    padding-right: 16px;
  }
  .content08 .box .question,
  .content08 .box .answer {
    padding-left: 32px;
    padding-right: 22px;
  }
  .content08 .box .question {
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .content08 .box .question::before {
    top: 18px;
  }
  .content08 .box .question::after {
    top: 20px;
  }
}

/*  content09  */
.content09 {
  padding-top: 75px;
  padding-bottom: 80px;
}
.content09 .box-wrap {
  margin-left: -13px;
  margin-right: -13px;
}
.content09 .box {
  padding-left: 13px;
  margin-right: 13px;
  padding: 13px 0;
}
.content09 .box a {
  display: block;
}
.content09 .box .inner {
  border: 1px solid #e7e6e6;
  box-shadow: 0px 0px 13px 0px rgba(211, 213, 213, 0.47);
  border-radius: 8px;
  color: #313131;
  overflow: hidden;
}
.content09 .box .image {
  width: 250px;
}
.content09 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.content09 .box .text-wrap {
  flex: 1;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 30px;
}
.content09 .box .text-wrap .title {
  position: relative;
  z-index: 1;
  margin-right: 20px;
  padding-bottom: 10px;
  display: inline-block;
}
.content09 .box .text-wrap .title::before,
.content09 .box .text-wrap .title::after {
  content: "";
  width: 48px;
  height: 30px;
  background: url("../images/quote-gray.png") no-repeat center / cover;
  position: absolute;
  z-index: -1;
}
.content09 .box .text-wrap .title::before {
  top: -20px;
  left: -25px;
}
.content09 .box .text-wrap .title::after {
  bottom: 0;
  right: -40px;
  transform: scale(-1, -1);
}
.content09 .box .text-wrap p {
  color: #000;
}
@media screen and (max-width: 650px) {
  .content09 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .content09 .box {
    width: calc(90vw + 26px);
    margin-left: 0;
    margin-right: 0;
    padding-left: 13px;
    padding-right: 13px;
  }
  .content09 .box .inner .flex {
    display: block;
  }
  .content09 .box .image {
    width: 100%;
    height: 240px;
  }
  .content09 .box .image img {
    object-position: 50% 0;
  }
  .content09 .box .text-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .content09 .box .text-wrap .title {
    margin-right: 0;
    font-size: 18px;
  }
  .content09 .box .text-wrap .title::before {
    top: -20px;
    left: -10px;
  }
  .content09 .box .text-wrap .title::after {
    bottom: 0;
    right: -10px;
  }
}

/*  content10  */
.content10 {
  background: url("../images/footer-01.jpg") no-repeat center / cover;
  padding-top: 50px;
  padding-bottom: 53px;
}
.content10 .title {
  position: relative;
  padding-bottom: 18px;
}
.content10 .title::before {
  content: attr(data-text) "";
  font-size: 20px;
  font-family: "ProximaNova-Regular";
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.content10 .title::after {
  content: "";
  width: 54px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.content10 .tel-btn,
.content10 .contact-btn {
  width: 430px;
  height: 90px;
  border-radius: 8px;
}
.content10 .tel-btn {
  margin-right: 120px;
  padding-top: 10px;
}
.content10 .tel-btn span {
  display: block;
  line-height: 1.15;
}
.content10 .tel-btn span.number::before {
  content: "";
  width: 24px;
  height: 31px;
  background: url("../images/footer-tel.png") no-repeat center / cover;
  display: inline-block;
  margin-bottom: -3px;
  margin-right: 6px;
}
.content10 .contact-btn {
  position: relative;
}
.content10 .contact-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 650px) {
  .content10 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .content10 .tel-btn,
  .content10 .contact-btn {
    width: 100%;
    height: 70px;
    margin-right: 0;
  }
  .content10 .tel-btn {
    padding-top: 8px;
  }
  .content10 .tel-btn span.number::before {
    background-size: 20px auto;
    margin-right: 4px;
  }
}

.border{
	border:1px solid #eee;
}

.pt0{
	padding-top:0px!important;
}

.pb20{
	padding-bottom:20px!important;
}


.pc-w250 {
 width:250px!important;
}
@media screen and (max-width: 650px) {
	.pc-w250 {
		width:inherit!important;
	}
}



.content11 {
    padding-top: 0;
    padding-bottom: 60px;
}
.content11 li {
    width: 23.33%;
}

@media screen and (max-width: 650px) {
	
	.content11 li {
		width: 70%;
		margin: 0 auto 20px;
	}
	
}




