@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 */
/* Base */
/*

プロジェクトにおける基本的なスタイル
（ページ全体の背景や、基本的なタイポグラフィ）
※ クラスは使わない

*/
html {
  font-size: 62.5%;
}

html, body {
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: auto;
  overflow-y: visible;
}

body {
  font-family: "Noto Sans", "Noto Sans CJK JP",'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

li {
  list-style: none;
}

/* Object */
/* -----------------------------------------------------
    mv メインビジュアル blue
----------------------------------------------------- */
.mv.blue {
  position: relative;
  width: 100%;
  height: 720px;
  -ms-overflow-x: hidden;
  -ms-overflow-y: hidden;
}

@media screen and (max-width: 575px) {
  .mv.blue {
    height: 405px;
  }
}

.mv.blue::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
}

.mv.blue .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  -ms-overflow-x: hidden;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .mv.blue .wrapper {
    padding: 5px;
  }
}

.mv.blue .mv__contents {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents {
    padding: 0 3%;
  }
}

.mv.blue .mv__contents__title h1 {
  position: relative;
  margin-bottom: 7%;
  padding-top: 5%;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .mv.blue .mv__contents__title h1 {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mv.blue .mv__contents__title h1 {
    padding-top: 8%;
    margin-bottom: 10%;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents__title h1 {
    margin-bottom: 10%;
    padding-top: 8%;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.mv.blue .mv__contents__title h1::after {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents__title h1::after {
    width: 35px;
    height: 2px;
  }
}

.mv.blue .mv__contents__title h1 span {
  color: #1541a2;
}

.mv.blue .mv__contents p {
  padding-bottom: 5%;
}

@media screen and (max-width: 1199px) {
  .mv.blue .mv__contents p {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .mv.blue .mv__contents p {
    padding-bottom: 8%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.blue .mv__contents p {
    padding-bottom: 8%;
    font-size: 10px;
    font-size: 1rem;
  }
}

/* -----------------------------------------------------
    mv メインビジュアル green
----------------------------------------------------- */
.mv.green {
  position: relative;
  width: 100%;
  height: 720px;
  -ms-overflow-x: hidden;
  -ms-overflow-y: hidden;
}

@media screen and (max-width: 575px) {
  .mv.green {
    height: 405px;
  }
}

.mv.green::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #009e96;
}

.mv.green .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  -ms-overflow-x: hidden;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .mv.green .wrapper {
    padding: 5px;
  }
}

.mv.green .mv__contents {
  width: 100%;
  height: 100%;
  padding: 0 5%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents {
    padding: 0 3%;
  }
}

.mv.green .mv__contents__title h1 {
  position: relative;
  margin-bottom: 7%;
  padding-top: 5%;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .mv.green .mv__contents__title h1 {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .mv.green .mv__contents__title h1 {
    padding-top: 8%;
    margin-bottom: 10%;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents__title h1 {
    margin-bottom: 10%;
    padding-top: 8%;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.mv.green .mv__contents__title h1::after {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #009e96;
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents__title h1::after {
    width: 35px;
    height: 2px;
  }
}

.mv.green .mv__contents__title h1 span {
  color: #009e96;
}

.mv.green .mv__contents p {
  padding-bottom: 5%;
}

@media screen and (max-width: 1199px) {
  .mv.green .mv__contents p {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .mv.green .mv__contents p {
    padding-bottom: 8%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  .mv.green .mv__contents p {
    padding-bottom: 8%;
    font-size: 10px;
    font-size: 1rem;
  }
}

/* -----------------------------------------------------
    mv メインビジュアル lightblue
----------------------------------------------------- */
.mv.lightblue {
  position: relative;
  width: 100%;
  height: 720px;
}

.mv.lightblue::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  .mv.lightblue {
    height: 400px;
  }
}

.mv.lightblue > * {
  height: 100%;
}

.mv.lightblue .mv__contents {
  position: relative;
  height: 100%;
  -ms-overflow-x: hidden;
  -ms-overflow-style: none;
}

.mv.lightblue .mv__contents .mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.mv.lightblue .mv__contents .mv__title h1 {
  position: relative;
  margin: 10px auto 60px;
  color: #fff;
  font-size: 42px;
  font-size: 4.2rem;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .mv.lightblue .mv__contents .mv__title h1 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.mv.lightblue .mv__contents .mv__title h1::after {
  position: absolute;
  bottom: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #fff;
}

@media screen and (max-width: 575px) {
  .mv.lightblue .mv__contents .mv__title h1::after {
    width: 35px;
    height: 2px;
  }
}

.mv.lightblue.post h1 {
  position: static !important;
}

.mv.lightblue.post h1::after {
  content: none !important;
}

/* -----------------------------------------------------
    見出しタイトル
----------------------------------------------------- */
.title_blueline {
  text-align: center;
}

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

@media screen and (max-width: 991px) {
  .title_blueline h2 {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

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

.title_blueline h2::before, .title_blueline h2::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30%;
  height: 5px;
  border-top: solid 1px #1541a2;
  border-bottom: solid 1px #1541a2;
}

.title_blueline h2::before {
  left: 0;
}

.title_blueline h2::after {
  right: 0;
}

/* -----------------------------------------------------
    見出しタイトル greenline
----------------------------------------------------- */
.title_greenline {
  text-align: center;
}

.title_greenline h2 {
  position: relative;
  margin: 0;
  padding: 0 50px;
  color: #009e96;
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .title_greenline h2 {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

@media screen and (max-width: 575px) {
  .title_greenline h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.title_greenline h2::before, .title_greenline h2::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30%;
  height: 5px;
  border-top: solid 1px #009e96;
  border-bottom: solid 1px #009e96;
}

.title_greenline h2::before {
  left: 0;
}

.title_greenline h2::after {
  right: 0;
}

/* -----------------------------------------------------
    ボタン(radius)
----------------------------------------------------- */
.btn_radius {
  position: relative;
  width: 100%;
  text-align: center;
}

.btn_radius .btn_wrap,
.btn_radius a {
  position: relative;
  display: inline-block;
}

.btn_radius .btn_wrap::before,
.btn_radius a::before {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-1em, -50%) rotate(45deg);
  -ms-transform: translate(-1em, -50%) rotate(45deg);
  transform: translate(-1em, -50%) rotate(45deg);
  content: "";
  border-top: solid 2px #1541a2;
  border-right: solid 2px #1541a2;
}

.btn_radius .btn_wrap:hover::before,
.btn_radius a:hover::before {
  border-color: #fff;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.btn_radius input:hover {
  color: #fff;
  background-color: #1541a2;
  text-decoration: none;
}

.btn_radius a,
.btn_radius input {
  display: inline-block;
  height: 80px;
  line-height: 80px;
  border: 1px solid #1541a2;
  color: #1541a2;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.btn_radius a.reverse,
.btn_radius input.reverse {
  border: 1px solid #fff;
  color: #fff;
}

.btn_radius a.reverse::before,
.btn_radius input.reverse::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn_radius a.reverse:hover,
.btn_radius input.reverse:hover {
  color: #1541a2;
  background-color: #fff;
  text-decoration: none;
}

.btn_radius a.reverse:hover::before,
.btn_radius input.reverse:hover::before {
  border-color: #1541a2;
}

/* -----------------------------------------------------
    ボタン(recruit)
----------------------------------------------------- */
/*　ボタン_recruit */
.btn_recruit {
  background-color: #e5004f;
  padding: 50px 40px;
}

@media screen and (max-width: 575px) {
  .btn_recruit {
    padding: 25px 20px;
  }
}

.btn_recruit a {
  position: relative;
  padding: 40px 0;
  background-color: #fff;
  border: solid 1px #fff;
  border-radius: 100px;
  font-family: "Hannari", "IPAex明朝", serif;
  font-size: 24px;
  font-size: 2.4rem;
  color: #e5004f;
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}

@media screen and (max-width: 575px) {
  .btn_recruit a {
    padding: 20px 0;
    font-size: 1.6rem;
  }
}

.btn_recruit a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: -10px;
  right: -5px;
  border-radius: 100px;
  background-color: #fff;
  opacity: 0.3;
  z-index: -1;
}

@media screen and (max-width: 575px) {
  .btn_recruit a::after {
    height: 80px;
  }
}

.btn_recruit a:hover {
  color: #fff;
  background-color: #e5004f;
}

.btn_recruit a:hover .arrow_cta {
  background: #fff;
}

.btn_recruit a:hover .arrow_cta::before {
  background: #fff;
}

.btn_recruit a .arrow_cta {
  width: 17%;
  height: 1px;
  background: #e5004f;
  position: absolute;
  top: 50%;
  left: 94%;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 575px) {
  .btn_recruit a .arrow_cta {
    width: 10%;
  }
}

.btn_recruit a .arrow_cta::before {
  content: "";
  width: 23px;
  height: 1px;
  background: #e5004f;
  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 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 575px) {
  .btn_recruit a .arrow_cta::before {
    width: 15px;
  }
}

/* -----------------------------------------------------
    改行
----------------------------------------------------- */
.sp_br,
.sp_block,
.pc_none {
  display: none !important;
}

@media screen and (max-width: 575px) {
  .sp_br,
  .sp_block,
  .pc_none {
    display: block !important;
  }
}

.pc_br,
.sp_none,
.pc_block {
  display: block !important;
}

@media screen and (max-width: 575px) {
  .pc_br,
  .sp_none,
  .pc_block {
    display: none !important;
  }
}

.tbs_br {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .tbs_br {
    display: block !important;
  }
}

.liquid_br {
  display: none !important;
}

@media screen and (max-width: 1199px) {
  .liquid_br {
    display: block !important;
  }
}

.liquid_none {
  display: block !important;
}

@media screen and (max-width: 1199px) {
  .liquid_none {
    display: none !important;
  }
}

/* -----------------------------------------------------
    カテゴリーの色
----------------------------------------------------- */
.single-terms.topics {
  background-color: #c1272d;
  border: 1px solid #c1272d;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.topics:hover {
  background-color: #fff;
  color: #c1272d;
}

.single-terms.info {
  background-color: #373737;
  border: 1px solid #373737;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.info:hover {
  background-color: #fff;
  color: #373737;
}

.single-terms.veterinarian {
  background-color: #1541a2;
  border: 1px solid #1541a2;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.veterinarian:hover {
  background-color: #fff;
  color: #1541a2;
}

.single-terms.owner {
  background-color: #009e96;
  border: 1px solid #009e96;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.owner:hover {
  background-color: #fff;
  color: #009e96;
}

.single-terms.seminar {
  background-color: #0096ff;
  border: 1px solid #0096ff;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.seminar:hover {
  background-color: #fff;
  color: #0096ff;
}

.single-terms.newsletter {
  background-color: #f7931e;
  border: 1px solid #f7931e;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.single-terms.newsletter:hover {
  background-color: #fff;
  color: #f7931e;
}

/* -------------------------------------------------------------------------
	Layout
------------------------------------------------------------------------- */
/*

	パンくずリスト

*/
.breadcrumbs .wrapper {
  padding: 25px 0;
}

.breadcrumbs .wrapper > span {
  font-size: 12px;
  font-size: 1.2rem;
  margin-left: 15px;
}

.breadcrumbs .wrapper > span:first-of-type {
  margin-left: 0;
  margin-right: 15px;
}

/*

	メインカラム・サブカラム等

*/
.wrapper {
  width: 50%;
  min-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .wrapper {
    width: 70%;
    min-width: auto;
  }
}

@media screen and (max-width: 991px) {
  .wrapper {
    width: 80%;
    min-width: auto;
  }
}

@media screen and (max-width: 575px) {
  .wrapper {
    width: 90%;
    min-width: auto;
  }
}

.main_column {
  width: 71.6%;
  float: left;
}

@media screen and (max-width: tablet) {
  .main_column {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .main_column {
    width: 100%;
    float: none;
  }
}

.sub_column {
  width: 24%;
  float: right;
}

@media screen and (max-width: tablet) {
  .sub_column {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sub_column {
    width: 100%;
    float: none;
  }
}

/*

	フッター

*/
.site_footer {
  background: #fff;
}

@media screen and (max-width: 1199px) {
  .site_footer {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 575px) {
  .site_footer {
    padding-bottom: 55px;
  }
}

.site_footer__inner {
  width: 100%;
  background-image: url("../../images/common/bg_footer_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  padding: 40px 0 30px;
}

@media screen and (max-width: 575px) {
  .site_footer__inner {
    padding: 35px 0 20px;
  }
}

.site_footer__nav {
  width: 62.37%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 200px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .site_footer__nav {
    width: 81.9%;
  }
}

@media screen and (max-width: 991px) {
  .site_footer__nav {
    padding: 0;
    display: block;
  }
}

.site_footer__nav a {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  display: block;
}

@media screen and (max-width: 1199px) {
  .site_footer__nav a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .site_footer__nav a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  .site_footer__nav a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.site_footer__nav li:nth-child(n + 2) a {
  line-height: 2;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: normal;
}

@media screen and (max-width: 991px) {
  .site_footer__nav li:nth-child(n + 2) a {
    font-size: 10px;
    font-size: 1rem;
  }
}

.site_footer__nav__news li:nth-child(n + 2) a {
  font-weight: bold !important;
}

.site_footer__nav__logo_pc {
  width: 10.4%;
}

@media screen and (max-width: 991px) {
  .site_footer__nav__logo_pc {
    display: none;
  }
}

.site_footer__nav__veterinarian li:last-child a {
  line-height: 1;
  margin-top: 6.5px;
}

.site_footer__nav__sp {
  width: 100%;
  display: none;
  margin-top: 10px;
  zoom: 1;
}

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

.site_footer__nav__sp .inner {
  width: 50%;
  float: left;
}

.site_footer__nav__sp .inner ul:nth-child(n + 2) {
  margin-top: 25px;
}

.site_footer__nav__sp .inner__guide_02 {
  zoom: 1;
}

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

.site_footer__nav__sp .inner__guide_02 li:nth-child(2), .site_footer__nav__sp .inner__guide_02 li:nth-child(4) {
  width: 33%;
  float: left;
}

.site_footer__nav__sp .inner__guide_02 li:nth-child(3), .site_footer__nav__sp .inner__guide_02 li:nth-child(5) {
  width: 67%;
  float: left;
}

.site_footer__nav__sp .inner__news li:nth-child(n + 2) a {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold !important;
}

.site_footer__nav__sp .inner:nth-child(2) {
  padding-left: 11.5%;
}

@media screen and (max-width: 991px) {
  .site_footer__nav__owner, .site_footer__nav__veterinarian, .site_footer__nav__about, .site_footer__nav__guide, .site_footer__nav__news {
    display: none;
  }
  .site_footer__nav__sp {
    display: block;
  }
}

.site_footer__nav__logo_sp {
  width: 67.7%;
  margin: 25px auto 0;
  display: none;
}

.site_footer__nav__logo_sp img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .site_footer__nav__logo_sp {
    width: 30%;
    margin: 25px 0 0;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .site_footer__nav__logo_sp {
    width: 67.7%;
  }
}

@media screen and (max-width: 575px) {
  .site_footer__nav__logo_sp {
    margin: 25px auto 0;
  }
}

.site_footer__nav__banner {
  width: 29.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 0;
}

.site_footer__nav__banner li {
  width: 49%;
}

.site_footer__nav__banner li img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .site_footer__nav__banner {
    width: 100%;
    margin-top: 25px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: static;
  }
  .site_footer__nav__banner li {
    width: auto;
  }
  .site_footer__nav__banner li:first-child {
    margin-right: 1%;
  }
}

@media screen and (max-width: 575px) {
  .site_footer__nav__banner li {
    width: 31.5%;
  }
  .site_footer__nav__banner li:first-child {
    margin-left: 18%;
  }
  .site_footer__nav__banner li:last-child {
    margin-right: 18%;
  }
}

.site_footer__copyright {
  padding: 1% 0;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright {
    padding: 12px 0;
  }
}

.site_footer__copyright .privacy {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  position: absolute;
  bottom: 1vw;
  right: 18.8%;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright .privacy {
    font-size: 10px;
    font-size: 1rem;
    white-space: nowrap;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.site_footer__copyright p, .site_footer__copyright small {
  line-height: 1.77;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright p, .site_footer__copyright small {
    font-size: 10px;
    font-size: 1rem;
  }
}

.site_footer__copyright p .br_sp {
  display: none;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright p .br_sp {
    display: block;
  }
}

.site_footer__copyright small {
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .site_footer__copyright small {
    display: block;
    margin-top: 30px;
  }
}

.page_top {
  position: fixed;
  right: 15px;
  bottom: 15px;
}

.page_top a {
  display: block;
  width: 30px;
  height: 30px;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  background-color: #333;
  font-size: 12px;
  font-size: 1.2rem;
}

.page_top a:hover {
  background-color: #ddd;
  text-decoration: none;
}

/*

	グロナビ

*/
.global_nav {
  height: 50px;
  background-color: #333;
}

/*

	ヘッダ

*/
.site_header__inner {
  width: 86.8%;
  margin: 0 auto;
}

.site_header__id a {
  text-decoration: none;
}

/*

	ナビ

*/
.nav__side {
  width: 4.4%;
  min-width: 88px;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .nav__side {
    width: 37.5%;
    min-width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.nav__side .ico {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.nav__side .ico:hover {
  opacity: .7;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico {
    width: 49%;
  }
}

.nav__side .ico > div {
  height: 6.25vw;
  min-height: 125px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5vw 0;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div {
    height: 100px;
    min-height: auto;
    padding-top: 10px;
  }
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div {
    height: 55px;
    padding: 6px 0 4px;
  }
}

.nav__side .ico > div img {
  width: 48px;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div img {
    width: 50px;
  }
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div img {
    width: 28px;
  }
}

.nav__side .ico > div .img--active {
  display: none;
}

.nav__side .ico > div .cross {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 3px auto 0;
  display: none;
}

.nav__side .ico > div .cross > span {
  width: 28.2px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  display: block;
}

.nav__side .ico > div .cross > span:nth-child(1), .nav__side .ico > div .cross > span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
}

.nav__side .ico > div .cross > span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav__side .ico > div .cross > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div .cross {
    width: 30px;
    margin-top: 18px;
  }
  .nav__side .ico > div .cross span {
    width: 42.3px;
  }
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div .cross {
    width: 24px;
    margin-top: 4px;
  }
  .nav__side .ico > div .cross span {
    width: 33.8px;
  }
}

.nav__side .ico > div .cross--active {
  display: block;
}

.nav__side .ico > div .ham {
  position: relative;
  width: 1.39vw;
  height: 0.895vw;
  min-width: 27.9px;
  min-height: 17.9px;
  margin: 0 auto;
}

.nav__side .ico > div .ham > span {
  width: 1.39vw;
  min-width: 27.9px;
  height: 0.1vw;
  min-height: 2px;
  background: #fff;
  border-radius: 0;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

.nav__side .ico > div .ham > span:nth-child(1) {
  top: 0;
}

.nav__side .ico > div .ham > span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav__side .ico > div .ham > span:nth-child(3) {
  bottom: 0;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico > div .ham {
    display: none;
  }
}

.nav__side .ico > div .ham--active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  -ms-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.nav__side .ico > div .ham--active span:nth-child(2) {
  width: 0;
  min-width: 0;
}

.nav__side .ico > div .ham--active span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.nav__side .ico > div b {
  width: 80%;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .nav__side .ico > div b {
    font-size: 10px;
    font-size: 1rem;
  }
}

.nav__side .ico > div b .line {
  width: 80%;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -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;
}

.nav__side .ico:first-child {
  background: #0068B7;
}

.nav__side .ico:last-child {
  background: #009E96;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico:first-child {
    background-color: rgba(0, 104, 183, 0.9);
  }
  .nav__side .ico:last-child {
    background-color: rgba(0, 158, 150, 0.9);
  }
}

.nav__side .ico:last-child {
  margin-top: 3px;
}

@media screen and (max-width: 1199px) {
  .nav__side .ico:last-child {
    margin-top: 0;
  }
}

.menu {
  width: 100vw;
  height: 100vh;
  padding-top: 5.5%;
  position: fixed;
  top: 0;
  left: 100%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: 100;
  cursor: pointer;
}

@media screen and (max-width: 575px) {
  .menu {
    padding-top: 35px;
  }
}

.menu .title {
  text-align: center;
}

.menu .title a {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 38px;
  font-size: 3.8rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .menu .title a {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.menu .inner {
  width: 50%;
  border-top: 2px #fff solid;
  margin: 2.5% auto 0;
  zoom: 1;
}

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

@media screen and (max-width: 1199px) {
  .menu .inner {
    width: 100%;
    border-width: 1px;
    margin: 35px auto 0;
  }
  .menu .inner:nth-child(2) {
    padding-left: 25px;
  }
}

.menu .inner li {
  width: 40%;
  float: left;
}

.menu .inner li:nth-child(1), .menu .inner li:nth-child(2) {
  margin-top: 4%;
}

.menu .inner li:nth-child(even) {
  margin-left: 20%;
}

@media screen and (max-width: 1199px) {
  .menu .inner li:nth-child(1), .menu .inner li:nth-child(2) {
    margin-top: 60px;
  }
  .menu .inner li:nth-child(even) {
    margin-left: 0;
  }
}

.menu .inner li a {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 3;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .menu .inner li a {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .menu .inner li a {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 575px) {
  .menu .inner li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.menu__veterinarian {
  background-color: rgba(0, 104, 183, 0.9);
}

@media screen and (max-width: 1199px) {
  .menu__veterinarian .inner li {
    width: 50%;
  }
}

.menu__owner {
  background-color: rgba(0, 158, 150, 0.9);
}

@media screen and (max-width: 1199px) {
  .menu__owner .inner {
    width: 100%;
  }
  .menu__owner .inner li {
    width: 100%;
    float: none;
  }
  .menu__owner .inner li:nth-child(2) {
    margin-top: 0;
  }
}

.menu__owner .inner li a {
  white-space: nowrap;
}

.menu__access, .menu__vacancy {
  background-color: rgba(0, 0, 0, 0.65);
  zoom: 1;
}

.menu__access::after, .menu__vacancy::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

.menu__access .title, .menu__vacancy .title {
  border-bottom: 1px #fff solid;
  padding-bottom: 35px;
}

.menu__access li:nth-child(n + 2), .menu__vacancy li:nth-child(n + 2) {
  width: 50%;
  float: left;
}

.menu__access li:nth-child(n + 2) a, .menu__vacancy li:nth-child(n + 2) a {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 30px;
  font-size: 3rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .menu__access li:nth-child(n + 2) a, .menu__vacancy li:nth-child(n + 2) a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.menu__access li:nth-child(2), .menu__access li:nth-child(3), .menu__vacancy li:nth-child(2), .menu__vacancy li:nth-child(3) {
  margin: 60px 0 48px;
}

.menu__access li:nth-child(2), .menu__access li:nth-child(4), .menu__vacancy li:nth-child(2), .menu__vacancy li:nth-child(4) {
  padding-left: 25px;
}

.menu--active {
  left: 0;
}

.aside__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .aside__bottom {
    width: 61.5%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.aside__bottom .ico {
  background-color: rgba(0, 0, 0, 0.8);
}

.aside__bottom .ico a {
  width: 4.87vw;
  min-width: 97px;
  text-align: center;
  display: block;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico a {
    width: 15.3472vw;
    min-width: auto;
    text-decoration: none;
  }
}

.aside__bottom .ico a dl {
  height: 4vw;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico a dl {
    height: 100px;
    min-height: 100px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico a dl {
    height: 55px;
    min-height: 55px;
    padding: 5px 0 3px;
  }
}

.aside__bottom .ico a dl .img--active {
  display: none;
}

.aside__bottom .ico a dl .cross {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 3px auto 0;
  display: none;
}

.aside__bottom .ico a dl .cross > span {
  width: 28.2px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  display: block;
}

.aside__bottom .ico a dl .cross > span:nth-child(1), .aside__bottom .ico a dl .cross > span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
}

.aside__bottom .ico a dl .cross > span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.aside__bottom .ico a dl .cross > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico a dl .cross {
    width: 30px;
    margin-top: 18px;
  }
  .aside__bottom .ico a dl .cross span {
    width: 42.3px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico a dl .cross {
    width: 24px;
    margin-top: 4px;
  }
  .aside__bottom .ico a dl .cross span {
    width: 33.8px;
  }
}

.aside__bottom .ico a dl .cross--active {
  display: block;
}

.aside__bottom .ico a dl dd {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico a dl dd {
    font-size: 8px;
    font-size: 0.8rem;
  }
}

.aside__bottom .ico_top dl {
  width: 4.87vw;
  min-width: 97px;
  height: 4vw;
  min-height: 80px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_top dl {
    width: 13.08vw;
    min-width: auto;
    text-decoration: none;
  }
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_top dl {
    height: 100px;
    min-height: 100px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_top dl {
    height: 55px;
    min-height: 55px;
    padding: 5px 0 3px;
  }
}

.aside__bottom .ico_top dl dd {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_top dl dd {
    font-size: 8px;
    font-size: 0.8rem;
  }
}

.aside__bottom .ico_top .trg {
  width: 1.19vw;
  min-width: 34px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_top .trg {
    min-width: 44px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_top .trg {
    min-width: 28.8px;
  }
}

.aside__bottom .ico_cta a dl {
  padding: 16px 0 10px;
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_cta a dl {
    padding: 8px 0 5px;
  }
}

.aside__bottom .ico_cta a dl img {
  width: 1.7vw;
  min-width: 34px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_cta a dl img {
    min-width: 44px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_cta a dl img {
    min-width: 27.2px;
  }
}

.aside__bottom .ico_access img {
  width: 1.7vw;
  min-width: 34px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_access img {
    min-width: 44px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_access img {
    min-width: 27.2px;
  }
}

.aside__bottom .ico_vacancy img {
  width: 1.6vw;
  min-width: 32px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_vacancy img {
    min-width: 42px;
  }
}

@media screen and (max-width: 575px) {
  .aside__bottom .ico_vacancy img {
    min-width: 25.6px;
  }
}

.aside__bottom .ico_cta, .aside__bottom .ico_access, .aside__bottom .ico_vacancy {
  margin-left: 3px;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .ico_cta, .aside__bottom .ico_access, .aside__bottom .ico_vacancy {
    margin-left: 0;
  }
}

.aside__bottom .area {
  width: 0;
  height: 4vw;
  min-height: 80px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  .aside__bottom .area {
    display: none;
  }
}

.aside__bottom .area dl {
  height: 3vw;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.aside__bottom .area dl dd {
  height: 50%;
  vertical-align: middle;
}

.aside__bottom .area dl dd a {
  line-height: 1;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  display: none;
}

.aside__bottom .area dl dd:nth-child(odd) {
  width: 30%;
  margin-left: 10%;
}

.aside__bottom .area dl dd:nth-child(even) {
  width: 60%;
}

#popup-window {
  width: 100%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

#popup-window .modal_mv {
  position: relative;
  width: 100%;
  height: 55vh;
  background-image: url("../images/hcw-check/bg_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#popup-window .modal_mv::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv {
    background-image: url("../images/hcw-check/sp_bg_01.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
  }
}

#popup-window .modal_mv > * {
  height: 100%;
}

#popup-window .modal_mv .modal_mv__contents {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.7);
  -ms-overflow-x: hidden;
  -ms-overflow-y: hidden;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  #popup-window .modal_mv .modal_mv__contents {
    height: 80%;
  }
}

#popup-window .modal_mv .modal_mv__contents::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  content: "";
  width: 104%;
  height: 108%;
  background-color: rgba(255, 255, 255, 0.5);
}

#popup-window .modal_mv .modal_mv__contents__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 87.7%;
}

#popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1 {
  position: relative;
  margin: 10px auto 60px;
  font-family: "Hannari", "IPAex明朝", serif;
  line-height: 1;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1 {
    margin: 17px auto 30px;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

#popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1::after {
  position: absolute;
  bottom: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 70px;
  height: 4px;
  background-color: #1541a2;
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1::after {
    width: 35px;
    height: 2px;
  }
}

#popup-window .modal_mv .modal_mv__contents__text .modal_mv__title h1 span {
  color: #1541a2;
}

@media screen and (max-width: 1199px) {
  #popup-window .modal_mv .modal_mv__contents__text p {
    text-align: left;
  }
}

@media screen and (max-width: 575px) {
  #popup-window .modal_mv .modal_mv__contents__text p {
    font-size: 10px;
    font-size: 1rem;
  }
}

#popup-window .confirmation {
  margin-bottom: 70px;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation {
    margin-bottom: 35px;
  }
}

#popup-window .confirmation__title {
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__title {
    margin: 0 auto;
  }
}

#popup-window .confirmation__title h2 {
  margin: 0 auto 60px;
  color: #1541a2;
  font-weight: 700;
  font-size: 48px;
  font-size: 4.8rem;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 991px) {
  #popup-window .confirmation__title h2 {
    font-size: 43px;
    font-size: 4.3rem;
  }
}

@media screen and (max-width: 767px) {
  #popup-window .confirmation__title h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__title h2 {
    margin: 0 auto 30px;
    font-size: 20px;
    font-size: 2rem;
  }
}

#popup-window .confirmation__title h2::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #1541a2;
  position: absolute;
  left: 0;
  bottom: -3%;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__title h2::after {
    height: 2px;
  }
}

#popup-window .confirmation__inner {
  margin: 0 auto;
  zoom: 1;
}

#popup-window .confirmation__inner::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

#popup-window .confirmation__inner .confirmation__button {
  width: 47.6%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .confirmation__button {
    width: 94%;
    margin: 0 auto;
    height: 50px;
    line-height: 50px;
  }
}

#popup-window .confirmation__inner .confirmation__button::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 1%;
  width: 0;
  height: 0;
  border-top: 15px solid #fff;
  border-right: 15px solid transparent;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .confirmation__button::before {
    top: 7%;
    left: 1.5%;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
  }
}

#popup-window .confirmation__inner .confirmation__button a {
  display: block;
  font-size: 26px;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .confirmation__button a {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

#popup-window .confirmation__inner .button__yes {
  float: left;
  background-color: #0068B7;
  border: 1px solid #0068B7;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

#popup-window .confirmation__inner .button__yes:hover {
  background-color: #fff;
  border: 1px solid #0068B7;
}

#popup-window .confirmation__inner .button__yes:hover a {
  color: #0068B7;
}

#popup-window .confirmation__inner .button__yes:hover::before {
  border-top: 15px solid #0068B7;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .button__yes {
    float: none;
  }
}

#popup-window .confirmation__inner .button__yes::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 104, 183, 0.2);
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: -1;
}

#popup-window .confirmation__inner .button__no {
  float: right;
  background-color: #009E96;
  border: 1px solid #009E96;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

#popup-window .confirmation__inner .button__no:hover {
  background-color: #fff;
  border: 1px solid #009E96;
}

#popup-window .confirmation__inner .button__no:hover a {
  color: #009E96;
}

#popup-window .confirmation__inner .button__no:hover::before {
  border-top: 15px solid #009E96;
}

@media screen and (max-width: 575px) {
  #popup-window .confirmation__inner .button__no {
    margin-top: 25px;
    float: none;
  }
}

#popup-window .confirmation__inner .button__no::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 158, 150, 0.2);
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: -1;
}

#popup-window {
  position: relative;
}

#active-popup {
  background-color: rgba(52, 73, 94, 0.7);
  position: absolute;
  width: 100%;
  heighT: 100% !important;
  top: 0;
  left: 0;
  z-index: 10000;
}

#popup-container {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}

.modal-content {
  position: relative;
  text-align: center;
}

body.owner {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

body.owner .accent_owner {
  color: #009e96;
}

body.owner .news, body.owner .greeting, body.owner .reservation, body.owner .attention, body.owner .price, body.owner .inspection {
  width: 81%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1199px) {
  body.owner .news, body.owner .greeting, body.owner .reservation, body.owner .attention, body.owner .price, body.owner .inspection {
    width: 89.5%;
  }
}

body.owner .news::before, body.owner .greeting::before, body.owner .reservation::before, body.owner .attention::before, body.owner .price::before, body.owner .inspection::before, body.owner .facility::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -9.5vw;
  z-index: -10;
}

@media screen and (max-width: 1199px) {
  body.owner .news::before, body.owner .greeting::before, body.owner .reservation::before, body.owner .attention::before, body.owner .price::before, body.owner .inspection::before, body.owner .facility::before {
    left: -5.25vw;
  }
}

body.owner .news::before {
  background-image: url("../../images/owner/bg_owner_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.owner .greeting::before, body.owner .reservation::before, body.owner .attention::before, body.owner .price::before, body.owner .inspection::before, body.owner .facility::before {
  background-image: url("../../images/owner/bg_owner_02.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.owner .facility::before {
  left: 0;
}

body.owner .greeting__bg_blk, body.owner .reservation__bg_blk, body.owner .price__bg_blk {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk, body.owner .reservation__bg_blk, body.owner .price__bg_blk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
}

body.owner .greeting__bg_blk .bg, body.owner .reservation__bg_blk .bg, body.owner .price__bg_blk .bg {
  width: 51.4%;
  height: 25.7vw;
  background-image: url("");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  margin: 0 0 0 auto;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .bg, body.owner .reservation__bg_blk .bg, body.owner .price__bg_blk .bg {
    width: 77%;
    height: 38.5vw;
    margin-top: -15px;
  }
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .bg, body.owner .reservation__bg_blk .bg, body.owner .price__bg_blk .bg {
    width: 290px;
    height: 178px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
}

body.owner .greeting__bg_blk .blk, body.owner .reservation__bg_blk .blk, body.owner .price__bg_blk .blk {
  width: 40.8%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  padding: 3.18% 4.41% 3.86%;
  margin: -19% 0 0 47.5%;
  position: relative;
  z-index: 10;
  margin: -19% 0 0 11.7%;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .blk, body.owner .reservation__bg_blk .blk, body.owner .price__bg_blk .blk {
    width: 74%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk, body.owner .reservation__bg_blk .blk, body.owner .price__bg_blk .blk {
    width: 278px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    padding: 25px;
  }
}

body.owner .greeting__bg_blk .blk::after, body.owner .reservation__bg_blk .blk::after, body.owner .price__bg_blk .blk::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk::after, body.owner .reservation__bg_blk .blk::after, body.owner .price__bg_blk .blk::after {
    top: -7.5px;
    left: -7.5px;
  }
}

body.owner .greeting__bg_blk .blk .title, body.owner .reservation__bg_blk .blk .title, body.owner .price__bg_blk .blk .title {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk .title, body.owner .reservation__bg_blk .blk .title, body.owner .price__bg_blk .blk .title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

body.owner .greeting__bg_blk .blk .content, body.owner .reservation__bg_blk .blk .content, body.owner .price__bg_blk .blk .content {
  line-height: 2.24;
  font-size: 17px;
  font-size: 1.7rem;
  margin-top: 6.25%;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .blk .content, body.owner .reservation__bg_blk .blk .content, body.owner .price__bg_blk .blk .content {
    margin-top: 3.125%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk .content, body.owner .reservation__bg_blk .blk .content, body.owner .price__bg_blk .blk .content {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .greeting__bg_blk .blk .copy .content span {
  display: block;
  text-align: right;
}

body.owner .greeting__bg_blk .blk .btn, body.owner .reservation__bg_blk .blk .btn, body.owner .price__bg_blk .blk .btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px #333 solid;
  margin-top: 7.52%;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .blk .btn, body.owner .reservation__bg_blk .blk .btn, body.owner .price__bg_blk .blk .btn {
    margin-top: 1.88%;
  }
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk .btn, body.owner .reservation__bg_blk .blk .btn, body.owner .price__bg_blk .blk .btn {
    height: 25px;
    margin-top: 3.76%;
  }
}

body.owner .greeting__bg_blk .blk .btn a, body.owner .reservation__bg_blk .blk .btn a, body.owner .price__bg_blk .blk .btn a {
  line-height: 50px;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  text-decoration: none;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .blk .btn a, body.owner .reservation__bg_blk .blk .btn a, body.owner .price__bg_blk .blk .btn a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk .btn a, body.owner .reservation__bg_blk .blk .btn a, body.owner .price__bg_blk .blk .btn a {
    line-height: 25px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .greeting__bg_blk .blk .btn a .arrow, body.owner .reservation__bg_blk .blk .btn a .arrow, body.owner .price__bg_blk .blk .btn a .arrow {
  width: 20%;
  height: 1px;
  background: #333;
  display: block;
  position: absolute;
  top: 50%;
  left: 97%;
  -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.owner .greeting__bg_blk .blk .btn a .arrow::before, body.owner .greeting__bg_blk .blk .btn a .arrow::after, body.owner .reservation__bg_blk .blk .btn a .arrow::before, body.owner .reservation__bg_blk .blk .btn a .arrow::after, body.owner .price__bg_blk .blk .btn a .arrow::before, body.owner .price__bg_blk .blk .btn a .arrow::after {
  content: "";
  background: #333;
  position: absolute;
  top: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.owner .greeting__bg_blk .blk .btn a .arrow::before, body.owner .reservation__bg_blk .blk .btn a .arrow::before, body.owner .price__bg_blk .blk .btn a .arrow::before {
  width: 1px;
  height: 14.5px;
  right: 22px;
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk .btn a .arrow::before, body.owner .reservation__bg_blk .blk .btn a .arrow::before, body.owner .price__bg_blk .blk .btn a .arrow::before {
    height: 7.25px;
    right: 11px;
  }
}

body.owner .greeting__bg_blk .blk .btn a .arrow::after, body.owner .reservation__bg_blk .blk .btn a .arrow::after, body.owner .price__bg_blk .blk .btn a .arrow::after {
  width: 24.5px;
  height: 1px;
  right: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: rotate(21.5deg);
  -ms-transform: rotate(21.5deg);
  transform: rotate(21.5deg);
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk .btn a .arrow::after, body.owner .reservation__bg_blk .blk .btn a .arrow::after, body.owner .price__bg_blk .blk .btn a .arrow::after {
    width: 12.25px;
  }
}

body.owner .greeting__bg_blk .blk .btn:hover, body.owner .reservation__bg_blk .blk .btn:hover, body.owner .price__bg_blk .blk .btn:hover {
  background: #333;
}

body.owner .greeting__bg_blk .blk .btn:hover a, body.owner .reservation__bg_blk .blk .btn:hover a, body.owner .price__bg_blk .blk .btn:hover a {
  color: #fff;
}

body.owner .greeting__bg_blk .blk .btn:hover a .arrow, body.owner .reservation__bg_blk .blk .btn:hover a .arrow, body.owner .price__bg_blk .blk .btn:hover a .arrow {
  background: #fff;
}

body.owner .greeting__bg_blk .blk .btn:hover a .arrow::before, body.owner .greeting__bg_blk .blk .btn:hover a .arrow::after, body.owner .reservation__bg_blk .blk .btn:hover a .arrow::before, body.owner .reservation__bg_blk .blk .btn:hover a .arrow::after, body.owner .price__bg_blk .blk .btn:hover a .arrow::before, body.owner .price__bg_blk .blk .btn:hover a .arrow::after {
  background: #fff;
}

body.owner .attention__bg_blk, body.owner .inspection__bg_blk {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  body.owner .attention__bg_blk, body.owner .inspection__bg_blk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
}

body.owner .attention__bg_blk .bg, body.owner .inspection__bg_blk .bg {
  width: 51.4%;
  height: 25.7vw;
  background-image: url("");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1199px) {
  body.owner .attention__bg_blk .bg, body.owner .inspection__bg_blk .bg {
    width: 77%;
    height: 38.5vw;
    margin-top: -15px;
  }
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .bg, body.owner .inspection__bg_blk .bg {
    width: 290px;
    height: 178px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
}

body.owner .attention__bg_blk .blk, body.owner .inspection__bg_blk .blk {
  width: 40.8%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  padding: 3.18% 4.41% 3.86%;
  margin: -19% 0 0 47.5%;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1199px) {
  body.owner .attention__bg_blk .blk, body.owner .inspection__bg_blk .blk {
    width: 74%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk, body.owner .inspection__bg_blk .blk {
    width: 278px;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    padding: 25px;
  }
}

body.owner .attention__bg_blk .blk::after, body.owner .inspection__bg_blk .blk::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk::after, body.owner .inspection__bg_blk .blk::after {
    top: -7.5px;
    left: -7.5px;
  }
}

body.owner .attention__bg_blk .blk .title, body.owner .inspection__bg_blk .blk .title {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  line-height: 1;
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk .title, body.owner .inspection__bg_blk .blk .title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

body.owner .attention__bg_blk .blk .content, body.owner .inspection__bg_blk .blk .content {
  line-height: 2.24;
  font-size: 17px;
  font-size: 1.7rem;
  margin-top: 6.25%;
}

@media screen and (max-width: 1199px) {
  body.owner .attention__bg_blk .blk .content, body.owner .inspection__bg_blk .blk .content {
    margin-top: 3.125%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk .content, body.owner .inspection__bg_blk .blk .content {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .attention__bg_blk .blk .btn, body.owner .inspection__bg_blk .blk .btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px #333 solid;
  margin-top: 7.52%;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1199px) {
  body.owner .attention__bg_blk .blk .btn, body.owner .inspection__bg_blk .blk .btn {
    margin-top: 1.88%;
  }
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk .btn, body.owner .inspection__bg_blk .blk .btn {
    height: 25px;
    margin-top: 3.76%;
  }
}

body.owner .attention__bg_blk .blk .btn a, body.owner .inspection__bg_blk .blk .btn a {
  line-height: 50px;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  text-decoration: none;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
}

@media screen and (max-width: 1199px) {
  body.owner .attention__bg_blk .blk .btn a, body.owner .inspection__bg_blk .blk .btn a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk .btn a, body.owner .inspection__bg_blk .blk .btn a {
    line-height: 25px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .attention__bg_blk .blk .btn a .arrow, body.owner .inspection__bg_blk .blk .btn a .arrow {
  width: 20%;
  height: 1px;
  background: #333;
  display: block;
  position: absolute;
  top: 50%;
  left: 97%;
  -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.owner .attention__bg_blk .blk .btn a .arrow::before, body.owner .attention__bg_blk .blk .btn a .arrow::after, body.owner .inspection__bg_blk .blk .btn a .arrow::before, body.owner .inspection__bg_blk .blk .btn a .arrow::after {
  content: "";
  background: #333;
  position: absolute;
  top: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.owner .attention__bg_blk .blk .btn a .arrow::before, body.owner .inspection__bg_blk .blk .btn a .arrow::before {
  width: 1px;
  height: 14.5px;
  right: 22px;
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk .btn a .arrow::before, body.owner .inspection__bg_blk .blk .btn a .arrow::before {
    height: 7.25px;
    right: 11px;
  }
}

body.owner .attention__bg_blk .blk .btn a .arrow::after, body.owner .inspection__bg_blk .blk .btn a .arrow::after {
  width: 24.5px;
  height: 1px;
  right: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: rotate(21.5deg);
  -ms-transform: rotate(21.5deg);
  transform: rotate(21.5deg);
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk .btn a .arrow::after, body.owner .inspection__bg_blk .blk .btn a .arrow::after {
    width: 12.25px;
  }
}

body.owner .attention__bg_blk .blk .btn:hover, body.owner .inspection__bg_blk .blk .btn:hover {
  background: #333;
}

body.owner .attention__bg_blk .blk .btn:hover a, body.owner .inspection__bg_blk .blk .btn:hover a {
  color: #fff;
}

body.owner .attention__bg_blk .blk .btn:hover a .arrow, body.owner .inspection__bg_blk .blk .btn:hover a .arrow {
  background: #fff;
}

body.owner .attention__bg_blk .blk .btn:hover a .arrow::before, body.owner .attention__bg_blk .blk .btn:hover a .arrow::after, body.owner .inspection__bg_blk .blk .btn:hover a .arrow::before, body.owner .inspection__bg_blk .blk .btn:hover a .arrow::after {
  background: #fff;
}

body.owner .greeting__bg_blk .bg {
  background-image: url("../../images/owner/bg_greeting_01.jpg");
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .bg {
    background-image: url("../../images/owner/bg_greeting_02.jpg");
  }
}

body.owner .reservation__bg_blk .bg {
  background-image: url("../../images/owner/bg_reservation_01.jpg");
  background-position: right center;
}

body.owner .attention__bg_blk .bg {
  background-image: url("../../images/owner/bg_attention_01.jpg");
  background-position: right center;
}

body.owner .price__bg_blk .bg {
  background-image: url("../../images/owner/bg_price_01.jpg");
  background-position: right center;
}

body.owner .inspection__bg_blk .bg {
  background-image: url("../../images/owner/bg_inspection_01.jpg");
}

body.owner .kv {
  background-image: url("../../images/owner/bg_kv_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: -100;
}

@media screen and (max-width: 575px) {
  body.owner .kv {
    background-image: url("../../images/owner/bg_kv_03.jpg");
    background-position: left top;
    padding-bottom: 35px;
  }
}

body.owner .kv::after {
  content: "";
  width: 45%;
  height: 100%;
  background-image: url("../../images/owner/img_kv_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 575px) {
  body.owner .kv::after {
    width: 60%;
  }
}

body.owner .kv__title {
  background-image: url("../../images/owner/bg_title_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #fff;
  padding: 2.5% 0 2% 18.75%;
}

@media screen and (max-width: 1199px) {
  body.owner .kv__title {
    padding-left: 5.25%;
  }
}

@media screen and (max-width: 575px) {
  body.owner .kv__title {
    padding: 25px;
  }
}

body.owner .kv__title h1 {
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1199px) {
  body.owner .kv__title h1 {
    width: 55%;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .kv__title h1 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.owner .kv__title span {
  width: 14.5vw;
  display: block;
  margin-top: 35px;
}

@media screen and (max-width: 575px) {
  body.owner .kv__title span {
    width: 145px;
    margin-top: 22.5px;
  }
}

body.owner .kv__content {
  padding: 7.75% 0 6% 18.75%;
  position: relative;
}

@media screen and (max-width: 1199px) {
  body.owner .kv__content {
    padding: 5.25%;
  }
}

@media screen and (max-width: 575px) {
  body.owner .kv__content {
    width: 97.5%;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 25px;
    margin: 80px auto 0;
    z-index: 10;
  }
  body.owner .kv__content::after {
    content: "";
    width: 100vw;
    height: 105%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -10;
  }
}

body.owner .kv__content::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../../images/owner/bg_kv_02.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

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

body.owner .kv__content h2 {
  width: 45%;
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 40px;
  font-size: 4rem;
}

@media screen and (max-width: 1199px) {
  body.owner .kv__content h2 {
    width: 55%;
    font-size: 38px;
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 991px) {
  body.owner .kv__content h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  body.owner .kv__content h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .kv__content h2 {
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
}

body.owner .kv__content p {
  width: 45%;
  line-height: 2.67;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 3%;
}

@media screen and (max-width: 1199px) {
  body.owner .kv__content p {
    width: 55%;
  }
}

@media screen and (max-width: 991px) {
  body.owner .kv__content p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .kv__content p {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    margin-top: 10px;
  }
}

body.owner .news {
  padding-top: 3.75%;
}

@media screen and (max-width: 575px) {
  body.owner .news {
    padding-top: 0;
  }
}

body.owner .news__title {
  width: 11.5vw;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.owner .news__title {
    width: 115px;
  }
}

body.owner .news__title::after {
  content: "";
  width: 19vw;
  height: 19vw;
  background-image: url("../../images/owner/bg_news_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 6.5vw;
  left: 0;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .news__title::after {
    width: 108px;
    height: 108px;
    top: 65px;
  }
}

body.owner .news__heading {
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 50px;
  font-size: 5rem;
  text-align: center;
  position: relative;
}

body.owner .news__heading::after {
  content: "";
  width: 64px;
  height: 8px;
  background-image: url("../../images/owner/ico_mark_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
  -ms-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
}

@media screen and (max-width: 575px) {
  body.owner .news__heading::after {
    width: 32px;
    height: 4px;
    -webkit-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }
}

@media screen and (max-width: 1199px) {
  body.owner .news__heading {
    font-size: 38px;
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .news__heading {
    font-size: 25px;
    font-size: 2.5rem;
    margin-top: 30px;
  }
}

body.owner .news__list {
  width: 62.5%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  margin: 40px auto 0;
}

@media screen and (max-width: 1199px) {
  body.owner .news__list {
    width: 91.6%;
    padding: 10px;
    margin: 20px auto 0;
  }
}

body.owner .news__list li {
  line-height: 65px;
  border-top: 1px #e0dfdc solid;
}

body.owner .news__list li:last-child {
  border-bottom: 1px #e0dfdc solid;
}

@media screen and (max-width: 575px) {
  body.owner .news__list li {
    line-height: 1;
    padding: 15px 0;
  }
}

body.owner .news__list li a {
  display: block;
  zoom: 1;
}

body.owner .news__list li a::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

body.owner .news__list li a:hover > * {
  text-decoration: underline;
}

body.owner .news__list li .time, body.owner .news__list li .title {
  float: left;
}

body.owner .news__list li .read {
  float: right;
}

body.owner .news__list li .time {
  font-size: 13px;
  font-size: 1.3rem;
  padding-left: 45px;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.owner .news__list li .time {
    font-size: 10px;
    font-size: 1rem;
    padding-left: 22.5px;
  }
}

body.owner .news__list li .time::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #009e96;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 575px) {
  body.owner .news__list li .time::before {
    width: 7.5px;
    height: 1px;
    left: 10px;
  }
}

body.owner .news__list li .title {
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 1.75%;
}

@media screen and (max-width: 575px) {
  body.owner .news__list li .title {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .news__list li .read {
  font-size: 12px;
  font-size: 1.2rem;
  color: #000;
  text-align: center;
  display: block;
  position: relative;
  padding-right: 70px;
}

body.owner .news__list li .read .arrow {
  width: 18%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.owner .news__list li .read .arrow::after {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #000;
  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);
}

@media screen and (max-width: 575px) {
  body.owner .news__list li .read {
    font-size: 10px;
    font-size: 1rem;
    padding-right: 35px;
    margin-top: 10px;
  }
}

body.owner .news__list li .read .arrow {
  right: 40px;
}

@media screen and (max-width: 575px) {
  body.owner .news__list li .read .arrow {
    right: 10px;
  }
}

body.owner .news__btn {
  width: 23.5%;
  min-width: 470px;
  height: 60px;
  margin: 10px auto 0;
}

@media screen and (max-width: 575px) {
  body.owner .news__btn {
    width: 290px;
    min-width: 290px;
    height: 35px;
    margin: 5px auto 0;
  }
}

body.owner .news__btn a {
  line-height: 60px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

body.owner .news__btn a .arrow {
  width: 17%;
  height: 1px;
  background: #fff;
  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.owner .news__btn a .arrow::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  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.owner .news__btn a:hover {
  background-color: #fff;
  color: #009e96;
}

body.owner .news__btn a:hover .arrow {
  background: #009e96;
}

body.owner .news__btn a:hover .arrow::after {
  background: #009e96;
}

@media screen and (max-width: 575px) {
  body.owner .news__btn a {
    line-height: 35px;
    font-size: 10px;
    font-size: 1rem;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  body.owner .news__btn a .arrow::after {
    width: 11.5px;
  }
}

body.owner .news__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-image: url("../../images/owner/bg_news_02.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

body.owner .news__btn a:hover {
  background-color: #fff;
}

body.owner .greeting {
  padding-top: 3.09vw;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.owner .greeting {
    padding-top: 35px;
  }
}

body.owner .greeting::after {
  content: "";
  width: 52.2vw;
  height: 35.3vw;
  background-color: rgba(252, 238, 33, 0.08);
  position: absolute;
  top: 6.64vw;
  right: -5%;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .greeting::after {
    width: 267px;
    height: 728px;
    top: 70px;
    right: 0;
  }
}

body.owner .greeting__title {
  width: 19.5vw;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 575px) {
  body.owner .greeting__title {
    width: 195px;
    margin-right: 25px;
  }
}

body.owner .greeting__bg_blk {
  margin-top: 15px;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk {
    margin-top: 25px;
    display: block;
  }
}

body.owner .greeting__bg_blk .bg {
  width: 64.4%;
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .bg {
    width: 290px;
    height: 245px;
    margin-right: 15px;
  }
}

body.owner .greeting__bg_blk .blk {
  width: 63.9%;
  padding-left: 22.3%;
  padding-right: 4.79%;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .blk {
    width: 82.1%;
    padding: 25px;
    margin-top: -55px;
  }
}

body.owner .greeting__bg_blk .blk .copy {
  position: relative;
}

body.owner .greeting__bg_blk .blk .copy .content {
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .blk .copy .content {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .greeting__bg_blk .blk .copy .content {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .greeting__bg_blk .blk .copy figure {
  position: absolute;
  bottom: -12%;
  left: -30px;
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  width: 410px;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1199px) {
  body.owner .greeting__bg_blk .blk .copy figure {
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin: 30px auto -100px;
  }
}

@media screen and (max-width: 767px) {
  body.owner .greeting__bg_blk .blk .copy figure {
    width: 100%;
    margin-top: 20px;
  }
}

body.owner .reservation {
  padding-top: 9.88vw;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.owner .reservation {
    padding-top: 80px;
  }
}

body.owner .reservation::after {
  content: "";
  width: 59vw;
  height: 27.8vw;
  background-color: rgba(201, 231, 229, 0.32);
  position: absolute;
  top: 13.8vw;
  left: 0;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .reservation::after {
    width: 85vw;
    height: 293px;
    top: 120px;
  }
}

body.owner .reservation__title {
  width: 24.4vw;
}

@media screen and (max-width: 575px) {
  body.owner .reservation__title {
    width: 243px;
  }
}

body.owner .reservation__bg_blk {
  margin-top: -5vw;
}

@media screen and (max-width: 1199px) {
  body.owner .reservation__bg_blk .blk {
    margin-top: 9.58vw;
  }
}

@media screen and (max-width: 575px) {
  body.owner .reservation__bg_blk .blk {
    margin-top: 35px;
  }
}

body.owner .attention {
  padding-top: 8.5vw;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.owner .attention {
    padding-top: 35px;
  }
}

body.owner .attention::after {
  content: "";
  width: 54.7vw;
  height: 27.4vw;
  background-color: rgba(252, 238, 33, 0.08);
  position: absolute;
  top: 12.5vw;
  right: 0;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .attention::after {
    width: 85vw;
    height: 272px;
    top: 74px;
  }
}

body.owner .attention__title {
  width: 21.1vw;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 575px) {
  body.owner .attention__title {
    width: 210px;
  }
}

body.owner .attention__bg_blk {
  margin-top: -5vw;
}

@media screen and (max-width: 1199px) {
  body.owner .attention__bg_blk .blk {
    margin-top: 8.24vw;
  }
}

@media screen and (max-width: 575px) {
  body.owner .attention__bg_blk .blk {
    margin-top: 35px;
  }
}

body.owner .price, body.owner .inspection {
  padding-top: 7.5vw;
}

@media screen and (max-width: 575px) {
  body.owner .price, body.owner .inspection {
    padding-top: 40px;
  }
}

body.owner .price {
  position: relative;
}

body.owner .price::after {
  content: "";
  width: 59vw;
  height: 27.5vw;
  background-color: rgba(201, 231, 229, 0.32);
  position: absolute;
  top: 11.5vw;
  left: 0;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .price::after {
    width: 85vw;
    height: 271px;
    top: 80px;
  }
}

body.owner .price__title {
  width: 10vw;
}

@media screen and (max-width: 575px) {
  body.owner .price__title {
    width: 100px;
  }
}

body.owner .price__bg_blk {
  margin-top: -5vw;
}

@media screen and (max-width: 1199px) {
  body.owner .price__bg_blk .blk {
    margin-top: 7.28vw;
  }
}

@media screen and (max-width: 575px) {
  body.owner .price__bg_blk .blk {
    margin-top: 35px;
  }
}

body.owner .inspection {
  padding-top: 7.25vw;
}

@media screen and (max-width: 575px) {
  body.owner .inspection {
    padding-top: 45px;
  }
}

body.owner .inspection__bg_blk {
  zoom: 1;
}

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

@media screen and (max-width: 1199px) {
  body.owner .inspection__bg_blk {
    display: block;
  }
}

body.owner .inspection__bg_blk .bg {
  width: 100%;
  position: relative;
}

body.owner .inspection__bg_blk .bg::before {
  content: "";
  width: 81.35vw;
  height: 24.75vw;
  background-color: rgba(252, 238, 33, 0.08);
  position: absolute;
  top: 3.5vw;
  right: -5.5%;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .inspection__bg_blk .bg::before {
    width: 88vw;
    height: 412px;
    top: 15px;
    right: -2.5%;
  }
}

body.owner .inspection__bg_blk .blk {
  width: 36.4%;
  margin: 0;
  margin-top: -9.5%;
}

@media screen and (max-width: 1199px) {
  body.owner .inspection__bg_blk .blk {
    width: 74%;
  }
}

@media screen and (max-width: 575px) {
  body.owner .inspection__bg_blk .blk {
    width: 278px;
    padding: 25px;
  }
}

body.owner .inspection__bg_blk .blk .title {
  text-align: center;
  position: relative;
}

body.owner .inspection__bg_blk .blk .title::after {
  content: "";
  width: 64px;
  height: 8px;
  background-image: url("../../images/owner/ico_mark_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
  -ms-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
}

@media screen and (max-width: 575px) {
  body.owner .inspection__bg_blk .blk .title::after {
    width: 32px;
    height: 4px;
    -webkit-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }
}

body.owner .inspection__bg_blk .blk .content {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  body.owner .inspection__bg_blk .blk .content {
    margin-top: 30px;
  }
}

body.owner .inspection__bg_blk .blk_01 {
  margin-left: 11.5%;
  float: left;
}

@media screen and (max-width: 1199px) {
  body.owner .inspection__bg_blk .blk_01 {
    float: none;
    margin: -100px auto 0;
  }
}

body.owner .inspection__bg_blk .blk_02 {
  margin-right: 11.5%;
  float: right;
}

@media screen and (max-width: 1199px) {
  body.owner .inspection__bg_blk .blk_02 {
    float: none;
    margin: 30px auto 0;
  }
}

body.owner .facility {
  padding: 5.5vw 0 80px 0;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.owner .facility {
    padding: 35px 0 175px 0;
  }
}

body.owner .facility::after {
  content: "";
  width: 92.5vw;
  height: 74.5vw;
  background-image: url("../../images/owner/bg_facility_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -10;
}

@media screen and (max-width: 575px) {
  body.owner .facility::after {
    width: 100vw;
    height: 280px;
    background-image: url("../../images/owner/bg_facility_02.png");
    background-position: center center;
  }
}

body.owner .facility__title {
  width: 14.6vw;
  margin: 0 auto;
}

@media screen and (max-width: 575px) {
  body.owner .facility__title {
    width: 145px;
  }
}

body.owner .facility .wrapper {
  width: 63.5%;
  margin: 50px auto 0;
}

@media screen and (max-width: 1199px) {
  body.owner .facility .wrapper {
    margin-top: 30px;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility .wrapper {
    width: 300px;
    margin: 10px auto 0;
  }
}

body.owner .facility__sub_title {
  line-height: 1;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 50px;
  font-size: 5rem;
  text-align: center;
  position: relative;
}

body.owner .facility__sub_title::after {
  content: "";
  width: 64px;
  height: 8px;
  background-image: url("../../images/owner/ico_mark_01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
  -ms-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
}

@media screen and (max-width: 575px) {
  body.owner .facility__sub_title::after {
    width: 32px;
    height: 4px;
    -webkit-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }
}

@media screen and (max-width: 1199px) {
  body.owner .facility__sub_title {
    font-size: 38px;
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility__sub_title {
    font-size: 25px;
    font-size: 2.5rem;
  }
  body.owner .facility__sub_title::after {
    -webkit-transform: translate(-50%, 15px);
    -ms-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
  }
}

body.owner .facility__content {
  line-height: 2.24;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  body.owner .facility__content {
    margin-top: 30px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility__content {
    font-size: 10px;
    font-size: 1rem;
    margin-top: 25px;
  }
}

body.owner .facility .inner {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner {
    margin-top: 17.5px;
  }
}

body.owner .facility .inner .card {
  width: 23.5%;
  background-color: #fff;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  padding-bottom: 70px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  body.owner .facility .inner .card {
    width: 47.8%;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card {
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    padding-bottom: 35px;
  }
}

body.owner .facility .inner .card__img img {
  width: 100%;
}

body.owner .facility .inner .card span {
  display: block;
}

body.owner .facility .inner .card span a {
  line-height: 2.21;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1199px) {
  body.owner .facility .inner .card span a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card span a {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .facility .inner .card span:nth-child(3) {
  margin-top: 20px;
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card span:nth-child(3) {
    margin-top: 10px;
  }
}

body.owner .facility .inner .card span:nth-child(n + 3) {
  line-height: 2.21;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 0 25px;
}

@media screen and (max-width: 1199px) {
  body.owner .facility .inner .card span:nth-child(n + 3) {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card span:nth-child(n + 3) {
    font-size: 10px;
    font-size: 1rem;
    padding: 0 12.5px;
  }
}

body.owner .facility .inner .card__area {
  line-height: 1;
  font-family: "Hannari", "IPAex明朝", serif;
  font-size: 32px;
  font-size: 3.2rem;
  text-align: center;
  padding-top: 25px;
}

@media screen and (max-width: 1199px) {
  body.owner .facility .inner .card__area {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card__area {
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 12.5px;
  }
}

body.owner .facility .inner .card__btn {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card__btn {
    height: 25px;
  }
}

body.owner .facility .inner .card__btn a {
  line-height: 50px;
  font-family: "Hannari", "IPAex明朝", serif;
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #009e96;
  border: 1px transparent solid;
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.owner .facility .inner .card__btn a .arrow {
  width: 17%;
  height: 1px;
  background: #fff;
  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.owner .facility .inner .card__btn a .arrow::after {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #fff;
  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.owner .facility .inner .card__btn a:hover {
  background-color: #fff;
  color: #009e96;
}

body.owner .facility .inner .card__btn a:hover .arrow {
  background: #009e96;
}

body.owner .facility .inner .card__btn a:hover .arrow::after {
  background: #009e96;
}

@media screen and (max-width: 1199px) {
  body.owner .facility .inner .card__btn a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card__btn a {
    line-height: 25px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.owner .facility .inner .card__btn a .arrow {
  width: 15%;
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card__btn a .arrow {
    width: 10%;
  }
}

body.owner .facility .inner .card__btn a:hover {
  border-color: #009e96;
}

@media screen and (max-width: 1199px) {
  body.owner .facility .inner .card_03, body.owner .facility .inner .card_04 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 575px) {
  body.owner .facility .inner .card_03, body.owner .facility .inner .card_04 {
    margin-top: 15px;
  }
}

body.owner .contact {
  width: 100%;
  background-image: url("../../images/owner/bg_cta_01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}

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

body.owner .contact .inner {
  width: 62.5%;
  margin: 0 auto;
  zoom: 1;
}

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

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

body.owner .contact .inner .btn_data, body.owner .contact .inner .btn_contact {
  width: 48.8%;
  height: 7vw;
  background: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 575px) {
  body.owner .contact .inner .btn_data, body.owner .contact .inner .btn_contact {
    width: 100%;
    height: 70px;
  }
}

body.owner .contact .inner .btn_data a, body.owner .contact .inner .btn_contact a {
  line-height: 7vw;
  font-family: "Hannari", "IPAex明朝", serif;
  border: 1px transparent solid;
  font-size: 24px;
  font-size: 2.4rem;
  text-decoration: none;
  color: #01275a;
  text-align: center;
  display: block;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

body.owner .contact .inner .btn_data a .arrow, body.owner .contact .inner .btn_contact a .arrow {
  width: 17%;
  height: 1px;
  background: #01275a;
  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.owner .contact .inner .btn_data a .arrow::after, body.owner .contact .inner .btn_contact a .arrow::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #01275a;
  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.owner .contact .inner .btn_data a:hover, body.owner .contact .inner .btn_contact a:hover {
  background-color: #01275a;
  color: #fff;
}

body.owner .contact .inner .btn_data a:hover .arrow, body.owner .contact .inner .btn_contact a:hover .arrow {
  background: #fff;
}

body.owner .contact .inner .btn_data a:hover .arrow::after, body.owner .contact .inner .btn_contact a:hover .arrow::after {
  background: #fff;
}

@media screen and (max-width: 1199px) {
  body.owner .contact .inner .btn_data a, body.owner .contact .inner .btn_contact a {
    font-size: 18px;
    font-size: 1.8rem;
  }
  body.owner .contact .inner .btn_data a .arrow:after, body.owner .contact .inner .btn_contact a .arrow:after {
    width: 17.25px;
  }
}

@media screen and (max-width: 991px) {
  body.owner .contact .inner .btn_data a, body.owner .contact .inner .btn_contact a {
    font-size: 13px;
    font-size: 1.3rem;
  }
  body.owner .contact .inner .btn_data a .arrow:after, body.owner .contact .inner .btn_contact a .arrow:after {
    width: 11.5px;
  }
}

@media screen and (max-width: 575px) {
  body.owner .contact .inner .btn_data a, body.owner .contact .inner .btn_contact a {
    line-height: 70px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

body.owner .contact .inner .btn_data a:hover, body.owner .contact .inner .btn_contact a:hover {
  background-color: #01275a;
  border-color: #fff;
}

body.owner .contact .inner .btn_data {
  float: left;
}

body.owner .contact .inner .btn_contact {
  float: none;
  margin: 0 auto;
}

@media screen and (max-width: 575px) {
  body.owner .contact .inner .btn_contact {
    margin-top: 30px;
  }
}

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