@charset "UTF-8";
/*

	サービス

	*/
/* Vendor */
/* Variable */
/*

breakpoints

*/
/*

base color

*/
/*

text color

*/
/*

table color

*/
/*

button color

*/
/*

width

*/
/*

webfonts

*/
/* Mixin */
/*

clearfix

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media screen and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media screen and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media screen and (min-width: 960px) {
	height: 40px;
}
```

*/
/* Function */
html, body {
  overflow-x: hidden;
}

body.service {
  width: 100%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
  /* ↓↓↓ 共通部品 ↓↓↓ */
  /* ↑↑↑ 共通部品 ↑↑↑*/
}

body.service h2 {
  margin: 0;
  font-size: 38px;
  font-size: 3.8rem;
  color: #1541a2;
  font-weight: 700;
  position: relative;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  body.service h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 575px) {
  body.service h2 {
    padding: 0 30px;
    font-size: 20px;
    font-size: 2rem;
  }
}

body.service .mv.blue {
  background-image: url("../../images/service/bg_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  body.service .mv.blue {
    background-image: url("../../images/service/sp_bg_01.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 575px) {
  body.service .mv.blue p {
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  body.service .breadcrumbs ul {
    padding: 10px 0 10px;
  }
}

@media screen and (max-width: 575px) {
  body.service .breadcrumbs ul li {
    font-size: 10px;
    margin-left: 10px;
  }
}

body.service .inspection {
  width: 100%;
  margin: 40px auto 0;
}

@media screen and (max-width: 575px) {
  body.service .inspection {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(199, 232, 250, 0.2);
  }
}

body.service .inspection__wrapper {
  position: relative;
}

body.service .inspection__wrapper::after {
  content: "";
  width: 95%;
  height: 95%;
  position: absolute;
  top: -2%;
  left: 10%;
  background-color: rgba(199, 232, 250, 0.2);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  body.service .inspection__wrapper::after {
    display: none;
  }
}

body.service .inspection__title {
  text-align: center;
}

body.service .inspection__title h2::before, body.service .inspection__title h2::after {
  width: calc(60% - 153px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.service .inspection__title h2::before, body.service .inspection__title h2::after {
    max-width: 260px;
  }
}

@media screen and (max-width: 991px) {
  body.service .inspection__title h2::before, body.service .inspection__title h2::after {
    width: calc(55% - 121px);
    max-width: 290px;
  }
}

@media screen and (max-width: 767px) {
  body.service .inspection__title h2::before, body.service .inspection__title h2::after {
    width: calc(60% - 121px);
    min-width: 90px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__title h2::before, body.service .inspection__title h2::after {
    width: calc(58% - 81px);
    min-width: 75px;
    max-width: 170px;
  }
}

body.service .inspection__contents {
  margin-top: 10px;
  padding-top: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  zoom: 1;
}

body.service .inspection__contents::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents {
    background: none;
    padding-top: 0;
  }
}

body.service .inspection__contents .contents__intro {
  margin: 0 auto 30px;
  color: #ED1C24;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents__intro {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: -1px;
    margin: 0 auto 10px;
  }
}

body.service .inspection__contents .contents__box {
  width: 23.5%;
  text-align: center;
  float: left;
  margin-left: 2%;
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents__box {
    width: 47.8%;
    margin-left: 0;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents__box {
    width: 47.8%;
    margin-left: 0;
  }
}

body.service .inspection__contents .contents__box:first-of-type {
  margin-left: 0;
}

body.service .inspection__contents .contents__box .contents__title {
  height: 50px;
  line-height: 50px;
  font-size: 19px;
  font-size: 1.9rem;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  background-color: #1541a2;
}

@media screen and (max-width: 1199px) {
  body.service .inspection__contents .contents__box .contents__title {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents__box .contents__title {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents__box .contents__title {
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.service .inspection__contents .contents__box p {
  margin: 0 auto;
}

body.service .inspection__contents .contents__box p img {
  width: 100%;
  height: 21.5%;
  -o-object-fit: cover;
  object-fit: cover;
}

body.service .inspection__contents .contents__box .contents__bg {
  width: 100%;
  height: 160px;
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents__box .contents__bg {
    height: 110px;
  }
}

body.service .inspection__contents .contents__box .contents_01__bg {
  background-image: url("../../images/service/inspection_img_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top 100%;
}

body.service .inspection__contents .contents__box .contents_02__bg {
  background-image: url("../../images/service/inspection_img_02.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top 100%;
}

body.service .inspection__contents .contents__box .contents_03__bg {
  background-image: url("../../images/service/inspection_img_03.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.service .inspection__contents .contents__box .contents_04__bg {
  background-image: url("../../images/service/inspection_img_04.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents_02,
  body.service .inspection__contents .contents_04 {
    float: right;
  }
  body.service .inspection__contents .contents_03,
  body.service .inspection__contents .contents_04 {
    margin-top: 15px;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents_02,
  body.service .inspection__contents .contents_04 {
    float: right;
  }
  body.service .inspection__contents .contents_03,
  body.service .inspection__contents .contents_04 {
    margin-top: 15px;
  }
}

body.service .inspection__contents .contents_05 {
  float: left;
  margin-top: 50px;
  width: 100%;
  border: solid 1px #1541a2;
  zoom: 1;
}

body.service .inspection__contents .contents_05::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents_05 {
    margin-top: 15px;
    background: #fff;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents_05 {
    margin-top: 15px;
    background: #fff;
  }
}

body.service .inspection__contents .contents_05__img {
  width: 23.5%;
  float: left;
}

@media screen and (max-width: 1199px) {
  body.service .inspection__contents .contents_05__img {
    width: 30%;
  }
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents_05__img {
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents_05__img {
    width: 100%;
    float: none;
  }
}

body.service .inspection__contents .contents_05__img .contents_05__bg {
  width: 100%;
  height: 200px;
  background-image: url("../../images/service/inspection_img_05.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents_05__img .contents_05__bg {
    height: 250px;
    background-image: url("../../images/service/sp_inspection_img_05.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents_05__img .contents_05__bg {
    height: 150px;
    background-image: url("../../images/service/sp_inspection_img_05.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

body.service .inspection__contents .contents_05__img h3 {
  text-align: center;
  height: 50px;
  line-height: 50px;
  font-size: 19px;
  font-size: 1.9rem;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  background-color: #1541a2;
}

@media screen and (max-width: 1199px) {
  body.service .inspection__contents .contents_05__img h3 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents_05__img h3 {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents_05__img h3 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.service .inspection__contents .contents_05__img p {
  margin: 0 auto;
}

body.service .inspection__contents .contents_05__text {
  float: right;
  width: 76.5%;
  padding: 25.5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 1199px) {
  body.service .inspection__contents .contents_05__text {
    padding: 10px 20px;
    width: 70%;
  }
}

@media screen and (max-width: 991px) {
  body.service .inspection__contents .contents_05__text {
    padding: 20px 0;
    float: none;
    margin: 0 auto;
    width: 90%;
  }
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents_05__text {
    float: none;
    width: 88%;
    padding: 0;
    margin: 17px auto;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.service .inspection__contents .contents_05__text .condition {
  margin: 0;
}

@media screen and (max-width: 575px) {
  body.service .inspection__contents .contents_05__text .condition {
    margin-top: 10px;
  }
}

body.service .inspection__contents .contents_05__text ol {
  margin: 0;
  padding-left: 20px;
}

body.service .inspection__contents .contents_05__text ol li {
  letter-spacing: -0.6px;
  list-style-type: decimal;
}

body.service .pricelist {
  width: 100%;
  margin: 40px auto 0;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.service .pricelist {
    margin: 0;
    padding-top: 0;
    padding-bottom: 20px;
    background-image: url("../../images/service/bg_02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

body.service .pricelist .pricelist__bg {
  position: relative;
  /* SP */
}

@media screen and (max-width: 575px) {
  body.service .pricelist .pricelist__bg {
    display: none;
  }
}

body.service .pricelist .pricelist__bg::before {
  /*スペースを作る*/
  content: "";
  display: block;
  top: -10%;
  left: 0;
  width: 100%;
  /*指定したい幅*/
  /* SP */
}

@media screen and (max-width: 575px) {
  body.service .pricelist .pricelist__bg::before {
    display: none;
  }
}

body.service .pricelist .pricelist__bg::after {
  /*画像を絶対配置*/
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  right: 10%;
  background-image: url("../../images/service/bg_02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 95%;
  /*幅*/
  height: 2745px;
  /*どれだけデカくなってもはみ出ないであろう高さを指定*/
  z-index: -2;
  /* SP */
}

@media screen and (max-width: 991px) {
  body.service .pricelist .pricelist__bg::after {
    height: 2450px;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist .pricelist__bg::after {
    display: none;
  }
}

body.service .pricelist__title {
  padding-top: 30px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .pricelist__title {
    padding-top: 20px;
  }
}

body.service .pricelist__title h2::before, body.service .pricelist__title h2::after {
  width: calc(63% - 306px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.service .pricelist__title h2::before, body.service .pricelist__title h2::after {
    width: calc(69% - 306px);
    max-width: 300px;
  }
}

@media screen and (max-width: 991px) {
  body.service .pricelist__title h2::before, body.service .pricelist__title h2::after {
    width: calc(69% - 242px);
  }
}

@media screen and (max-width: 767px) {
  body.service .pricelist__title h2::before, body.service .pricelist__title h2::after {
    width: calc(67% - 242px);
    min-width: 90px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist__title h2::before, body.service .pricelist__title h2::after {
    width: calc(70% - 162px);
    min-width: 50px;
    max-width: 110px;
  }
}

body.service .pricelist__table {
  padding-top: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table {
    padding-top: 10px;
    background: none;
  }
}

body.service .pricelist__table__text {
  color: #ED1C24;
  text-align: center;
  letter-spacing: 0px;
  width: 95%;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  body.service .pricelist__table__text {
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table__text {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table .table__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    /*スクロールバーの横幅指定*/
    /*スクロールバーの背景色・角丸指定*/
    /*スクロールバーの色・角丸指定*/
  }
  body.service .pricelist__table .table__scroll::-webkit-scrollbar {
    height: 10px;
  }
  body.service .pricelist__table .table__scroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #f2f2f2;
  }
  body.service .pricelist__table .table__scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #333;
  }
}

body.service .pricelist__table__common {
  width: 100%;
  margin-top: 30px;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table__common {
    width: 550px;
    margin-top: 15px;
    overflow-x: scroll;
  }
}

body.service .pricelist__table__common thead {
  width: 100%;
  height: 65px;
  line-height: 65px;
  font-size: 24px;
  font-size: 2.4rem;
  color: #fff;
}

@media screen and (max-width: 991px) {
  body.service .pricelist__table__common thead {
    height: 55px;
    line-height: 55px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table__common thead {
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.service .pricelist__table__common th, body.service .pricelist__table__common tr, body.service .pricelist__table__common td {
  text-align: center;
  vertical-align: middle;
}

body.service .pricelist__table__common th {
  font-weight: 700;
}

body.service .pricelist__table__common tbody .td__white {
  background-color: #fff;
}

body.service .pricelist__table__common tbody .td__yellow {
  background-color: #FFFFEB;
}

body.service .pricelist__table__common tbody .td__left {
  text-align: left;
}

body.service .pricelist__table__common tbody .td_remarks {
  padding-left: 1%;
  letter-spacing: -1px;
}

body.service .pricelist__table__common tbody tr {
  height: 65px;
}

@media screen and (max-width: 991px) {
  body.service .pricelist__table__common tbody tr {
    height: 55px;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table__common tbody tr {
    height: 35px;
  }
}

body.service .pricelist__table__common tbody .pricelist__th th {
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
}

body.service .pricelist__table__common tbody .pricelist__th th:first-of-type {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 991px) {
  body.service .pricelist__table__common tbody .pricelist__th th {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table__common tbody .pricelist__th th {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.service .pricelist__table__common tbody td {
  border-style: none dashed dashed;
  border-width: 1px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 991px) {
  body.service .pricelist__table__common tbody td {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 575px) {
  body.service .pricelist__table__common tbody td {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.service .pricelist__table__common tbody .weight td {
  border-style: none dashed dashed;
}

body.service .pricelist__table__common tbody .last__tr td {
  border-style: none dashed none;
}

body.service .pricelist__table__common tbody .warning {
  color: #ED1C24;
}

body.service .pricelist__table__01 {
  border: solid 3px #1541a2;
}

body.service .pricelist__table__01 thead {
  background-color: #1541a2;
}

body.service .pricelist__table__01 .pricelist__th {
  background-color: #466EBE;
}

body.service .pricelist__table__01 td {
  border-color: #1541a2;
}

body.service .pricelist__table__02 {
  margin-top: 40px;
  border: solid 3px #00A5B9;
}

body.service .pricelist__table__02 thead {
  background-color: #00A5B9;
}

body.service .pricelist__table__02 .pricelist__th {
  background-color: #41C0D1;
}

body.service .pricelist__table__02 td {
  border-color: #00A5B9;
}

body.service .optional {
  margin: 100px auto 0;
}

@media screen and (max-width: 575px) {
  body.service .optional {
    margin: 0;
    padding-bottom: 20px;
    background-color: rgba(199, 232, 250, 0.2);
  }
}

body.service .optional .wrapper {
  position: relative;
}

body.service .optional .wrapper::after {
  content: "";
  width: 95%;
  height: 95%;
  background-color: rgba(199, 232, 250, 0.2);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: -2%;
  left: 10%;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  body.service .optional .wrapper::after {
    display: none;
  }
}

body.service .optional__title {
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .optional__title {
    padding-top: 20px;
  }
}

body.service .optional__title h2::before, body.service .optional__title h2::after {
  width: calc(65% - 344px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.service .optional__title h2::before, body.service .optional__title h2::after {
    width: calc(72% - 344px);
    max-width: 180px;
  }
}

@media screen and (max-width: 991px) {
  body.service .optional__title h2::before, body.service .optional__title h2::after {
    width: calc(70% - 272.25px);
    max-width: 230px;
  }
}

@media screen and (max-width: 767px) {
  body.service .optional__title h2::before, body.service .optional__title h2::after {
    width: calc(70% - 272.25px);
    min-width: 90px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .optional__title h2::before, body.service .optional__title h2::after {
    width: calc(70% - 182.25px);
    min-width: 45px;
    max-width: 110px;
  }
}

body.service .optional__contents {
  margin-top: 10px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  zoom: 1;
}

body.service .optional__contents::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 575px) {
  body.service .optional__contents {
    padding: 0;
    background: none;
  }
}

body.service .optional__contents .contents__text {
  color: #ED1C24;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .optional__contents .contents__text {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: -1px;
  }
}

body.service .optional__contents .optional__list {
  margin-top: 30px;
}

@media screen and (max-width: 575px) {
  body.service .optional__contents .optional__list {
    margin-top: 15px;
  }
}

body.service .optional__contents .optional__list li {
  list-style: disc;
  margin-top: 5%;
}

body.service .optional__contents .optional__list li:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 575px) {
  body.service .optional__contents .optional__list li {
    margin-top: 2%;
    margin-left: 15px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

body.service .optional__contents .optional__list__l {
  width: 45%;
  float: left;
}

@media screen and (max-width: 575px) {
  body.service .optional__contents .optional__list__l {
    width: 100%;
    float: none;
  }
}

body.service .optional__contents .optional__list__r {
  width: 45%;
  float: right;
}

@media screen and (max-width: 575px) {
  body.service .optional__contents .optional__list__r {
    width: 100%;
    float: none;
  }
}

body.service .optional__contents .optional__img {
  width: 47%;
  float: right;
  margin-top: 70px;
}

@media screen and (max-width: 575px) {
  body.service .optional__contents .optional__img {
    width: 100%;
    float: none;
    margin-top: 10px;
  }
}

body.service .cancellation {
  margin: 40px auto 0;
}

@media screen and (max-width: 575px) {
  body.service .cancellation {
    margin-top: 0;
    padding-bottom: 20px;
    background-image: url("../../images/service/bg_02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

body.service .cancellation__bg {
  position: relative;
}

body.service .cancellation__bg::before {
  /*スペースを作る*/
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  /*指定したい幅*/
}

body.service .cancellation__bg::after {
  /*画像を絶対配置*/
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  right: 10%;
  background-image: url("../../images/service/bg_02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 95%;
  /*幅*/
  height: 310px;
  /*どれだけデカくなってもはみ出ないであろう高さを指定*/
  z-index: -2;
  /* SP */
}

@media screen and (max-width: 575px) {
  body.service .cancellation__bg::after {
    display: none;
  }
}

body.service .cancellation__title {
  padding-top: 30px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .cancellation__title {
    padding-top: 20px;
  }
}

body.service .cancellation__title h2::before, body.service .cancellation__title h2::after {
  width: calc(65% - 357.16px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.service .cancellation__title h2::before, body.service .cancellation__title h2::after {
    width: calc(72% - 357.16px);
    max-width: 180px;
  }
}

@media screen and (max-width: 991px) {
  body.service .cancellation__title h2::before, body.service .cancellation__title h2::after {
    width: calc(70% - 282.25px);
    max-width: 230px;
  }
}

@media screen and (max-width: 767px) {
  body.service .cancellation__title h2::before, body.service .cancellation__title h2::after {
    width: calc(70% - 282.25px);
    min-width: 90px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .cancellation__title h2::before, body.service .cancellation__title h2::after {
    width: calc(70% - 189.17px);
    min-width: 45px;
    max-width: 110px;
  }
}

body.service .cancellation__text {
  margin-top: 10px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 575px) {
  body.service .cancellation__text {
    padding: 0;
    background: none;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.service .cancellation__text ul {
  margin-top: 30px;
  padding-left: 30px;
}

@media screen and (max-width: 575px) {
  body.service .cancellation__text ul {
    margin-top: 10px;
    padding-left: 15px;
  }
}

body.service .cancellation__text ul li {
  list-style: disc;
  margin-top: 2.8%;
}

@media screen and (max-width: 575px) {
  body.service .cancellation__text ul li {
    margin-top: 2%;
  }
}

body.service .cancellation__text ul li:first-of-type {
  margin-top: 0;
}

body.service .animals {
  margin: 70px auto 0;
}

@media screen and (max-width: 575px) {
  body.service .animals {
    margin: 0 auto;
    padding-bottom: 20px;
    background-color: rgba(199, 232, 250, 0.2);
  }
}

body.service .animals .wrapper {
  position: relative;
}

body.service .animals .wrapper::after {
  content: "";
  width: 95%;
  height: 95%;
  background-color: rgba(199, 232, 250, 0.2);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: -2%;
  left: 10%;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  body.service .animals .wrapper::after {
    display: none;
  }
}

body.service .animals__title {
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .animals__title {
    padding-top: 20px;
  }
}

body.service .animals__title h2::before, body.service .animals__title h2::after {
  width: calc(60% - 153px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.service .animals__title h2::before, body.service .animals__title h2::after {
    max-width: 260px;
  }
}

@media screen and (max-width: 991px) {
  body.service .animals__title h2::before, body.service .animals__title h2::after {
    width: calc(55% - 121px);
    max-width: 290px;
  }
}

@media screen and (max-width: 767px) {
  body.service .animals__title h2::before, body.service .animals__title h2::after {
    width: calc(60% - 121px);
    min-width: 90px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals__title h2::before, body.service .animals__title h2::after {
    width: calc(58% - 81px);
    min-width: 75px;
    max-width: 170px;
  }
}

body.service .animals .animals__container {
  width: 100%;
  padding-top: 25px;
  margin-top: 25px;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container {
    padding-top: 0;
    margin-top: 5px;
    background: none;
  }
}

body.service .animals .animals__container .animals__text {
  display: none;
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__text {
    display: block;
    font-size: 10px;
    font-size: 1rem;
    color: #ED1C24;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 10px;
  }
}

body.service .animals .animals__container .animals__wrapper {
  zoom: 1;
}

body.service .animals .animals__container .animals__wrapper::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

body.service .animals .animals__container .animals__wrapper .animals__detail {
  width: 32.5%;
  float: left;
  margin-left: 1.25%;
}

body.service .animals .animals__container .animals__wrapper .animals__detail:first-of-type {
  margin-left: 0;
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail {
    width: 47.8%;
    margin-left: 4.4%;
  }
  body.service .animals .animals__container .animals__wrapper .animals__detail:last-of-type {
    width: 100%;
    margin: 15px 0 0;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail {
    width: 47.8%;
    margin-left: 4.4%;
  }
  body.service .animals .animals__container .animals__wrapper .animals__detail:last-of-type {
    width: 100%;
    margin: 15px 0 0;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail h3 {
  margin: 0;
  font-size: 19px;
  font-size: 1.9rem;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background-color: #1541a2;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail h3 {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail h3 {
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__dog {
  background-color: #F3FAF9;
  height: 335px;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__dog {
    height: 280px;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__dog {
    height: 170px;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__dog img {
  width: 47%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__dog img {
    width: 47%;
    min-width: 100px;
    max-width: 140px;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__dog img {
    min-width: 68px;
    max-width: 100px;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__cat {
  background-color: #FFFFF4;
  height: 335px;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__cat {
    height: 280px;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__cat {
    height: 170px;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__cat img {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__cat img {
    width: 70%;
    min-width: 100px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__cat img {
    min-width: 100px;
    max-width: 150px;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab {
  background-color: #FEF9F9;
  height: 335px;
  position: relative;
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab {
    height: 250px;
    padding: 0 15px 0 0;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab {
    height: 150px;
    padding: 0 15px 0 0;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box {
  width: 85%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box {
    height: 250px;
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box {
    height: 150px;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box .rab__img {
  margin: 0 auto;
  text-align: center;
  width: 35%;
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box .rab__img {
    width: 20%;
    min-width: 70px;
    max-width: 120px;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box .rab__img {
    width: 20%;
    min-width: 60px;
    max-width: 80px;
  }
}

body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box p {
  margin-top: 15px;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  color: #ED1C24;
}

@media screen and (max-width: 991px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box p {
    width: 52.8%;
    margin-top: 0;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .animals__container .animals__wrapper .animals__detail .animals__rab__box p {
    width: 52.8%;
    margin-top: 0;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.service .animals .special {
  width: 94%;
  margin: 40px auto 0;
}

@media screen and (max-width: 575px) {
  body.service .animals .special {
    width: 100%;
    margin: 10px auto 0;
  }
}

@media screen and (max-width: 575px) {
  body.service .animals .special__wrapper {
    padding: 25px 20px;
    background-color: rgba(255, 255, 255, 0.7);
  }
}

body.service .animals .special h3 {
  margin: 0;
  font-size: 26px;
  font-size: 2.6rem;
  color: #1541a2;
  font-weight: 700;
}

@media screen and (max-width: 575px) {
  body.service .animals .special h3 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

body.service .animals .special .special__text {
  margin-top: 10px;
}

@media screen and (max-width: 575px) {
  body.service .animals .special .special__text {
    margin-top: 5px;
  }
}

body.service .animals .special .special__text p {
  margin-top: 5px;
}

@media screen and (max-width: 575px) {
  body.service .animals .special .special__text p {
    margin-top: 0px;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0px;
  }
}

body.service .animals .special .special__text p:first-of-type {
  margin-top: 0;
}

body.service .animals .special__img {
  width: 85%;
  margin: 25px auto 0;
  zoom: 1;
}

body.service .animals .special__img::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

body.service .animals .special__img img {
  width: 45%;
}

@media screen and (max-width: 575px) {
  body.service .animals .special__img img {
    width: 100%;
  }
}

body.service .animals .special__img__01 {
  padding-top: 2%;
  float: left;
}

@media screen and (max-width: 575px) {
  body.service .animals .special__img__01 {
    padding-top: 0;
    float: none;
  }
}

body.service .animals .special__img__02 {
  float: right;
}

@media screen and (max-width: 575px) {
  body.service .animals .special__img__02 {
    margin-top: 15px;
    float: none;
  }
}

body.service .microchip {
  margin: 40px auto 0;
}

@media screen and (max-width: 575px) {
  body.service .microchip {
    margin-top: 0;
    padding-bottom: 20px;
    background-image: url("../../images/service/bg_02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

body.service .microchip .wrapper_bg {
  position: relative;
}

body.service .microchip .wrapper_bg::before {
  /*スペースを作る*/
  content: "";
  display: block;
  top: -10%;
  left: 0;
  width: 100%;
  /*指定したい幅*/
}

body.service .microchip .wrapper_bg::after {
  /*画像を絶対配置*/
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  right: 10%;
  background-image: url("../../images/service/bg_02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 95%;
  /*幅*/
  height: 1800px;
  /*どれだけデカくなってもはみ出ないであろう高さを指定*/
  z-index: -2;
  /* SP */
}

@media screen and (max-width: 1199px) {
  body.service .microchip .wrapper_bg::after {
    height: 2200px;
  }
}

@media screen and (max-width: 991px) {
  body.service .microchip .wrapper_bg::after {
    height: 2200px;
  }
}

@media screen and (max-width: 575px) {
  body.service .microchip .wrapper_bg::after {
    display: none;
  }
}

body.service .microchip__title {
  padding-top: 30px;
  text-align: center;
}

body.service .microchip__title h2::before, body.service .microchip__title h2::after {
  width: calc(60% - 259.39px);
  max-width: 350px;
}

@media screen and (max-width: 1199px) {
  body.service .microchip__title h2::before, body.service .microchip__title h2::after {
    width: calc(65% - 259.39px);
    max-width: 200px;
  }
}

@media screen and (max-width: 991px) {
  body.service .microchip__title h2::before, body.service .microchip__title h2::after {
    width: calc(63% - 205.16px);
    max-width: 260px;
  }
}

@media screen and (max-width: 767px) {
  body.service .microchip__title h2::before, body.service .microchip__title h2::after {
    width: calc(63% - 205.16px);
    min-width: 90px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .microchip__title h2::before, body.service .microchip__title h2::after {
    width: calc(65% - 137.36px);
    min-width: 40px;
    max-width: 110px;
  }
}

body.service .microchip__contents {
  padding: 25px 40px;
  margin-top: 25px;
  background-color: rgba(255, 255, 255, 0.7);
  zoom: 1;
}

body.service .microchip__contents::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 575px) {
  body.service .microchip__contents {
    padding: 0;
    margin-top: 10px;
    background: none;
  }
}

body.service .microchip__contents__text {
  width: 59%;
  float: left;
}

@media screen and (max-width: 991px) {
  body.service .microchip__contents__text {
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 575px) {
  body.service .microchip__contents__text {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.service .microchip__contents__text p {
  margin: 0;
  line-height: 2.3;
}

body.service .microchip__contents__img {
  width: 37%;
  float: right;
}

@media screen and (max-width: 991px) {
  body.service .microchip__contents__img {
    width: 100%;
    float: none;
    margin-top: 15px;
  }
}

body.service .surgery {
  margin: 100px auto 80px;
}

@media screen and (max-width: 575px) {
  body.service .surgery {
    margin: 0 auto;
    padding-bottom: 20px;
    background-color: rgba(199, 232, 250, 0.2);
  }
}

body.service .surgery .wrapper {
  position: relative;
}

body.service .surgery .wrapper::after {
  content: "";
  width: 95%;
  height: 90%;
  background-color: rgba(199, 232, 250, 0.2);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: -2%;
  left: 10%;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  body.service .surgery .wrapper::after {
    display: none;
  }
}

body.service .surgery__title {
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.service .surgery__title {
    padding-top: 20px;
  }
}

@media screen and (max-width: 1199px) {
  body.service .surgery__title h2 {
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  body.service .surgery__title h2 {
    padding: 0px;
  }
}

body.service .surgery__title h2::before, body.service .surgery__title h2::after {
  width: calc(78% - 623.79px);
  max-width: 250px;
}

@media screen and (max-width: 1199px) {
  body.service .surgery__title h2::before, body.service .surgery__title h2::after {
    width: calc(85% - 623.79px);
    min-width: 20px;
    max-width: 200px;
  }
}

@media screen and (max-width: 991px) {
  body.service .surgery__title h2::before, body.service .surgery__title h2::after {
    width: calc(78% - 493.36px);
    min-width: 50px;
    max-width: 260px;
  }
}

@media screen and (max-width: 767px) {
  body.service .surgery__title h2::before, body.service .surgery__title h2::after {
    width: calc(68% - 252.25px);
    min-width: 20px;
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body.service .surgery__title h2::before, body.service .surgery__title h2::after {
    width: calc(65% - 168.92px);
    min-width: 40px;
    max-width: 110px;
  }
}

body.service .surgery__contents {
  padding: 25px 40px;
  margin-top: 25px;
  background-color: rgba(255, 255, 255, 0.7);
  zoom: 1;
}

@media screen and (max-width: 991px) {
  body.service .surgery__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Flexコンテナ―に設定 */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 575px) {
  body.service .surgery__contents {
    padding: 0;
    margin-top: 10px;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Flexコンテナ―に設定 */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

body.service .surgery__contents::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

body.service .surgery__contents__img {
  width: 40%;
  float: left;
}

@media screen and (max-width: 991px) {
  body.service .surgery__contents__img {
    width: 100%;
    float: none;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 10px;
  }
}

body.service .surgery__contents__text {
  width: 55%;
  padding-top: 5px;
  float: right;
}

@media screen and (max-width: 991px) {
  body.service .surgery__contents__text {
    width: 100%;
    float: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

body.service .surgery__contents__text p {
  margin: 0;
  line-height: 2.3;
}

@media screen and (max-width: 575px) {
  body.service .surgery__contents__text p {
    font-size: 10px;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=service.css.map */

body.service .cancellation .contents__text {
    color: #ED1C24;
    text-align: center;
}
body.service .cancellation .contents__text.contents__text02 {
  font-weight: bold;
  margin-top: 10px;
}

/* notes */
body.service .notes h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-size: 2.6rem;
  color: #1541a2;
  font-weight: 700;
}
body.service .notes p.text-red {
  color: #ED1C24
}
body.service .notes-inner {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #c7c7c7;
}
@media (max-width:767px) {
  body.service .notes .image-wrapper {
    margin-top: 20px;
  }
}
@media (max-width:575px) {
  body.service .notes h3 {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  body.service .notes p {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0px;
  }
}
