@charset "UTF-8";
/*

EULA

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

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

@media screen and (max-width: 575px) {
  body.veterinarian-eula .mv.blue {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

body.veterinarian-eula .mv.blue .red {
  color: #ED1C24;
}

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

body.veterinarian-eula .chap .wrapper .copy {
  position: relative;
  height: 100px;
  line-height: 100px;
  margin-bottom: 40px;
  background-color: #1541a2;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 991px) {
  body.veterinarian-eula .chap .wrapper .copy {
    font-size: 25px;
    font-size: 2.5rem;
    height: 90px;
    line-height: 90px;
  }
}

@media screen and (max-width: 767px) {
  body.veterinarian-eula .chap .wrapper .copy {
    font-size: 20px;
    font-size: 2rem;
    height: 70px;
    line-height: 70px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .copy {
    font-size: 15px;
    font-size: 1.5rem;
    height: 50px;
    line-height: 50px;
  }
}

body.veterinarian-eula .chap .wrapper .copy::after {
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 13px 0 13px;
  border-color: #1541a2 transparent transparent transparent;
}

body.veterinarian-eula .chap .wrapper table {
  width: 100%;
  border-top: 1px dashed #ccc;
}

body.veterinarian-eula .chap .wrapper table tr {
  border-bottom: 1px dashed #ccc;
}

@media screen and (max-width: 767px) {
  body.veterinarian-eula .chap .wrapper table tr {
    display: block;
    width: 100%;
  }
}

body.veterinarian-eula .chap .wrapper table tr > * {
  display: inline-block;
}

body.veterinarian-eula .chap .wrapper table tr th {
  position: relative;
  width: 25%;
  text-indent: 1em;
  vertical-align: middle;
  margin: 25px 4% 0 0;
}

@media screen and (max-width: 767px) {
  body.veterinarian-eula .chap .wrapper table tr th {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper table tr th {
    margin-bottom: 10px;
  }
}

body.veterinarian-eula .chap .wrapper table tr th > * {
  display: inline-block;
}

body.veterinarian-eula .chap .wrapper table tr th span {
  display: block;
  width: 70%;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  body.veterinarian-eula .chap .wrapper table tr th span {
    width: auto;
  }
}

body.veterinarian-eula .chap .wrapper table tr th em {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  padding: 2px 11px;
  border-radius: 5px;
  color: #fff;
  line-height: initial;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  body.veterinarian-eula .chap .wrapper table tr th em {
    margin-left: 20px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper table tr th em {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-eula .chap .wrapper table tr th em.require {
  background: #ED1C24;
}

body.veterinarian-eula .chap .wrapper table tr th em.optional {
  background-color: #0071bc;
}

body.veterinarian-eula .chap .wrapper table tr td {
  width: 70%;
  margin: 25px 0;
}

@media screen and (max-width: 767px) {
  body.veterinarian-eula .chap .wrapper table tr td {
    display: block;
    width: 100%;
  }
}

body.veterinarian-eula .chap .wrapper table tr td p {
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper table tr td p {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-eula .chap .wrapper table tr td p.radio {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}

body.veterinarian-eula .chap .wrapper table tr td p.radio > span {
  display: inline-block;
  margin-right: 13px;
}

@media screen and (max-width: 1199px) {
  body.veterinarian-eula .chap .wrapper table tr td p.radio > span:last-child {
    display: block;
    margin-left: 0;
  }
}

body.veterinarian-eula .chap .wrapper table tr td p.text {
  display: block;
  margin: 5px 0 0;
}

body.veterinarian-eula .chap .wrapper table tr td p.text input {
  width: 100%;
  height: 36px;
}

body.veterinarian-eula .chap .wrapper table tr td > input {
  width: 100%;
  padding: 5px 10px;
}

body.veterinarian-eula .chap .wrapper table tr td > span {
  width: auto;
  display: inline-block;
}

body.veterinarian-eula .chap .wrapper table tr td textarea {
  width: 100%;
  padding: 5px 10px;
}

body.veterinarian-eula .chap .wrapper .policy article {
  margin: 25px 0;
  padding: 15px 30px;
  height: 160px;
  overflow-y: scroll;
  border-top: 8px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 8px solid #ccc;
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .policy article {
    padding: 15px;
  }
}

body.veterinarian-eula .chap .wrapper .policy article h3 {
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  color: #666;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .policy article h3 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.veterinarian-eula .chap .wrapper .policy article ul li {
  position: relative;
  margin-left: 2em;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .policy article ul li {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-eula .chap .wrapper .policy article ul li::before {
  position: absolute;
  top: 0;
  left: -2em;
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  color: #333;
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(1)::before {
  content: "01.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(2):before {
  content: "02.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(3):before {
  content: "03.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(4):before {
  content: "04.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(5):before {
  content: "05.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(6):before {
  content: "06.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(7):before {
  content: "07.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(8):before {
  content: "08.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(9):before {
  content: "09.";
}

body.veterinarian-eula .chap .wrapper .policy article ul li:nth-child(10):before {
  content: "10.";
}

body.veterinarian-eula .chap .wrapper .policy__agree {
  text-align: center;
}

body.veterinarian-eula .chap .wrapper .policy__agree em.require {
  display: inline-block;
  padding: 2px 11px;
  border-radius: 5px;
  background: #ED1C24;
  color: #fff;
  line-height: initial;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .policy__agree em.require {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .policy__agree span {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.veterinarian-eula .chap .wrapper .btn_radius {
  height: 80px;
  line-height: 80px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  body.veterinarian-eula .chap .wrapper .btn_radius {
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .btn_radius {
    height: 50px;
    line-height: 50px;
  }
}

body.veterinarian-eula .chap .wrapper .btn_radius input {
  width: 540px;
  border-radius: 40px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 575px) {
  body.veterinarian-eula .chap .wrapper .btn_radius input {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.veterinarian-eula .chap .wrapper .btn_radius input::before {
  width: 12px;
  height: 12px;
}

body.page-template-page-veterinarian-eula-confirm .mv.blue {
  display: none;
}

body.page-template-page-veterinarian-eula-confirm .eula .title_blueline {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  body.page-template-page-veterinarian-eula-confirm .eula .title_blueline h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-veterinarian-eula-confirm .eula .title_blueline h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

body.page-template-page-veterinarian-eula-confirm .eula .mw_wp_form_confirm form table tbody tr th em {
  display: none;
}

body.page-template-page-veterinarian-eula-confirm .eula .mw_wp_form_confirm form table tbody tr td p {
  display: none;
}

body.page-template-page-veterinarian-eula-confirm .eula .mw_wp_form_confirm form table tbody tr td p.radio {
  font-size: 16px;
  font-size: 1.6rem;
}

body.page-template-page-veterinarian-eula-confirm .eula .mw_wp_form_confirm form table tbody tr td p.text {
  font-size: 16px;
  font-size: 1.6rem;
}

body.page-template-page-veterinarian-eula-confirm .eula .mw_wp_form_confirm form .policy {
  display: none;
}

@media screen and (max-width: 991px) {
  body.page-template-page-veterinarian-eula-confirm .eula .btn_radius {
    margin: 20px 0 130px;
  }
}

@media screen and (max-width: 767px) {
  body.page-template-page-veterinarian-eula-confirm .eula .btn_radius {
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-veterinarian-eula-confirm .eula .btn_radius {
    height: 50px;
    line-height: 50px;
  }
}

body.page-template-page-veterinarian-eula-confirm .eula .btn_radius > * {
  width: 45% !important;
}

@media screen and (max-width: 991px) {
  body.page-template-page-veterinarian-eula-confirm .eula .btn_radius > * {
    width: 80% !important;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-veterinarian-eula-confirm .eula .btn_radius > * {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.page-template-page-veterinarian-eula-confirm .eula .btn_radius input + input {
  margin-left: 5%;
}

@media screen and (max-width: 991px) {
  body.page-template-page-veterinarian-eula-confirm .eula .btn_radius input + input {
    margin-left: 0;
    margin-top: 20px;
  }
}

body.page-template-page-veterinarian-eula-thanks .mv.blue {
  display: none;
}

body.page-template-page-veterinarian-eula-thanks .eula .title_blueline {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  body.page-template-page-veterinarian-eula-thanks .eula .title_blueline h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-veterinarian-eula-thanks .eula .title_blueline h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

body.page-template-page-veterinarian-eula-thanks .eula .content {
  margin-bottom: 100px;
}

body.page-template-page-veterinarian-eula-thanks .eula .btn_radius {
  height: 80px;
  line-height: 80px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  body.page-template-page-veterinarian-eula-thanks .eula .btn_radius {
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-veterinarian-eula-thanks .eula .btn_radius {
    height: 50px;
    line-height: 50px;
  }
}

body.page-template-page-veterinarian-eula-thanks .eula .btn_radius a {
  width: 540px;
  border-radius: 40px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  body.page-template-page-veterinarian-eula-thanks .eula .btn_radius a {
    width: 80%;
  }
}

@media screen and (max-width: 575px) {
  body.page-template-page-veterinarian-eula-thanks .eula .btn_radius a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.page-template-page-veterinarian-eula-thanks .eula .btn_radius a::before {
  width: 12px;
  height: 12px;
}

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

.mv.blue .mv__contents p {
  text-align: left;
  padding-bottom: 10px;
}
