@charset "utf-8";

/* ---------------------
 style menu

 [ css/style.css ]
 1,common
 2,header
 3,footer
 4,top page

 [ css/pages.css ]
 5,mail form
 6,news list
 7,news details
 8,vets list
 9,privacy policy
 10,company
--------------------- */

/* ---------------------
 5,mail form
--------------------- */
/* 下層ページ共通　ページヘッダー */
.pages-header {
  background: #f8f8f8;
  box-shadow: inset 0 -10px 40px -20px rgb(196 196 196 / 62%);
  /*padding: 90px 0 90px;*/
  padding: 165px 0 90px;
  text-align: center;
}
section.vet-pages-header {
  padding-top: 170px;
}
h3.pages-m {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;

  text-align: center;
  letter-spacing: 0.12em;
}
.pages-sub {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.12em;
  margin-top: 32px;
  margin-bottom: 80px;
  color: #555555;
}
.pages {
  background: linear-gradient(-200deg, #ffffff 0%, #e6e6e6 100%);
}

.cont-mail {
  padding: 90px 0 150px;
}
/* .wpcf7-form-control-wrap {
  display: block;
} */
.f-select-menu {
  display: flex;
}
.mwform-radio-field {
  width: 50%;
}

.f-select-menu label {
  display: block;
  position: relative;
}
.f-select-menu label input[type="radio"] {
  width: 80%;
  height: 100%;
  visibility: hidden;
  position: absolute;
  left: 0;
}
.f-select-menu .radio-btns__item + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}
.f-select-menu .radio-btns__item + span::after,
.f-select-menu .radio-btns__item + span::before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #888888;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
}
.f-select-menu .radio-btns__item + span::after {
  opacity: 0;
  width: 14px;
  height: 14px;
  top: 4px;
  left: 4px;
  border: none;
  background: #555555;
}
.f-select-menu .radio-btns__item:checked + span {
  color: #555555;
}
.f-select-menu .radio-btns__item:checked + span::after {
  opacity: 1;
}
.f-btn-area {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.f-btn-area .btn {
  margin: 0 10px;
}

@media (max-width: 768px) {
  .pages-header {
    padding: 90px 0 30px;
  }
  .pages-sub {
    font-size: 14px;
  }
}

/* ---------------------
 6,news list
--------------------- */
section.cont-update {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.category-update-list {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.category-update-list li {
  display: block;
  text-align: left;
  margin-bottom: 16px;
}
.category-update-list .category-update-item-date {
  display: inline-block;
  overflow: hidden;
  margin-right: 110px;
}
.category-update-list .category-update-item-title {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 580px;
}
.category-update-list-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}
.category-update-list-link a:hover {
  color: #3bb1dd;
}
.cont-news {
  padding-bottom: 50px;
}
.b-list {
  padding: 20px 0;
}
.b-list-item {
  display: inline-block;
  padding-right: 25px;
  position: relative;
}
.b-list-item::after {
  content: ">";
  display: block;
  color: #888;
  font-size: 13px;
  position: absolute;
  top: 2px;
  right: 7px;
}
.b-list-item:last-of-type::after {
  display: none;
}
.b-list-item a {
  color: #888;
  font-size: 13px;
}
.b-list-item a:hover {
  text-decoration: underline;
}
.news-list {
  margin-top: 20px;
}
.news-item {
  width: 30%;
  float: left;
  margin: 0 5% 70px 0;
}
.news-item:nth-of-type(3n) {
  margin-right: 0;
}
.news-img {
  /*height: 220px;*/
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-date {
  font-size: 10px;
  letter-spacing: 3px;
  margin: 10px 0 10px;
}
.news-del {
  font-size: 10px;
  line-height: 2;
  letter-spacing: 2px;
  text-align: justify;
}
.news-del span {
  text-decoration: underline;
}

.pagenation {
  margin: 0 0;
}
.pagenation ul {
  text-align: center;
}
.pagenation li {
  display: inline-block;
  padding: 0;
  margin: 0 5px;
}
.pagenation li a {
  width: 50px;
  height: 50px;
  color: #555;
  display: block;
  font-family: t-roboto;
  font-size: 20px;
  line-height: 50px;
  text-decoration: none;
  position: relative;
}
.pagenation li.active a::after,
.pagenation li a:hover::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #27a5c3;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .news-item,
  .news-item:nth-of-type(3n) {
    width: 49%;
    margin: 0 2% 30px 0;
  }
  .news-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .pagenation {
    margin-top: 18px;
  }
  .pagenation li a {
    font-size: 16px;
  }
}

/* ---------------------
 7,news details
--------------------- */
.news-inner {
  width: 1010px;
  margin: 40px auto 0;
}
.news-d-date {
  font-size: 13px;
  margin-bottom: 10px;
}
.news-d-title {
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 50px;
}
.news-inner h5 {
  /* 中見出し h5 */
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1.75;
  margin: 50px 0 20px;
}
.news-inner img {
  /*margin: 0 0 30px;*/
  width: auto;
  max-width: 100%;
  height: auto;
}
.news-inner > p {
  font-size: 13px;
  line-height: 2.3;
  margin-bottom: 35px;
}
.news-inner .btn {
  margin: 100px auto 55px;
}
.update-inner {
  width: 1095px;
  margin: 0 auto;
}
.update-d-date {
  font-size: 15px;
  line-height: 22px;
  margin-top: 40px;
}
.update-d-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 64px;
  margin: 8px auto;
}
@media (max-width: 1010px) {
  .news-inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .news-d-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .news-inner h5 {
    margin: 30px 0 20px;
  }
  .news-inner img {
    margin-bottom: 20px;
  }
  h3.pages-m {
    font-weight: 400;
    font-size: 25px;
    line-height: 25px;
  }
  .pages-sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  .category-update-list {
    max-width: 80%;
  }
  .category-update-list-link {
    font-size: 13px;
    line-height: 24px;
  }
  .category-update-list .category-update-item-title {
    max-width: 300px;
  }
  .update-inner {
    width: 95%;
  }
  .update-d-date {
    font-size: 12px;
    line-height: 18px;
  }
  .update-d-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
  }
}

/* ---------------------
 8,vets list
--------------------- */
.cont-vets {
  padding-bottom: 150px;
}
.vets-area {
  width: 900px;
  margin: 40px auto;
}
.v-area-list {
  width: 20%;
  float: left;
  margin: 0 5% 10px 0;
  padding-left: 20px;
  position: relative;
}
.v-area-list:nth-of-type(4n) {
  margin-right: 0;
}
.v-area-list::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  left: 0;
}
.v-area-list a {
  display: block;
}
.v-area-list a:hover {
  text-decoration: underline;
}
.area-box {
  padding: 90px 0 0;
}
.area-name {
  font-family: pages-m;
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
}
.area-vets {
  border: 1px solid #cccccc;
  background: #fff;
  border-radius: 40px;
  padding: 40px 75px;
  margin-top: 30px;
}
.vets-top {
  border-bottom: 1px solid #555;
  padding-bottom: 15px;
}
.vets-name {
  width: calc(100% - 220px);
  font-family: pages-m;
  font-size: 25px;
  letter-spacing: 2px;
}
.vets-online {
  width: 200px;
  height: 32px;
  background: linear-gradient(-200deg, #4c93a8 0%, #a1d9ed 100%);
  border-radius: 16px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 32px;
  text-align: center;
}
.vets-add {
  background: url("images/icon_add.png") no-repeat left center;
  background-size: 20px 20px;
  font-style: normal;
  padding-left: 40px;
  margin-top: 20px;
}
.vets-tel {
  background: url("images/icon_tel2.png") no-repeat left center;
  background-size: 20px 20px;
  display: block;
  padding-left: 40px;
  margin-top: 20px;
}
.vets-site {
  background: url("images/icon_site.png") no-repeat left center;
  background-size: 20px 20px;
  display: block;
  padding-left: 40px;
  margin-top: 20px;
}
.cont-vets .btn {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .vets-name {
    width: 100%;
  }
}

/* ---------------------
 9,privacy policy
--------------------- */
.cont-policy {
  padding: 50px 0 200px;
}
.policy p {
  letter-spacing: 2px;
  line-height: 2;
  text-align: justify;
}
.policy p.policy-title {
  font-family: pages-m;
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
  margin: 90px 0 20px;
}
.policy ul {
  margin: 20px auto;
}
.policy ul li {
  line-height: 2;
}
.policy .enactment-box {
  line-height: 2;
  letter-spacing: 2px;
  margin-top: 40px;
}
@media (max-width: 768px) {
}

/* ---------------------
 10,company
--------------------- */
.cont-company {
  padding: 100px 0 190px;
}
.company-table {
  width: 100%;
}
.company-table td {
  border-bottom: 1px solid #888;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 20px 15px;
}
.company-table tr:nth-of-type(1) td {
  border-top: 1px solid #888;
}
.company-table td:nth-of-type(1) {
  width: 185px;
}
@media (max-width: 414px) {
  .company-table td,
  .company-table td:nth-of-type(1) {
    width: 100%;
    display: block;
  }
  .company-table td:nth-of-type(1) {
    border-bottom: none;
  }
  .company-table tr:nth-of-type(1) td:nth-of-type(2) {
    border-top: none;
  }
  .company-table td:nth-of-type(2) {
    padding-top: 0;
  }
}

.cont-subpage {
  padding: 100px 0 100px;
}

/* ---------------------
 11,contribution
--------------------- */
body.page-id-475 .pages-header {
  background: url(images/bg_contribution.jpg) no-repeat center center;
  background-size: 100%;
  color: #fff;
}
.contribution {
  line-height: 200%;
}
.contribution p {
  margin-bottom: 25px;
}

.cont-block {
  margin-bottom: 50px;
}
.cont-block.cont-block-large {
  margin-bottom: 150px;
}

.contribution-catch {
  text-align: center;
}

.contribution-list {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contribution-list ul {
  list-style: disc outside;
  margin: 10px 20px;
  padding: 10px;
}
.contribution-list ul li {
  list-style: disc outside;
}

.contribution-icon {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.contribution-icon ul {
  list-style: none;
  text-align: center;
}
.contribution-icon ul li {
  display: inline-block;
  width: 32%;
}
.contribution-icon ul li img {
  width: 100%;
}

.contribution-comment,
.contribution-contact,
.contribution-note {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.contribution-contact {
  margin-top: 100px;
}
.contribution-contact ul {
  list-style: none;
  text-align: center;
  overflow: hidden;
}
.contribution-contact ul li {
  max-width: 50%;
}
/* .contribution-contact ul li:first-child {
  float: left;
}
.contribution-contact ul li:last-child {
  float: right;
} */

.contribution-note {
  /*font-size: 12px;*/
  color: #707070;
  margin-bottom: 0;
  line-height: 170%;
}

@media (max-width: 768px) {
  .contribution-catch {
    text-align: left;
  }
}

@media (min-width: 641px) {
  .contribution-icon ul li {
    padding: 15px;
  }
}

/* ---------------------
 12,support
--------------------- */
body.page-id-527 .pages-header {
  background: url(images/bg_support.jpg) no-repeat center 80%;
  background-size: 100%;
  color: #fff;
}

.support-label {
  border-bottom: 1px solid #555;
}

.support-comment {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.support-contact {
  max-width: 568px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
.support-contact ul {
  list-style: none;
  text-align: center;
  overflow: hidden;
}
.support-contact ul li {
  max-width: 48%;
  margin-bottom: 50px;
}
.support-contact ul li:first-child {
  float: left;
}
.support-contact ul li:nth-child(2) {
  float: right;
}
.support-contact ul li.large {
  max-width: 100%;
}
.support-button {
  padding-top: 30px;
}
@media (max-width: 768px) {
  .recruit .support-contact ul li img {
    width: auto;
    max-width: 100%;
  }
  .recruit .support-contact ul li {
    max-width: 100%;
  }
  .recruit .support-contact ul li:first-child {
    float: none;
  }
  .recruit .support-contact ul li:nth-child(2) {
    float: none;
  }
}

/* ---------------------
 13,tokusho
--------------------- */
.tokusho .company-table {
  border-collapse: collapse;
}
.tokusho .company-table td {
  border: 1px solid #888;
}
.tokusho .company-table tr td:first-child {
  width: 30%;
}
@media (max-width: 768px) {
  .tokusho .company-table tr td:first-child {
    width: 50%;
  }
}

/* ---------------------
 13,recruit
--------------------- */
.wrap.recruit {
  line-height: 30px;
  letter-spacing: 2.1pt;
}
.recruit-contact {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
.recruit-contact ul {
  list-style: none;
  text-align: left;
}
.recruit-contact li {
  display: inline-block;
  margin: 0 20px 50px;
}
.recruit-contact.column4 li {
  width: 20%;
}
@media (max-width: 768px) {
  .recruit-contact.column4 li {
    width: auto;
  }
  .recruit-contact ul {
    list-style: none;
    text-align: center;
  }
}
#cont-recruit .support-label h4 span {
  display: inline-block;
}
#cont-recruit ul.list {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 30px;
}
#cont-recruit ul.list li {
  list-style: disc;
  margin-bottom: 10px;
}
#cont-recruit p {
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .pc_only {
    display: none;
  }
}
@media (min-width: 641px) {
  .sp_only {
    display: none;
  }
  .pc_only.recruit_1 {
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc_only.recruit_2 {
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
  }
  .title_sp {
    display: none;
  }
}

@media (max-width: 768px) {
  /*.recruit-contact:not(.column4) {*/
  .recruit-contact {
    margin-top: 60px;
  }
  /*.recruit-contact:not(.column4) li {*/
  .recruit-contact li {
    margin-bottom: 30px;
  }
  .recruit-contact img {
    max-width: 200px;
  }
  .recruit-contact.column4 li {
    width: 44%;
    margin: 0.5em;
  }
  .recruit-contact.column4.cont-block {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .workstyle {
    border: none;
    padding-bottom: 3rem;
  }
  .workstyle h4 {
    font-size: 2.5rem;
  }
  .pageLink_btn li a {
    padding: 0 3.5rem;
    font-size: 1.1rem;
  }
  .pageLink_btn li span {
    font-size: 0.7rem;
    content: "";
    border-left: solid 2px #555;
  }
}
@media screen and (max-width: 768px) {
  .pageLink_btn {
    text-align: center;
    margin: 1.2rem 0 2rem 0;
  }
  .pageLink_btn li a {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
  .workstyle {
    width: 85%;
    margin: 0 auto;
  }
  .pageLink_btn li span {
    font-size: 0.7rem;
    content: "";
    border-left: solid 1px #555;
  }
}

.pageLink_btn {
  display: flex;
  text-align: center;
  justify-content: center;
}

.pageLink_btn li {
  padding-bottom: 0.5rem;
}

.pageLink_btn li a:hover {
  color: #9b9b9b;
}

.anchor {
  margin-top: -60px;
  padding-top: 60px;
}

/*--MEMBER紹介--*/

@media (min-width: 769px) {
  .member-ul {
    display: inline-block;
  }
  .member-list {
    width: 50%;

    padding-right: 64px;
    float: left;
  }
  .member-list h3 {
    font-size: 20px;
  }
  .member-list:nth-child(2n + 1) {
    clear: left;
  }
}

.pets_name {
  display: flex;
  justify-content: center;
}

.pets_name a {
  float: left;
}

/*--会社概要ページ--*/

.executives-li li p {
  padding-top: 35px;
}

@media (min-width: 865px) {
  .executives-li li {
    display: flex;
    align-items: center;
    padding: 25px;
  }

  .executives-li li:nth-child(even) {
    flex-direction: row-reverse;
  }

  .executives-li li:nth-child(even) img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    max-width: 250px;
    border-radius: 20px;
  }

  .executives-li li:nth-child(even) p {
    padding-right: 55px;
  }

  .executives-li li:nth-child(odd) img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    max-width: 500px;
    border-radius: 20px;
  }

  .executives-li li:nth-child(odd) p {
    padding-left: 55px;
  }

  .executives-li li:last-child {
    margin-bottom: 160px;
  }

  .access_map {
    display: flex;
    flex-direction: row-reverse;
  }

  .access_map p {
    padding-right: 55px;
  }
}

@media (max-width: 864px) {
  .image:nth-child(odd) {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .image:nth-child(odd) img {
    display: block;
    width: 100%;
    height: auto;
  }

  .executives-li li:nth-child(even) {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .executives-li li:nth-child(even) img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .executives-li li:last-child {
    margin-bottom: 120px;
  }

  /*--GMAPサイズ調整--*/

  .gmap {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .access_map iframe {
    display: block;
    width: 120%;
  }
}
