@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.align_start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.align_end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex_center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex_end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 50px 0;
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 90px;
    right: 23px;
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto 3px;
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

.cta_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  display: none;
}
@media (max-width: 599px) {
  .cta_btn {
    display: block;
  }
}
.cta_btn .cta_btn_item {
  background-color: #fff;
  width: 48%;
  text-align: center;
  font-size: 24px;
  padding: 10px 0;
  border-radius: 20px;
}
.cta_btn .cta_btn_item.line_bg {
  background-color: #06c755;
  font-size: 24px;
  padding-top: 7px;
}
.cta_btn .cta_btn_item.line_bg img {
  width: 24px;
}
.cta_btn .cta_btn_item img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.commmon_mv {
  position: relative;
}
.commmon_mv h2 {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 36px;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
}
.commmon_mv.page_point h2 {
  background-color: #fff;
}
@media (max-width: 768px) {
  .commmon_mv.page_point h2 {
    width: 75%;
  }
}
@media (max-width: 599px) {
  .commmon_mv.page_point h2 {
    width: 90%;
  }
}

.mb_0 {
  margin-bottom: 0 !important;
}

/* 下層ページ共通 */
/* header */
/* footer */
footer .copyright {
  background-color: #231815;
  text-align: center;
  padding: 10px 0;
}
footer .copyright p {
  font-size: 15px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (max-width: 599px) {
  footer .copyright p {
    font-size: 12px;
  }
}

/* top */
.yasuragi {
  background: url(../images/yasuragi_bg.png) center/cover no-repeat;
  position: relative;
}
.yasuragi .yasuragi_cont {
  position: relative;
  padding-bottom: 80px;
}
.yasuragi .yasuragi_img {
  position: relative;
  z-index: 1;
  padding-top: 50px;
}
.yasuragi .yasuragi_item_img {
  position: absolute;
}
.yasuragi .yasuragi_item_img01 {
  top: 0;
  right: 0;
  width: 50%;
}
.yasuragi .yasuragi_item_img02 {
  bottom: 0;
  width: 100%;
  z-index: 0;
}

.price {
  padding: 40px 0 80px;
  background: url(../images/price_bg.png) center/cover no-repeat;
}
@media (max-width: 599px) {
  .price {
    padding-bottom: 60px;
  }
}
.price .price_ttl {
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .price .price_ttl {
    margin-bottom: 20px;
  }
}
.price .price_img {
  width: 80%;
  margin: 0 auto 40px;
}
@media (max-width: 599px) {
  .price .price_img {
    margin-bottom: 20px;
    width: 100%;
  }
}
.price .price_text {
  text-align: center;
}
.price .price_text h3 {
  font-size: 50px;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .price .price_text h3 {
    font-size: 21px;
  }
}
.price .price_text p {
  font-size: 44px;
  line-height: 1.7;
}
@media (max-width: 599px) {
  .price .price_text p {
    font-size: 18px;
  }
}

.kengaku {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 599px) {
  .kengaku {
    padding: 60px 0;
  }
}
.kengaku .kengaku_item_img {
  position: absolute;
}
.kengaku .kengaku_item_img01 {
  top: 0;
  width: 100%;
}
.kengaku .kengaku_item_img02 {
  bottom: 0;
  width: 100%;
  z-index: 0;
}
.kengaku .kengaku_box {
  background-color: rgba(255, 255, 255, 0.7);
  border: 6px solid #fff;
  padding: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 599px) {
  .kengaku .kengaku_box {
    padding: 20px;
  }
}
.kengaku .kengaku_box .kengaku_item {
  width: 200px;
  position: absolute;
  right: 0;
  top: -50px;
}
@media (max-width: 599px) {
  .kengaku .kengaku_box .kengaku_item {
    width: 100px;
  }
}
.kengaku .kengaku_box .kengaku_ttl h3 {
  font-size: 72px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .kengaku .kengaku_box .kengaku_ttl h3 {
    margin-bottom: 20px;
    font-size: 36px;
  }
}
.kengaku .kengaku_box .kengaku_list {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .kengaku .kengaku_box .kengaku_list {
    margin-bottom: 20px;
  }
}
.kengaku .kengaku_box .kengaku_list li {
  font-size: 44px;
  padding-left: 50px;
  position: relative;
}
.kengaku .kengaku_box .kengaku_list li::before {
  content: url(../images/icon_kengaku.png);
  position: absolute;
  left: -10px;
  top: 0px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
@media (max-width: 599px) {
  .kengaku .kengaku_box .kengaku_list li::before {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    left: -21px;
    top: -15px;
  }
}
@media (max-width: 599px) {
  .kengaku .kengaku_box .kengaku_list li {
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 20px;
  }
}
.kengaku .kengaku_box .kengaku_map {
  width: 80%;
  margin: 0 auto 30px;
}
@media (max-width: 599px) {
  .kengaku .kengaku_box .kengaku_map {
    width: 90%;
    margin-bottom: 20px;
  }
}

.noukotu .noukotu_pet {
  padding: 50px 0;
  background: url(../images/noukotu_pet_bg.png) bottom/cover no-repeat;
}
@media (max-width: 599px) {
  .noukotu .noukotu_pet {
    padding: 20px 0;
  }
}
.noukotu .noukotu_pet .noukotu_pet_img {
  width: 1000px;
  margin: 0 auto 30px;
}
@media (max-width: 1200px) {
  .noukotu .noukotu_pet .noukotu_pet_img {
    width: 90%;
  }
}
.noukotu .noukotu_pet .noukotu_pet_item {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .noukotu .noukotu_pet .noukotu_pet_item {
    margin-bottom: 30px;
  }
}
.noukotu .noukotu_pet .noukotu_pet_item .noukotu_pet_ttl {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .noukotu .noukotu_pet .noukotu_pet_item .noukotu_pet_ttl {
    margin-bottom: 20px;
  }
}
.noukotu .noukotu_pet .noukotu_pet_item p {
  font-size: 40px;
  line-height: 1.7;
}
@media (max-width: 599px) {
  .noukotu .noukotu_pet .noukotu_pet_item p {
    font-size: 17px;
  }
}
.noukotu .noukotu_about {
  padding: 20px 0 150px;
  background: url(../images/noukotu_about_bg.png) top/cover no-repeat;
}
@media (max-width: 599px) {
  .noukotu .noukotu_about {
    padding-bottom: 100px;
  }
}
.noukotu .noukotu_about .noukotu_about_ttl {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .noukotu .noukotu_about .noukotu_about_ttl {
    margin-bottom: 30px;
  }
}
.noukotu .noukotu_about .noukotu_about_ttl img {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .noukotu .noukotu_about .noukotu_about_ttl img {
    margin-bottom: 30px;
  }
}
.noukotu .noukotu_about .noukotu_about_ttl p {
  font-size: 40px;
  line-height: 1.7;
}
@media (max-width: 599px) {
  .noukotu .noukotu_about .noukotu_about_ttl p {
    font-size: 17px;
  }
}
.noukotu .noukotu_about .noukotu_about_point {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .noukotu .noukotu_about .noukotu_about_point {
    margin-bottom: 30px;
  }
}

.syouraku {
  background: url(../images/syouraku_bg.png) center/cover no-repeat;
  padding-bottom: 30px;
}
.syouraku .syouraku_ttl {
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 599px) {
  .syouraku .syouraku_ttl {
    margin-bottom: 30px;
  }
}
.syouraku .syouraku_ttl .syouraku_item {
  width: 200px;
  position: absolute;
  left: 20px;
  top: -150px;
}
@media (max-width: 599px) {
  .syouraku .syouraku_ttl .syouraku_item {
    width: 50px;
    top: -50px;
  }
}
.syouraku .syouraku_text {
  position: relative;
  z-index: 1;
}
.syouraku .syouraku_text p {
  font-size: 40px;
}
@media (max-width: 599px) {
  .syouraku .syouraku_text p {
    font-size: 17px;
    line-height: 1.7;
  }
}
.syouraku .syouraku_img {
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
  position: relative;
  z-index: 0;
}

.access h3 {
  font-size: 44px;
  text-align: center;
  border-radius: 10px;
  color: #c01734;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .access h3 {
    font-size: 24px;
  }
}
.access .access_points {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .access .access_points {
    width: 100%;
  }
}
.access .access_point {
  background-color: #c01734;
  padding: 10px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
}
.access .access_point p {
  color: #fff;
  font-size: 40px;
}
@media (max-width: 599px) {
  .access .access_point p {
    font-size: 17px;
  }
}
.access .access_caption {
  text-align: center;
  padding: 10px 0 30px;
}
.access .access_caption p {
  font-size: 36px;
}
@media (max-width: 599px) {
  .access .access_caption p {
    font-size: 18px;
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(3%);
          transform: translateY(3%);
}
.fadein.active {
  -webkit-animation: 0.8s forwards fadein;
          animation: 0.8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  -webkit-transform: translateY(3%);
          transform: translateY(3%);
}
.fadein2.active {
  -webkit-animation: 0.8s forwards 0.1s fadein;
          animation: 0.8s forwards 0.1s fadein;
}

.leftin {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  -webkit-animation: 0.5s forwards leftin;
          animation: 0.5s forwards leftin;
}

.rightin {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  -webkit-animation: 0.5s forwards rightin;
          animation: 0.5s forwards rightin;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes leftin {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes leftin {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes rightin {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */