@charset "UTF-8";
/*

	無麻酔CT検査のご案内

*/
/* 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;
  -ms-overflow-x: hidden;
}

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

body.veterinarian-anesthesiact .wrapper_bg {
  position: relative;
}

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

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .wrapper_bg::before {
    display: none;
  }
}

body.veterinarian-anesthesiact .wrapper_bg::after {
  /*画像を絶対配置*/
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  right: 10%;
  background-image: url("../../images/veterinarian-anesthesiact/contents_bg.gif");
  background-repeat: repeat;
  background-position: top left;
  width: 95%;
  /*幅*/
  height: 104%;
  z-index: -2;
  /* SP */
}

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

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

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

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

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .mv.blue h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

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

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

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

body.veterinarian-anesthesiact .about__wrapper {
  width: 75%;
  max-width: 1500px;
  margin: 5.9% auto 0;
  background-color: rgba(199, 232, 250, 0.18);
  position: relative;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .about__wrapper {
    width: 100%;
    margin: 0;
    padding: 15px 5% 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

body.veterinarian-anesthesiact .about__img {
  width: 28.6%;
  max-width: 430px;
  position: absolute;
  left: 8%;
  top: -20px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .about__img {
    position: static;
    width: 100%;
    margin-top: 15px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

body.veterinarian-anesthesiact .about__text {
  padding: 2.7% 5% 3.35% 39.3%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .about__text {
    margin: 0;
    padding: 0;
    text-align: center;
  }
}

body.veterinarian-anesthesiact .about__text h2 {
  font-size: 36px;
  font-size: 3.6rem;
  color: #1541a2;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid #1541a2;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .about__text h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .about__text h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .about__text h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .about__text h2 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

body.veterinarian-anesthesiact .about__text p {
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .about__text p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .about__text p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .about__text p {
    margin-top: 15px;
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .sp_bg {
    background-image: url("../../images/veterinarian-anesthesiact/contents_bg.gif");
    background-repeat: repeat;
    background-position: top left;
  }
}

body.veterinarian-anesthesiact .steps {
  margin-top: 65px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps {
    margin-top: 0;
  }
}

body.veterinarian-anesthesiact .steps .wrapper_bg::after {
  height: 104%;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .steps .wrapper_bg::after {
    height: 103%;
  }
}

body.veterinarian-anesthesiact .steps .title_blueline {
  padding-top: 3.5%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps .title_blueline {
    padding-top: 25px;
  }
}

body.veterinarian-anesthesiact .steps .title_blueline h2::before, body.veterinarian-anesthesiact .steps .title_blueline h2::after {
  width: calc(57% - 191.25px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .steps .title_blueline h2::before, body.veterinarian-anesthesiact .steps .title_blueline h2::after {
    width: calc(60% - 191.25px);
    min-width: 150px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .steps .title_blueline h2::before, body.veterinarian-anesthesiact .steps .title_blueline h2::after {
    width: calc(60% - 151.25px);
    min-width: 100px;
    max-width: 290px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .steps .title_blueline h2::before, body.veterinarian-anesthesiact .steps .title_blueline h2::after {
    width: calc(63% - 151.25px);
    min-width: 50px;
    max-width: 200px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps .title_blueline h2::before, body.veterinarian-anesthesiact .steps .title_blueline h2::after {
    width: calc(55% - 101.25px);
    min-width: 35px;
    max-width: 200px;
  }
}

body.veterinarian-anesthesiact .steps__inner {
  margin-top: 1.5%;
  padding-top: 4.5%;
  padding-bottom: 5.5%;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner {
    margin-top: 15px;
    padding-top: 0;
    padding-bottom: 25px;
    background-color: transparent;
  }
}

body.veterinarian-anesthesiact .steps__inner__contents {
  width: 94%;
  margin: 0 auto;
  margin-top: 5.5%;
  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.veterinarian-anesthesiact .steps__inner__contents {
    margin-top: 25px;
    width: 100%;
    display: block;
  }
}

body.veterinarian-anesthesiact .steps__inner__contents:first-of-type {
  margin-top: 0;
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text {
  width: 36%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text {
    width: 100%;
  }
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text h3 {
  position: relative;
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text h3 .title__bg {
  display: inline-block;
  width: 150px;
  height: 50px;
  background-image: url("../../images/veterinarian-anesthesiact/step_right.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text h3 .title__bg {
    width: 120px;
    height: 40px;
    background-size: 100% 100%;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text h3 .title__bg {
    width: 95px;
    height: 35px;
    background-size: 100% 100%;
  }
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text h3 .title__text {
  position: absolute;
  left: 15px;
  top: 15px;
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text h3 .title__text {
    position: absolute;
    left: 10px;
    top: 12px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text h3 .title__text {
    position: absolute;
    left: 10px;
    top: 12px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text p {
  margin-top: 20px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text p {
    margin-top: 5px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__text p {
    margin-top: 5px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__img {
  width: 61%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__img {
    margin-top: 10px;
    width: 100%;
  }
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__img p {
  width: 50%;
  margin-left: 15px;
}

body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__img p:nth-child(1) {
  margin-left: 0;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner__contents .steps__contents__img p:nth-child(2) {
    margin-left: 10px;
  }
}

body.veterinarian-anesthesiact .steps__inner .steps_02__contents .steps__contents__text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

body.veterinarian-anesthesiact .steps__inner .steps_02__contents .steps__contents__text h3 {
  text-align: right;
}

body.veterinarian-anesthesiact .steps__inner .steps_02__contents .steps__contents__text h3 .title__bg {
  background-image: url("../../images/veterinarian-anesthesiact/step_left.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner .steps_02__contents .steps__contents__text h3 .title__bg {
    background-size: 98% 100%;
  }
}

body.veterinarian-anesthesiact .steps__inner .steps_02__contents .steps__contents__text h3 .title__text {
  right: 10px;
}

body.veterinarian-anesthesiact .steps__inner .steps_02__contents .steps__contents__img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

body.veterinarian-anesthesiact .steps__inner .steps03__contents {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps__contents__text {
  width: 67%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps__contents__text {
    width: 100%;
  }
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps__contents__text p {
    margin-top: 0;
  }
}

body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps__contents__img {
  width: 29.3%;
}

body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps__contents__img p {
  width: 100%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps__contents__img {
    width: 48.5%;
    height: 72.5%;
    max-height: 120px;
    margin-top: 0;
  }
}

body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__img_02,
body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__text_02 {
  margin-top: 55px;
}

body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__img_02 p,
body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__text_02 p {
  margin-top: 0;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__img_02,
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__text_02 {
    margin-top: 0;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__inner .steps03__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__text_01 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__text_01 p {
    margin-top: 5px;
  }
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__text_02 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0;
  }
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__img_01 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 15px;
  }
  body.veterinarian-anesthesiact .steps__inner .steps03__contents .steps_03__img_02 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-left: 3%;
    margin-top: 15px;
  }
}

body.veterinarian-anesthesiact .steps__supplement {
  padding: 18px 18px 18px 45px;
  background-color: #1541a2;
  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.veterinarian-anesthesiact .steps__supplement {
    padding: 20px;
    background-color: #1541a2;
    display: block;
  }
}

body.veterinarian-anesthesiact .steps__supplement__text {
  width: 68%;
  color: #fff;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__supplement__text {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-anesthesiact .steps__supplement__img {
  width: 27%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .steps__supplement__img {
    width: 100%;
    margin-top: 20px;
  }
}

body.veterinarian-anesthesiact .movie {
  margin-top: 110px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .movie {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .movie .sp_br {
    display: block !important;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .movie .title_blueline h2 {
    padding: 0 20px;
    line-height: 1.5;
    font-size: 20px;
    font-size: 2rem;
  }
}

body.veterinarian-anesthesiact .movie .title_blueline h2::before, body.veterinarian-anesthesiact .movie .title_blueline h2::after {
  width: calc(83% - 688.5px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .movie .title_blueline h2::before, body.veterinarian-anesthesiact .movie .title_blueline h2::after {
    top: 26%;
    width: calc(70% - 344px);
    min-width: 150px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .movie .title_blueline h2::before, body.veterinarian-anesthesiact .movie .title_blueline h2::after {
    width: calc(70% - 302.5px);
    min-width: 70px;
    max-width: 180px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .movie .title_blueline h2::before, body.veterinarian-anesthesiact .movie .title_blueline h2::after {
    width: calc(80% - 302.5px);
    min-width: 50px;
    max-width: 120px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .movie .title_blueline h2::before, body.veterinarian-anesthesiact .movie .title_blueline h2::after {
    width: calc(76% - 202.5px);
    min-width: 35px;
    max-width: 105px;
  }
}

body.veterinarian-anesthesiact .movie .movie__contents {
  margin-top: 20px;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .movie .movie__contents {
    margin-top: 15px;
  }
}

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

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .movie .movie__contents::before {
    display: none;
  }
}

body.veterinarian-anesthesiact .movie .movie__contents::after {
  /*画像を絶対配置*/
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  left: 10%;
  background-image: url("../../images/veterinarian-anesthesiact/contents_bg.gif");
  background-repeat: repeat;
  background-position: top left;
  width: 95%;
  /*幅*/
  height: 91%;
  /*どれだけデカくなってもはみ出ないであろう高さを指定*/
  z-index: -2;
  /* SP */
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .movie .movie__contents::after {
    height: 95%;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .movie .movie__contents::after {
    display: none;
  }
}

body.veterinarian-anesthesiact .movie .movie__contents img {
  width: 100%;
}

body.veterinarian-anesthesiact .example {
  margin-top: 120px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example {
    margin-top: 30px;
  }
}

body.veterinarian-anesthesiact .example .wrapper_bg::after {
  width: 102%;
  left: -5%;
  height: 109%;
  /*どれだけデカくなってもはみ出ないであろう高さを指定*/
}

body.veterinarian-anesthesiact .example .title_blueline {
  padding-top: 3.5%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example .title_blueline {
    padding-top: 0;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example .title_blueline h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.veterinarian-anesthesiact .example .title_blueline h2::before, body.veterinarian-anesthesiact .example .title_blueline h2::after {
  width: calc(83% - 153px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .example .title_blueline h2::before, body.veterinarian-anesthesiact .example .title_blueline h2::after {
    width: calc(58% - 153px);
    min-width: 150px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .example .title_blueline h2::before, body.veterinarian-anesthesiact .example .title_blueline h2::after {
    width: calc(55% - 121px);
    min-width: 100px;
    max-width: 290px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .example .title_blueline h2::before, body.veterinarian-anesthesiact .example .title_blueline h2::after {
    width: calc(55% - 121px);
    min-width: 50px;
    max-width: 250px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example .title_blueline h2::before, body.veterinarian-anesthesiact .example .title_blueline h2::after {
    width: calc(58% - 81px);
    min-width: 40px;
    max-width: 160px;
  }
}

body.veterinarian-anesthesiact .example__contents {
  margin-top: 30px;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example__contents {
    margin-top: 20px;
  }
}

body.veterinarian-anesthesiact .example__contents::after {
  content: "";
  width: 30%;
  height: 180px;
  position: absolute;
  top: -40px;
  right: -15%;
  background-image: url("../../images/veterinarian-anesthesiact/example_cat.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .example__contents::after {
    width: 250px;
    height: 150px;
    right: -130px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .example__contents::after {
    width: 180px;
    height: 120px;
    top: -30px;
    right: -70px;
  }
}

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

body.veterinarian-anesthesiact .example__contents h3 {
  padding: 20px 0 440px 7.5%;
  background-color: #1541a2;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .example__contents h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .example__contents h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .example__contents h3 {
    padding-bottom: 330px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example__contents h3 {
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.veterinarian-anesthesiact .example__contents__item {
  width: 93%;
  padding: 4%;
  background-color: #fff;
  position: absolute;
  top: 90px;
  right: 0;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .example__contents__item {
    top: 80px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .example__contents__item {
    top: 70px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example__contents__item {
    position: static;
    width: 100%;
    padding: 20px;
  }
}

body.veterinarian-anesthesiact .example__contents__item .sp_cat {
  display: none;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example__contents__item .sp_cat {
    display: block;
    margin-left: -7%;
    margin-top: -15%;
    width: 103%;
  }
}

body.veterinarian-anesthesiact .example__contents__item .example__item__detail {
  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.veterinarian-anesthesiact .example__contents__item .example__item__detail {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

body.veterinarian-anesthesiact .example__contents__item .example__item__detail .detail__text {
  width: 60%;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .example__contents__item .example__item__detail .detail__text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example__contents__item .example__item__detail .detail__text {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    margin-top: 15px;
  }
}

body.veterinarian-anesthesiact .example__contents__item .example__item__detail:nth-child(3) {
  margin-top: 4%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example__contents__item .example__item__detail:nth-child(3) {
    margin-top: -10px;
  }
}

body.veterinarian-anesthesiact .example__contents__item .example__item__detail .detail__img {
  width: 35%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example__contents__item .example__item__detail .detail__img {
    width: 100%;
    margin-top: 15px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

body.veterinarian-anesthesiact .example .example__contents_02 {
  margin-top: 100px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example .example__contents_02 {
    margin-top: 20px;
  }
}

body.veterinarian-anesthesiact .example .example__contents_02::after {
  content: "";
  width: 35%;
  height: 200px;
  top: -10px;
  left: -15%;
  background-image: url("../../images/veterinarian-anesthesiact/example_dog.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .example .example__contents_02::after {
    width: 250px;
    height: 150px;
    top: 0;
    left: -120px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .example .example__contents_02::after {
    width: 200px;
    height: 100px;
    top: 0;
    left: -90px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example .example__contents_02::after {
    display: none;
  }
}

body.veterinarian-anesthesiact .example .example__contents_02 h3 {
  text-align: right;
  padding: 20px 7.5% 440px 0;
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .example .example__contents_02 h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .example .example__contents_02 h3 {
    padding-bottom: 330px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example .example__contents_02 h3 {
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.veterinarian-anesthesiact .example .example__contents_02 .example__contents__item {
  left: 0;
}

body.veterinarian-anesthesiact .example .example__contents_02 .example__contents__item .sp_dog {
  display: none;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .example .example__contents_02 .example__contents__item .sp_dog {
    display: block;
    margin-left: 7%;
    margin-top: -3%;
    width: 90%;
  }
}

body.veterinarian-anesthesiact .introduce {
  margin-top: 180px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .introduce {
    margin-top: 30px;
  }
}

body.veterinarian-anesthesiact .introduce .wrapper_bg::after {
  left: 10%;
  height: 93%;
  /*どれだけデカくなってもはみ出ないであろう高さを指定*/
}

body.veterinarian-anesthesiact .introduce .title_blueline {
  padding-top: 3.5%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .introduce .title_blueline {
    padding-top: 0px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .introduce .title_blueline h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.veterinarian-anesthesiact .introduce .title_blueline h2::before, body.veterinarian-anesthesiact .introduce .title_blueline h2::after {
  width: calc(64% - 305px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .introduce .title_blueline h2::before, body.veterinarian-anesthesiact .introduce .title_blueline h2::after {
    width: calc(68% - 304.8px);
    min-width: 150px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .introduce .title_blueline h2::before, body.veterinarian-anesthesiact .introduce .title_blueline h2::after {
    width: calc(63% - 241.11px);
    min-width: 130px;
    max-width: 290px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .introduce .title_blueline h2::before, body.veterinarian-anesthesiact .introduce .title_blueline h2::after {
    width: calc(65% - 241.11px);
    min-width: 100px;
    max-width: 200px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .introduce .title_blueline h2::before, body.veterinarian-anesthesiact .introduce .title_blueline h2::after {
    width: calc(71% - 182.5px);
    min-width: 40px;
    max-width: 125px;
  }
}

body.veterinarian-anesthesiact .introduce__contents {
  margin-top: 2%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 3.5%;
  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.veterinarian-anesthesiact .introduce__contents {
    margin-top: 10px;
    background-color: transparent;
    padding: 0;
    display: block;
  }
}

body.veterinarian-anesthesiact .introduce__contents__text {
  width: 63%;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .introduce__contents__text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .introduce__contents__text {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-anesthesiact .introduce__contents__img {
  width: 31.5%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .introduce__contents__img {
    width: 100%;
    margin-top: 15px;
  }
}

body.veterinarian-anesthesiact .caution {
  margin-top: 50px;
  padding-bottom: 10.4%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution {
    padding-bottom: 40px;
  }
}

body.veterinarian-anesthesiact .caution .wrapper_bg::after {
  height: 102.5%;
  /*どれだけデカくなってもはみ出ないであろう高さを指定*/
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .wrapper_bg::after {
    height: 101.5%;
  }
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .sp_br {
    display: block !important;
  }
}

body.veterinarian-anesthesiact .caution .title_blueline {
  padding-top: 3.5%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .title_blueline {
    padding-top: 0;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .title_blueline h2 {
    padding: 0 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}

body.veterinarian-anesthesiact .caution .title_blueline h2::before, body.veterinarian-anesthesiact .caution .title_blueline h2::after {
  width: calc(76% - 550px);
  max-width: 400px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .title_blueline h2::before, body.veterinarian-anesthesiact .caution .title_blueline h2::after {
    top: 26%;
    width: calc(73% - 397px);
    min-width: 140px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .caution .title_blueline h2::before, body.veterinarian-anesthesiact .caution .title_blueline h2::after {
    width: calc(70% - 314px);
    min-width: 80px;
    max-width: 290px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .title_blueline h2::before, body.veterinarian-anesthesiact .caution .title_blueline h2::after {
    width: calc(75% - 314px);
    min-width: 40px;
    max-width: 200px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .title_blueline h2::before, body.veterinarian-anesthesiact .caution .title_blueline h2::after {
    top: 26%;
    width: calc(76% - 210.25px);
    min-width: 30px;
    max-width: 105px;
  }
}

body.veterinarian-anesthesiact .caution__contents {
  margin-top: 3.5%;
  padding: 2.79%;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution__contents {
    margin-top: 20px;
    padding: 15px 10px 10px;
  }
}

body.veterinarian-anesthesiact .caution__contents h3 {
  font-size: 32px;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding-bottom: 15px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution__contents h3 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .caution__contents h3 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution__contents h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution__contents h3 {
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 15px;
  }
}

body.veterinarian-anesthesiact .caution__contents__inner {
  background-color: #fff;
  padding: 4.25%;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution__contents__inner {
    padding: 6.3%;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_01 {
  margin-top: 20px;
}

body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__list {
  width: 50%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__list {
    width: 100%;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__list li {
  margin-top: 20px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__list li {
    margin-top: 15px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__list li {
    margin-top: 15px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__list li:first-of-type {
  margin-top: 0;
}

body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__img {
  width: 50%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__img {
    width: 100%;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__extra {
  margin-top: 30px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__extra {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__extra li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__extra li {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__extra li:nth-child(2) {
  margin-top: 10px;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_01 .caution__contents__inner .contents__extra li:nth-child(2) {
    margin-top: 5px;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .contents__list li {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .contents__list li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .contents__list li {
    margin-top: 5px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 {
  width: 40%;
  margin-left: 6%;
  margin-top: 3.5%;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 {
    width: 47%;
    margin-left: 0;
    margin-top: 5.41%;
    text-align: center;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 img {
  width: 50%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 img {
    width: 70%;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 dl {
  font-size: 20px;
  font-size: 2rem;
  color: #1541a2;
  margin-right: 20px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 dl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 dl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 dl {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_01 dl {
    font-size: 10px;
    font-size: 1rem;
    color: #1541a2;
    margin-right: 10px;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 {
  width: 40%;
  margin-right: 5%;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 {
    width: 47%;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 {
    width: 53%;
    margin-right: 0;
    padding-top: 0;
    text-align: center;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 img {
  width: 43%;
  padding-top: 21%;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 img {
    width: 35%;
    padding-top: 16.7%;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 img {
    width: 50%;
    padding-top: 24.1%;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 dl {
  font-size: 20px;
  font-size: 2rem;
  color: #c1272d;
  margin-top: 20px;
  margin-right: 20px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 dl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 dl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 dl {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_02 .caution__contents__inner .caution__img_02 dl {
    font-size: 10px;
    font-size: 1rem;
    margin-top: 12%;
    margin-right: 0;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner {
  display: block;
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail {
  margin-top: 4.65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail {
    margin-top: 20px;
    display: block;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail:first-of-type {
  margin-top: 0;
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail:last-of-type .detail__img {
  text-align: center;
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail:last-of-type .detail__img img {
  width: 70.5%;
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__img {
  width: 13.3%;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__img {
    width: 20%;
    max-width: 100px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__img {
    width: 30%;
    max-width: 90px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__img {
    width: 20%;
    max-width: 70px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__img {
    width: 40%;
    margin: 0 auto;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text {
  margin-left: 4.6%;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text {
    margin-left: 0;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text h4 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #1541a2;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text h4 {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text h4 {
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
    margin-top: 10px;
  }
}

body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text ul li {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text ul li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .caution .caution__contents_03 .caution__contents__inner .detail__text ul li {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-anesthesiact .contact {
  width: 100%;
  background-color: rgba(21, 65, 162, 0.9);
  padding: 80px 0;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .contact {
    padding: 40px 0;
  }
}

body.veterinarian-anesthesiact .contact .wrapper {
  width: 62.5%;
  margin: 0 auto;
  zoom: 1;
}

body.veterinarian-anesthesiact .contact .wrapper::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .contact .wrapper {
    width: 81.3%;
  }
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry {
  width: 48.8%;
  height: 7vw;
  background: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .contact .wrapper .btn_reservation,
  body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry {
    width: 100%;
    height: 70px;
  }
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a {
  line-height: 7vw;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
  border: 1px transparent solid;
  font-size: 30px;
  font-size: 3rem;
  text-decoration: none;
  color: #1541a2;
  text-align: center;
  display: block;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a .arrow,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a .arrow {
  width: 17%;
  height: 1px;
  background: #1541a2;
  position: absolute;
  top: 50%;
  left: 94%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a .arrow::after,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a .arrow::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #1541a2;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: translateY(-50%) rotate(29.5deg);
  -ms-transform: translateY(-50%) rotate(29.5deg);
  transform: translateY(-50%) rotate(29.5deg);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a:hover,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a:hover {
  background-color: #1541a2;
  color: #fff;
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a:hover .arrow,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a:hover .arrow {
  background: #fff;
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a:hover .arrow::after,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a:hover .arrow::after {
  background: #fff;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a,
  body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a {
    font-size: 18px;
    font-size: 1.8rem;
  }
  body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a .arrow:after,
  body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a .arrow:after {
    width: 17.25px;
  }
}

@media screen and (max-width: 991px) {
  body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a,
  body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a {
    font-size: 13px;
    font-size: 1.3rem;
  }
  body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a .arrow:after,
  body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a .arrow:after {
    width: 11.5px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a,
  body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a {
    line-height: 70px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation a:hover,
body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry a:hover {
  background-color: #1541a2;
  border-color: #fff;
}

body.veterinarian-anesthesiact .contact .wrapper .btn_reservation {
  float: left;
}

body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry {
  float: right;
}

@media screen and (max-width: 575px) {
  body.veterinarian-anesthesiact .contact .wrapper .btn_inquiry {
    margin-top: 30px;
  }
}

/*# sourceMappingURL=veterinarian-anesthesiact.css.map */