@charset "UTF-8";
/* ---------------------------------

 Page CSS - 各ページ用CSS

 --------------------------------- */
/* ---------------------------------
 page common #ページ共通パーツ
--------------------------------- */
/* page_head_cover ---- */
.page_head_cover {
  width: 100%;
  height: 600px;
  position: relative;
}
.page_head_cover img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.page_head_cover .page_title {
  width: 90%;
  position: absolute;
  bottom: 10%;
  left: 5%;
}
.page_head_cover .page_title .page_title_en {
  font-size: 6rem;
  line-height: 6rem;
}
.page_head_cover .page_title h1.page_title_h1 {
  width: 100%;
  font-size: 1.5rem;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.page_head_cover .page_title h1.page_title_h1::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  margin-right: 15px;
}
@media screen and (max-width: 896px) {
  .page_head_cover {
    height: 300px;
  }
  .page_head_cover img {
    height: 300px;
  }
  .page_head_cover .page_title .page_title_en {
    font-size: 2.7rem;
    line-height: 3rem;
  }
  .page_head_cover .page_title h1.page_title_h1 {
    font-size: 1rem;
  }
  .page_head_cover .page_title h1.page_title_h1::before {
    width: 20px;
  }
}
/* page_contents ---- */
.page_contents {
  width: 100%;
  padding: 100px 0;
}
.page_contents .page_contents_inner {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
.page_contents_h2 {
  width: 100%;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 896px) {
  .page_contents {
    padding: 50px 0;
  }
  .page_contents_h2 {
    font-size: 1.3rem;
  }
}
/* page_concept ------------------- */
.page_concept {
  width: 94%;
  margin: 100px auto;
}
.page_concept h2 {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 896px) {
  .page_concept {
    width: 94%;
    margin: 50px auto;
  }
  .page_concept h2 {
    font-size: 1.2rem;
  }
}

/* ---------------------------------
 room #お部屋
--------------------------------- */
/* room共通 ------------------------- */
.col_room {
  color: #4d9961;
}
.bg_col_room {
  background-color: #006633;
}

/* room_list ------------------------- */
.room_list {
  width: 100%;
  margin: 100px 0 150px 0;
}
@media screen and (max-width: 896px) {
  .room_list {
    margin: 50px 0;
  }
}
.room_list_note {
  width: 80%;
  margin: 30px auto;
}
@media screen and (max-width: 896px) {
  .room_list_note {
    width: 94%;
    margin: 15px auto;
  }
}
/* room_list_box ---------------- */
.room_list_box {
  width: 100%;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
.room_list_box .room_list_box_item {
  display: block;
  width: 100%;
  margin: 0 1% 0 0;
  height: 150px;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;

  &.bg_room {
    background-color: #072717;
  }

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
    transition: 0.3s;
  }

  &.bg_dome::before {
    background-image: url("../img/room/bg_dome.jpg");
  }
  &.bg_cocoon::before {
    background-image: url("../img/room/bg_cocoon.jpg");
  }
  &.bg_detail::before {
    background-image: url("../img/room/bg_detail.jpg");
  }
}
.room_list_box .room_list_box_item::after {
  position: absolute;
  bottom: 10px;
  left: 48%;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
}
.room_list_box .room_list_box_item .room_list_title {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: bold;
  color: #fff;
}
.room_list_box .room_list_box_item:hover {
  opacity: 0.8;
}
.room_list_box .room_list_box_item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 896px) {
  .room_list_box {
    margin: 0 auto;
    gap: 15px;
  }
  .room_list_box .room_list_box_item {
    width: 100%;
    height: 100px;
    margin: 0 0 10px 0;
  }
  .room_list_box .room_list_box_item .room_list_title {
    font-size: 0.9rem;
  }
  .room_list_box .room_list_box_item::after {
    bottom: 10px;
    left: 48%;
    width: 10px;
    height: 10px;
  }
}

/* room_main ---------------------------------- */
.room_main {
  width: 100%;
  margin-top: -50px;
  border-radius: 30px 30px 0 0;
}
.room_main_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}
h3.room_main_h3 {
  width: 100%;
  font-size: 1.5rem;
}
h3.room_main_h3 .room_main_en {
  font-size: 4rem;
}
@media screen and (max-width: 896px) {
  .room_main {
    width: 100%;
    padding: 50px 0 0;
    margin-top: -25px;
    border-radius: 15px 15px 0 0;
  }
  .room_main_inner {
    padding: 0 20px;
  }
  h3.room_main_h3 {
    font-size: 1.1rem;
  }
  h3.room_main_h3 .room_main_en {
    font-size: 2rem;
  }
}
.room_main_box {
  margin: 50px 0 150px;
  width: 100%;
}
.room_main_box.room_underline_base {
  border-bottom: 3px solid #e6f4ff;
  padding-bottom: 150px;
}
.room_main_box .room_main_box_img {
  width: 55%;
}
.room_main_box .room_main_box_note {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
}
.room_main_box .room_main_box_note .room_main_box_note_item {
  width: 40%;
}

h4.room_main_h4 {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
h4.room_main_h4::before {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  margin-right: 15px;
}
h4.room_main_h4::before {
  background-color: #4d9961;
}

table.room_main_box_table {
  width: 100%;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0 7px;
}
table.room_main_box_table th {
  padding: 10px 20px;
  width: 25%;
  text-align: left;
}
table.room_main_box_table td {
  padding: 10px 20px;
  width: 75%;
}
#room_details {
  padding-bottom: 100px;
}
@media screen and (max-width: 896px) {
  .room_main_box {
    margin: 0 0 50px;
  }
  .room_main_box .room_main_box_img {
    margin-bottom: 25px;
    width: 100%;
  }
  .room_main_box .room_main_box_note .room_main_box_note_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  table.room_main_box_table th {
    width: 30%;
  }
  table.room_main_box_table td {
    width: 70%;
  }
  .room_main_box.room_underline_base {
    padding-bottom: 40px;
  }
  #room_details {
    padding-bottom: 50px;
  }
}
/* room_info ---------------- */
#room_info {
  width: 100%;
  padding: 100px 0;
}
#room_info .room_info_inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
#room_info h3 {
  text-align: center;
}

/* room_map */
.room_map {
  width: 80%;
  padding-bottom: 100px;
  margin: 0 auto;
}
.room_map img {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .room_map {
    width: 95%;
  }
}
/* ---------------------------------
 meal #お食事
--------------------------------- */
.meal_link_area {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
.meal_link {
  width: 100%;
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}
.meal_link a.meal_link_btn {
  display: block;
  text-align: center;
  color: #fff;
  padding: 15px;
  position: relative;
  background-color: #4d9961;
  border-radius: 15px;
  width: 19%;
}
.meal_link a.meal_link_btn::before {
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 15px;
  top: 0;
  color: #fff;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
@media screen and (max-width: 896px) {
  .meal_link_area {
    width: 100%;
  }
  .meal_link {
    margin: 25px 0;
    gap: 10px;
  }
  .meal_link a.meal_link_btn {
    margin-bottom: 10px;
    width: 28%;
    font-size: 0.9rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* meal_box ------- */
.meal_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.meal_box .meal_box_photo {
  width: 60%;
}
.meal_box .meal_box_photo img {
  vertical-align: bottom;
}
.meal_box .meal_box_note {
  width: 38%;
  margin-left: 2%;
  padding: 40px;
  background-color: #fff;
  border: 1px solid #f1f1e6;
}
.meal_box h3.meal_title {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.meal_box h3.meal_title span {
  display: inline-block;
  color: #fff;
  padding: 5px 25px;
  border-radius: 9999px;
}
.meal_box p.meal_title_en {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.7rem;
}
.meal_box h4.meal_sub_title {
  width: 100%;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2rem;
  padding-bottom: 10px;
  border-bottom: 5px solid #f3efe2;
}
.meal_box .meal_menu_mt {
  margin-top: 20px;
}
@media screen and (max-width: 896px) {
  .meal_box .meal_box_photo {
    width: 100%;
  }
  .meal_box .meal_box_note {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    border-radius: 0 0 15px 15px;
  }
  .meal_box h3.meal_title {
    margin-bottom: 25px;
  }
}

/* ---------------------------------
 qa #よくある質問
--------------------------------- */
.qa_link {
  width: 100%;
  margin-bottom: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.qa_link a.btn_qa {
  display: block;
  width: 35%;
  margin: 0 1% 20px 1%;
  padding: 10px;
  background-color: #4d9961;
  color: #fff;
  text-align: center;
  position: relative;
  border-radius: 10px;
}
.qa_link a.btn_qa::before {
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 15px;
  top: 0;
  color: #fff;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
@media screen and (max-width: 896px) {
  .qa_link {
    margin-bottom: 70px;
  }
  .qa_link a.btn_qa {
    width: 48%;
    margin-bottom: 15px;
    font-size: 13px;
    text-align: left;
  }
}
.qa_box {
  width: 100%;
  margin-bottom: 100px;
}
.qa_box_item {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 30px;
}
.qa_box_item dt {
  padding-bottom: 20px;
  border-bottom: 1px solid #003350;
  margin-bottom: 20px;
  position: relative;
}
.qa_box_item dd {
  margin: 0;
  position: relative;
}
.qa_box_item dt span {
  font-weight: bold;
}
.qa_box_item dt span,
.qa_box_item dd span {
  display: inline-block;
  margin-left: 34px;
  margin-top: 5px;
  line-height: 1.6;
}
.qa_box_item dt::before {
  content: "Q";
  display: inline-block;
  padding-right: 10px;
  color: #003350;
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.qa_box_item dd::before {
  content: "A";
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.btn_link_color {
  width: 100%;
}
.btn_link_color a {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #d4af37;
  padding: 10px;
}
@media screen and (max-width: 896px) {
  .qa_box {
    margin-bottom: 50px;
  }
}

/* ---------------------------------
 news #ニュース
--------------------------------- */
/* news single ------------------------------- */
.news_contents {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
}
.news_date {
  width: 100%;
  margin-bottom: 20px;
}
h2.news_title {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.news_date .news_date_time {
  margin-right: 10px;
}
.article_news {
  width: 100%;
  padding: 30px;
  border: 1px solid #dadadf;
}
a.btn_tp {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 15px 10px;
  margin: 10px auto;
  border: 1px solid #696fb1;
  color: #10164c;
  text-align: center;
}
a.btn_tp:hover {
  background-color: #696fb1;
  color: #fff;
}

@media screen and (max-width: 896px) {
  h2.news_title {
    font-size: 1.2rem;
  }
  .article_news {
    padding: 20px;
  }
}
/* news_list -------------- */
h3.news_list_h3 {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.3rem;
}
ul.news_list {
  width: 100%;
  list-style: none;
  padding: 0;
}
ul.news_list li {
  width: 23%;
  padding: 20px;
  background-color: #fff;
  margin: 15px 1%;
}
ul.news_list .cate {
  padding: 1px 10px;
  display: inline-block;
  background-color: #10164c;
  margin: 0 10px;
  color: #fff;
  font-size: 14px;
}
ul.news_list li .news_list_img {
  width: 100%;
  height: 200px;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 10px;
}
ul.news_list li .news_list_img img {
  width: 100%;
  height: 200px;
  transition: transform 0.6s ease;
  object-fit: cover;
}
ul.news_list li .news_list_img a:hover img {
  transform: scale(1.1);
}

/* news archive ------------------------------- */
.news_archive_area {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 30px auto;
}
.news_archive_area .news_archive_box {
  width: 100%;
  margin: 20px 0;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.news_archive_area .news_archive_box .news_archive_box_img {
  width: 25%;
  height: 200px;
  margin-right: 5%;
}
.news_archive_area .news_archive_box .news_archive_box_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news_archive_area .news_archive_box .news_archive_box_note {
  width: 70%;
}
.news_archive_area .news_archive_box .news_cat {
  padding: 1px 10px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
}
h3.news_archive_title {
  width: 100%;
  margin-top: 5px;
  font-size: 1.2rem;
}
.news_archive_area .news_archive_box .news_archive_more {
  width: 100%;
  margin-top: 20px;
}
.news_archive_area .news_archive_box .news_archive_more a {
  display: inline-block;
  padding: 3px 15px;
  border-radius: 99999px;
  background-color: #fff566;
  color: #333114;
}
@media screen and (max-width: 896px) {
  h3.news_archive_title {
    font-size: 1rem;
  }
  .news_archive_area .news_archive_box {
    padding: 20px;
  }
  .news_archive_area .news_archive_box .news_archive_box_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .news_archive_area .news_archive_box .news_archive_box_note {
    width: 100%;
  }
  .news_archive_area .news_archive_box .news_archive_more {
    text-align: right;
  }
}
/* 矢印カスタマイズ */
.news_single_list_slider .slick-dots li.slick-active button:before {
  color: #d4af37;
}
.news_single_list_slider .slick-arrow {
  display: block;
  position: absolute;
  top: 28px;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 20px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
}
.news_single_list_slider .slick-arrow:hover {
  opacity: 0.7;
}
.news_single_list_slider .slick-next::before,
.news_single_list_slider .slick-next::after,
.news_single_list_slider .slick-prev::before,
.news_single_list_slider .slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.news_single_list_slider .slick-next::after,
.news_single_list_slider .slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 1px solid #d4af37;
  border-right: 1px solid #d4af37;
}
.news_single_list_slider .next_black .slick-next::after,
.news_single_list_slider .next_black .slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.news_single_list_slider .slick-next {
  right: 26px;
}
.news_single_list_slider .slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}
.news_single_list_slider .slick-prev {
  left: 26px;
}
.news_single_list_slider .slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .news_single_list_slider .slick-next::after,
  .news_single_list_slider .slick-prev::after {
    width: 20px;
    height: 20px;
  }
  .news_single_list_slider .slick-next {
    right: 8px;
  }
  .news_single_list_slider .slick-prev {
    left: 8px;
  }
  .news_single_list_slider .slick-next::after {
    right: 2px;
  }
}

/* ---------------------------------
 archive #周辺観光やアクティビティ用
--------------------------------- */
.archive_list {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.archive_list .archive_list_box {
  width: 31%;
  margin: 0 1% 40px 1%;
}
.archive_list .archive_list_img {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.archive_list .archive_list_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0 30px 0 30px;
  transition: 0.3s;
}
.archive_list h3.archive_list_h3 {
  margin: 10px 0;
  text-align: center;
  font-size: 1.2rem;
}
.archive_list .archive_list_img .icon_dogok {
  position: absolute;
  width: 110px;
  padding: 3px 10px;
  top: 0;
  left: 0;
  background-color: #004225;
  color: #fff;
  border-radius: 0 0 5px 0;
  text-align: center;
}

@media screen and (max-width: 896px) {
  .archive_list .archive_list_box {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
  }
}
/* single_area ---------------- */
.single_area {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
.single_main {
  margin: 0 auto;
}
.single_main h1 {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.single_main h2.single_title {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.single_main .single_img {
  width: 100%;
}
.single_main .single_dogok {
  width: 100%;
  margin: 30px 0;
}
.single_main .single_dogok .single_dogok_icon {
  width: 200px;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
}
.single_main .single_txt {
  width: 100%;
  margin: 30px 0;
}
.single_main dl.single_dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #d9d9d9;
}
.single_main dl.single_dl dt {
  width: 20%;
  padding: 10px;
  color: #004225;
  font-weight: bold;
}
.single_main dl.single_dl dd {
  width: 80%;
  padding: 10px;
  margin: 0;
}
.single_main .single_googlemap {
  width: 100%;
  margin-top: 30px;
}
.single_main .single_googlemap iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 896px) {
  .single_main h1 {
    margin-top: 50px;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  .single_main h2.single_title {
    margin-top: 50px;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  .single_main dl.single_dl dt {
    width: 30%;
  }
  .single_main dl.single_dl dd {
    width: 70%;
  }
  .single_main .single_googlemap iframe {
    height: 300px;
  }
  .single_main h2.single_title {
    font-size: 1.3rem;
  }
}

/* ---------------------------------
 pet #愛犬とご宿泊
--------------------------------- */
/* スライダー */
.pet_flowing_photo {
  width: 100%;
  margin: 100px auto;
  overflow: hidden;
}
.top_flowing_slider .slick-list {
  margin: 0 -15px;
}
.pet_flowing_slider .slick-slide {
  margin: 0 15px;
}
.pet_flowing_slider img {
  border-radius: 20px;
}
@media screen and (max-width: 896px) {
  .pet_flowing_photo {
    margin: 50px auto;
  }
  .pet_flowing_slider .slick-list {
    margin: 0 -10px;
  }
  .pet_flowing_slider .slick-slide {
    margin: 0 10px;
  }
  .pet_flowing_slider img {
    border-radius: 10px;
  }
}
.pet_main_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 100px 100px;
}
.pet_main {
  width: 100%;
  border-radius: 25px;
  padding: 50px 50px 100px;
  margin-bottom: 100px;
}
h3.pet_main_h3 {
  width: 100%;
  font-size: 1.5rem;
}
h3.pet_main_h3 .pet_main_en {
  font-size: 4rem;
}
.pet_main_box {
  margin-top: 50px;
  width: 100%;
}

.pet_main_box .pet_main_box_img {
  width: 55%;
}
.pet_main_box .pet_main_box_note {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
}
.pet_main_box .pet_main_box_note.reverse {
  flex-direction: row-reverse;
}
.pet_main_box .pet_main_box_note .pet_main_box_note_item {
  width: 40%;
}

.pet_main_box_note_item ul li {
  list-style: none;
}

.pet_main_box_img.stay_img img {
  border-radius: 25px;
}
.pet_main_box_note_item.stay_txt {
  border-radius: 25px;
  padding: 25px;
}
.point {
  color: #472f00;
  font-size: 1.5rem;
  display: inline;
  position: relative;
}

.point::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 4.3em;
  width: 70%;
  height: 70%;
  background-image: url("../img/common/dog.svg");
  background-repeat: no-repeat;
}

.pet_main_box_note_item h4 {
  font-size: 1.5rem;
}

@media screen and (max-width: 896px) {
  .pet_main {
    width: 100%;
    padding: 50px 20px 0;
    border-radius: 0;
    margin: 0 auto;
  }
  .pet_main_inner {
    padding: 0;
  }
  h3.pet_main_h3 {
    font-size: 1.1rem;
  }
  h3.pet_main_h3 .pet_main_en {
    font-size: 2rem;
  }
  .pet_main_box {
    margin: 0 0 50px;
  }
  .pet_main_box .pet_main_box_img {
    margin-bottom: 25px;
    width: 100%;
  }
  .pet_main_box .pet_main_box_note .pet_main_box_note_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .pet_main_box .pet_main_box_note .pet_main_box_note_layout {
    width: 100%;
  }
  table.pet_main_box_table th {
    width: 30%;
  }
  table.pet_main_box_table td {
    width: 70%;
  }
  .pet_more_link {
    justify-content: center;
  }
  #pet_details {
    padding-bottom: 50px;
  }
  .point {
    font-size: 1.1rem;
  }
  .pet_main_box_note_item h4 {
    font-size: 1.1rem;
  }
  .pet_stay {
    padding: 0 20px;
  }
}
/* ---------------------------------
 formedia #メディア取材について
--------------------------------- */
.media_wrapper {
  padding: 100px 0px;
}

.media_box {
  width: 70%;
  margin: 0 auto;
  padding: 50px 30px;
}

.media_box p {
  text-align: center;
}

.media_mail_box {
  margin-top: 30px;
  border-top: 2px solid #4d9961;
  padding-top: 50px;
}

@media screen and (max-width: 896px) {
  .media_wrapper {
    padding: 50px 0px;
  }

  .media_box {
    width: 90%;
    padding: 20px 20px 30px;
  }

  .media_box p {
    text-align: left;
  }

  .media_mail_box {
    padding-top: 25px;
  }

  .media_mail_box h2 {
    text-align: left;
  }
}
