@charset "UTF-8";
/*

FAQ

*/
/* 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 */
body.veterinarian-faq {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

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

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

body.veterinarian-faq .toggle {
  cursor: pointer;
}

body.veterinarian-faq .toggle__head .copy > * {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  body.veterinarian-faq .toggle__head .copy > * {
    width: 20px;
    height: 20px;
  }
}

body.veterinarian-faq .toggle__head .copy .toggle__icon::before {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #1541a2;
}

body.veterinarian-faq .toggle__head .copy .toggle__icon::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #1541a2;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

body.veterinarian-faq .is_open .toggle__head {
  position: relative;
}

body.veterinarian-faq .is_open .toggle__head .copy .toggle__icon::after {
  width: 0;
  height: 0;
}

body.veterinarian-faq .chap {
  position: relative;
  margin-bottom: 80px;
}

body.veterinarian-faq .chap .wrapper .title_blueline h2::before, body.veterinarian-faq .chap .wrapper .title_blueline h2::after {
  width: calc(65% - 260px);
  max-width: 350px;
}

@media screen and (max-width: 767px) {
  body.veterinarian-faq .chap .wrapper .title_blueline h2::before, body.veterinarian-faq .chap .wrapper .title_blueline h2::after {
    width: calc(70% - 260px);
    min-width: 90px;
    max-width: 160px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-faq .chap .wrapper .title_blueline h2::before, body.veterinarian-faq .chap .wrapper .title_blueline h2::after {
    width: calc(60% - 120px);
    min-width: 75px;
    max-width: 170px;
  }
}

body.veterinarian-faq .chap .wrapper .contents {
  width: 100%;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

body.veterinarian-faq .chap .wrapper .contents .toggle > * {
  position: relative;
  padding-left: calc(40px + 40px);
}

@media screen and (max-width: 767px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle > * {
    padding-left: calc(30px + 30px);
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle > * {
    padding-left: calc(30px + 20px);
  }
}

body.veterinarian-faq .chap .wrapper .contents .toggle span.copy::before {
  position: absolute;
  top: 50%;
  left: 1em;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  display: inline-block;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 50%;
  font-family: "Comfortaa", serif;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle span.copy::before {
    width: 30px;
    height: 30px;
    line-height: 32px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle span.copy::before {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 33px;
    left: .7em;
  }
}

body.veterinarian-faq .chap .wrapper .contents .toggle__head {
  height: auto;
  padding-top: 20px;
  padding-right: 40px;
  padding-bottom: 20px;
  font-size: 20px;
  font-size: 2rem;
  background-color: #1541a2;
  color: #fff;
}

@media screen and (max-width: 991px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle__head {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle__head {
    font-size: 15px;
    font-size: 1.5rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle__head {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.veterinarian-faq .chap .wrapper .contents .toggle__head span.copy::before {
  content: "Q";
  color: #1541a2;
  background-color: #fff;
}

body.veterinarian-faq .chap .wrapper .contents .toggle__body {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  border: 1px solid #b3b3b3;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle__body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-faq .chap .wrapper .contents .toggle__body {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

body.veterinarian-faq .chap .wrapper .contents .toggle__body span.copy::before {
  content: "A";
  color: #fff;
  background-color: #f15a24;
}

body.veterinarian-faq .chap .wrapper .contents .toggle__body span.copy ul li {
  text-indent: -1em;
  margin-left: 1em;
}

body.veterinarian-faq .chap .wrapper .contents dl + dl {
  margin-top: 20px;
}

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