@charset "UTF-8";
/*
Theme Name: hokedake
Description: This is hokedake site original theme.
Author: Nishigaki
*/
html {
  font-size: 62.5%;
}
body {
  /* font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", "MS 明朝", serif; */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
}
html, body {
  width: 100%;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.8rem;
  color: #222;
  text-align: center;
}
@media screen and (max-width: 896px) {
  h2 {
    font-size: 2.2rem;
  }
}
h3 {
  font-size: 2rem;
  color: #222;
}
p {
  line-height: 1.7;
  font-size: 1.6rem;
  color: #333;
}
.p_bold {
  font-weight: bold;
}
.p_center {
  text-align: center;
}
.p_white {
  color: #fff;
}
ul li {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.3;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover > img {
  opacity: 0.8;
}
img {
  display: block;
}
@media screen and (max-width: 896px) {
  img {
    display: block;
    max-width: 100%;
  }
}
i.fa {
  display: inline;
}
.r_btn p {
  text-align: center;
  margin-top: 40px;
}
.r_btn p a {
  padding: 10px 20px;
  background: #22347d;
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
}
.r_btn p a:hover {
  background: #fff;
  color: #22347d;
}
header {
  display: block;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
}
.header {
  /* position: fixed;
  top: 0;
  width: 100%; */
  background: #fff;
  transition: all 0.5s ease;
}
/* .hidden {
  background: none;
  transition: all 0.5s ease;
} */
@media screen and (max-width: 896px) {
  header {
    display: flex;
    position: fixed;
    height: 60px;
  }
}
/* header h1 {
  height: 82px;
} */
@media screen and (max-width: 896px) {
  header h1 {
    text-align: center;
    height: 60px;
  }
}
header h1 img {
  padding: 8px 0 5px 50px;
  width: 275px;
  height: auto;
  display: inline;
}
header h1 .logo_image {
  position: relative;
}
/* header h1 .logo_image a {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
} */
@media screen and (max-width: 896px) {
  header h1 img {
    padding: 14px 0 0 0;
    margin: -10px auto;
    width: 100px;
  }
  header h1 .logo_image {
    position: static;
  }
  header h1 .logo_image a {
    position: static;
  }
}
/*言語切り替え*/
.language {
  z-index: 9999;
  position: absolute;
  right: 20px;
  top: 22px;
  width: 140px;
  height: 20px;
}
.language > li {
  /*親階層のみ幅を25%にする*/
  width: 100%;
}
/*全てのリスト・リンク共通*/
.language li {
  list-style: none;
  position: relative;
}
.language li p.lan-en, .language li a {
  background: #eee;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 5px 0;
  border-radius: 18px;
}
/*子階層以降共通*/
.language li li {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.language li:hover > ul > li {
  height: 35px;
  overflow: visible;
}
.language li:hover > ul > li:first-child {
  border-bottom: 1px solid #fff;
}
.language li:hover > ul > li > a {
  padding: 10px 0;
  border-radius: 0px;
}
@media screen and (max-width: 896px) {
  .language {
    left: 12px;
    top: 10px;
    width: 110px;
  }
}
/* メニューボタン */
/* nav {
	position: absolute;
	right: 0;
	top: 0;
} */
/*.menu_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 100px;
	padding: 0 2em;
	background: #22347D;
	margin-left: auto;
	cursor: pointer;
}

@media screen and (max-width:896px) {
.menu_btn {
	height: 60px;
}
}*/
.navbar_toggle {
  z-index: 20;
}
.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 52px;
  background: #fff;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
@media screen and (max-width: 896px) {
  .navbar_toggle_icon {
    width: 30px;
  }
}
.navbar_toggle_icon:nth-child(1) {
  top: 0;
}
.navbar_toggle_icon:nth-child(2) {
  margin: 14px 0;
}
.navbar_toggle_icon:nth-child(3) {
  top: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu_list {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 250;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
}
.menu_list li {
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
}
.menu_list li a {
  display: block;
  padding: 30px;
}
@media screen and (max-width: 896px) {
  .menu_list li a {
    padding: 24px;
  }
}
.menu_list.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  top: 100px;
}
@media screen and (max-width: 896px) {
  .menu_list.open {
    top: 60px;
  }
}
/* 共通項目 */
.container {
  padding: 0 50px;
}
.br_sp {
  display: none;
}
.br_pc {
  display: block;
}
@media screen and (max-width: 896px) {
  .container {
    padding: 0 3%;
  }
  .br_sp {
    display: block;
  }
  .br_pc {
    display: none;
  }
}
a.scroll_point {
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  display: block;
  /*color: #22347D;*/
}
@media screen and (max-width: 896px) {
  a.scroll_point {
    display: block;
    margin-top: 0;
    padding-top: 0;
  }
}
h2.btm_stripe {
  position: relative;
}
h2.btm_stripe:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 360px;
  height: 8px;
  background: url(img/stripe.png) no-repeat;
}
.gothic {
  /*font-family: "游ゴシック", YuGothic, "ヒラギノゴシック Pro W3", "Hiragino Gothic Pro", "HGゴシックE", "MS Pゴシック", "MS ゴシック", sans-serif;*/
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
h2.top {
  font-size: 2.6rem;
}
@media screen and (max-width: 896px) {
  h2.top {
    font-size: 2.2rem;
  }
}
span.en {
  letter-spacing: 0.1em;
  font-weight: normal;
  font-size: 1.6rem;
  color: #acb2c2;
}
.btn_more_center {
  text-align: center;
}
.btn_more p {
  text-align: center;
  display: inline-block;
  margin: 25px auto 0;
  line-height: 1.5 !important;
}
.btn_more p a {
  color: #22347d;
  background: #fff;
  border: #22347d solid 1px;
  padding: 12px 40px;
  display: block;
  transition: all 0.2s;
}
.btn_more p a:hover {
  color: #fff;
  background: #22347d;
}
.btn_more_c p {
  text-align: center;
  display: inline-block;
  margin: 25px auto 0;
  line-height: 1.5 !important;
}
.btn_more_c p a {
  background: #fff;
  padding: 12px 40px;
  display: block;
  transition: all 0.2s;
  border-radius: 25px;
}
.btn_more_c p a:hover {
  color: #fff;
  background: #22347d;
}
.pad_80 {
  padding: 80px 0;
}
.pb_80 {
  padding-bottom: 80px;
}
.pl_25 {
  padding-left: 25px;
}
.mt_20 {
  margin-top: 20px;
}
.mt_30 {
  margin-top: 30px;
}
.mt_40 {
  margin-top: 40px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_60 {
  margin-top: 60px;
}
.mt_80 {
  margin-top: 80px;
}
.mt_120 {
  margin-top: 120px;
}
.mb_25 {
  margin-bottom: 25px;
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 60px;
}
.mb_70 {
  margin-bottom: 70px;
}
.mb_80 {
  margin-bottom: 80px;
}
.mb_120 {
  margin-bottom: 120px;
}
.bk_white {
  background: #fff;
}
.bk_grey {
  background: #c8c2bb;
}
/* フッター  */
.top_dogfacility h2 {
  margin-bottom: 30px;
}
.top_dogfacility .cate {
  text-align: center;
}
.top_dogfacility .cate p {
  position: relative;
  text-align: center;
  font-size: 2rem;
  margin: 0 auto;
  display: inline-block;
  padding: 0 30px;
}
.top_dogfacility .cate p span {
  background: #fff;
  padding: 0 30px;
  z-index: 20;
  position: relative;
}
.top_dogfacility .cate p:before {
  content: "";
  height: 1px;
  background: #ccc;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.top_dogfacility ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.top_dogfacility ul li {
  display: flex;
  width: 48%;
  background: #f5f6f6;
  position: relative;
}
@media screen and (max-width: 896px) {
  .top_dogfacility ul {
    display: flex;
    margin-bottom: 20px;
    -webkit-flex-wrap: wrap; /* Safari etc. */
    -ms-flex-wrap: wrap; /* IE10        */
    flex-wrap: wrap;
  }
  .top_dogfacility ul li {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.top_dogfacility ul li img {
  width: 100%;
  min-width: 200px;
}
@media screen and (max-width: 896px) {
  .top_dogfacility ul li img {
    min-width: 100%;
  }
}
.top_dogfacility ul li h3 {
  padding: 30px 14px 14px;
  text-align: center;
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-weight: bold;
}
.top_dogfacility ul li p {
  padding: 0 14px 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.top_dogfacility ul li p.comingsoon {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 50px;
  left: 15px;
}
@media screen and (max-width: 896px) {
  .top_dogfacility ul li p.comingsoon {
    font-size: 1.8rem;
    top: 40px;
    left: 5px;
  }
}
/*リゾグラ*/
#resort-rg {
  background: #fff;
  padding: 80px 0 40px;
}
.rg_group h3 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 30px;
  color: #575757;
  line-height: 2;
  font-weight: 500;
}
.rg_group h3 span {
  color: #fff;
  font-size: 16px;
}
.rg_group h4 {
  color: #0E0E0E;
}
.rg_group .box {
  display: flex;
  flex-direction: column;
  margin: 50px auto;
}
.rg_group .box ul {
  display: flex;
  -webkit-flex-wrap: wrap; /* Safari etc. */
  -ms-flex-wrap: wrap; /* IE10        */
  flex-wrap: wrap;
}
@media screen and (max-width:896px) {
  .rg_group .box ul {
    flex-direction: column;
  }
}
.rg_group .box p.type {
  text-align: center;
  padding: 8px 0;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.rg_group .box li {
  display: flex;
  margin-bottom: 32px;
  margin-left: 8px;
  width: 32%;
}
@media screen and (max-width:896px) {
  .rg_group .box li {
    width: 96%;
  }
}
.rg_group .box li img {
  width: 65px;
  height: 45px;
  object-fit: cover;
}
.rg_group .box li .txt {
  padding: 5px 0 0 10px;
  width: 96%;
}
.rg_group .box li .txt p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #fff;
}
.rg_group .box li .txt h3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
.rg_group .rg_details {
  display: flex
}
@media screen and (max-width:896px) {
  .rg_group .rg_details {
    flex-direction: column;
  }
}
.rg_group .rg_details dl {
  float: left;
  padding-right: 3%;
  width: 32%;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width:896px) {
  .rg_group .rg_details dl {
    width: 96%;
    margin: 0 auto;
  }
}
.rg_group .rg_details dl:last-child {
  padding-right: 0;
}
.rg_group .rg_details dt {
  height: 1.6em;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  text-decoration-line: underline;
  color: #484848;
}
.rg_group .rg_details dd {
  color: #484848;
}
@media screen and (max-width:896px) {
  .rg_group .rg_details dt {
    text-align: left;
  }
}
.rg_group .rg_details dd {
  margin-left: 0px;
}
/* footer {
  text-align: center;
  padding: 40px 50px 10px;
  background: #516c8d;
}
@media screen and (max-width: 896px) {
  footer {
    padding: 68px 50px 60px;
  }
}
footer h2 {
  font-size: 3rem;
  padding-bottom: 30px;
  color: #fff;
}
footer h2 img {
  width: 140px;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  footer h2 {
    text-align: center;
  }
}
footer h2 span {
  font-size: 1.8rem;
}
footer .info {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
footer p {
  color: #fff;
}
footer p a {
  color: #fff;
}
@media screen and (max-width: 896px) {
  footer .info {
    flex-direction: column;
    text-align: center;
  }
}

footer .info p.tel {
  font-size: 2.8rem;
}

footer .info p.time {
  font-size: 1.8rem;
}

footer .info ul {
  display: flex;
  max-width: 800px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-right: 0;
}
footer .info ul li {
  width: 36px;
}
@media screen and (max-width: 896px) {
  footer .info .f_menu {
    margin-top: 40px;
  }
  footer .info ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .info ul li {
    width: auto;
  }
}
footer .info ul li a {
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 896px) {
  footer .info ul li {
    text-align: center;
    margin: 10px;
  }
  footer .info ul li a {
    margin: 0;
  }
} */
#menu-item a {
  height: auto;
}
#menu-item-5832 a {
  display: block;
  color: #fff;
}
#menu-item-5832 {
  background: #22347d;
  border-radius: 20px;
}
@media screen and (max-width: 896px) {
  #menu-item-5832 {
    padding: 10px 20px;
    margin-top: 0px;
  }
}
#menu-item-5832:hover {
  background: #fff;
}
#menu-item-5832 a:hover {
  color: #333;
}
/* footer p.address {
  margin-bottom: 20px;
}
footer p.company {
  font-size: 13px;
}
footer .info {
  margin-bottom: 60px;
}
footer p.checkin a {
  color: #fff;
  padding-right: 1em;
} */
.reserve_pc {
  position: fixed;
  bottom: 85px;
  right: 0;
  width: 210px;
  height: 170px;
  z-index: 100;
  background-image: linear-gradient(90deg, rgba(249, 244, 158, 1), rgba(255, 248, 212, 1) 100%, rgba(251, 251, 227, 1));
  color: #fff;
  text-align: center;
  padding: 0 10px;
  background: #feffc5;
  box-shadow: 1px 1px 10px #737373;
}
@media screen and (max-width: 896px) {
  .reserve_pc {
    display: none;
  }
}
.reserve_text {
  padding-top: 10px;
}
@media screen and (max-width: 896px) {
  .reserve_to489 {
    width: 20%;
    height: 50px;
  }
  .reserve_text {
    width: 20%;
    height: 50px;
    padding-top: 0;
  }
}
.reserve_pc p {
  font-size: 2rem;
  color: #656565;
  font-weight: bold;
}
.reserve_pc p span {
  display: block;
  font-size: 60%;
}
.reserve_tel {
  display: block;
  width: 100%;
  height: auto;
  font-size: 1.8rem;
  padding: 5px 0;
  color: #656565;
}
.reserve_to489 a {
  display: block;
  padding: 10px;
  color: #656565;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid;
  margin-top: 10px;
  border-radius: 18px;
  line-height: 1.2;
}
.reserve_to489 a:hover {
  text-decoration: underline;
}
#footer_sp {
  display: none;
}
@media screen and (max-width: 896px) {
  #footer_sp {
    display: block;
  }
  #menu-item-5587 {
    display: block;
  }
  .reserve_sp {
    width: 100%;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: #00ac82;
    color: #656565;
    text-align: center;
  }
  .reserve_web.pre {
    background-image: linear-gradient(90deg, rgba(89, 173, 241, 1), rgba(251, 251, 227, 1));
  }
  .reserve_sp p {
    padding-top: 7px;
  }
  .reserve_sp p a {
    color: #fff;
    display: block;
    font-size: 14px;
  }
  /*  .reserve_web, .reserve_tel, .reserve_qa, .reserve_menu {
    width: 33.33333%;
  }*/
  .reserve_web {
    width: 33.33333%;
  }
  .reserve_qa {
    width: 33.33333%;
  }
  .reserve_web, .reserve_tel, .reserve_qa {
    border-right: #fff solid 1px;
  }
  .reserve_qa {
    background: #d5d5d5;
  }
  .reserve_qa:last-of-type {
    border-right: none;
  }
  .drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    min-width: 300px;
    height: 100%;
    padding: 50px 0;
    background: #fdfdfd;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    opacity: 0;
    z-index: 999 !important;
  }
  .drawer-menu .menu {
    overflow-y: auto;
    height: 100%;
  }
  .menu-item {
    display: block;
  }
  .drawer-menu li {
    text-align: center;
  }
  .drawer-menu li a {
    display: block;
    height: 60px;
    line-height: 50px;
    font-size: 14px;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    color: #656565;
  }
  .drawer-menu li a:hover {
    color: #1a1e24;
    background: #fff;
  }
  /* ------------------------------------------------ checkbox */
  .check {
    display: none;
  }
  /* ------------------------------------------------ menu button */
  .menu-btn {
    position: fixed;
    display: block;
    top: 14px;
    right: 4%;
    width: 40px;
    height: 40px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
  }
  .bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 3px;
    background: #999;
    /*box-shadow: 1px 1px 1px #666;*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    border-radius: 2.5px;
  }
  .bar.middle {
    top: 15px;
    opacity: 1;
  }
  .bar.bottom {
    top: 30px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  .menu-btn:hover .bar {
    background: #999;
  }
  .close-menu {
    position: fixed;
    top: 0;
    right: 30%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
  }
  /* ------------------------------------------------ checked */
  .check:checked ~ .drawer-menu {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 2;
  }
  .check:checked ~ .contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
  }
  .check:checked ~ .menu-btn .bar.top {
    width: 56px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .check:checked ~ .menu-btn .bar.middle {
    opacity: 0;
  }
  .check:checked ~ .menu-btn .bar.bottom {
    width: 56px;
    top: 39px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .check:checked ~ .close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
    opacity: 1;
    z-index: 999;
  }
}
/*注意！！以下PC用ヘッダーメニュー*/
@media screen and (min-width: 897px) {
  /* .drawer-menu {
		width: 100%;
		height: 80px;
	} */
  /* .menu {
		max-width: 820px;
		float: right;
		margin-right: 160px;
	} */
  /* #menu-item-5589 {
    border-radius: 20px;
    width: 50px;
    background: #22347D;
    color: #fff;
  }
	#menu-item-5589 a {
    color: #fff;
  }
  #menu-item-5589:hover {
    background: #ddd;
  }
  #menu-item-5589 a:hover {
    color: #222;
  } */
  #menu-item-5587 {
    display: none;
  }
  .menu-item {
    /* display: inline-block; */
    /* padding: 20px 33px 10px; */
    text-align: center;
    /* margin: 24px 20px 0; */
    position: relative;
  }
  .menu-item a {
    display: block;
    height: 100%;
    color: #656565;
    font-size: 1.8rem;
  }
  .check, .menu-btn {
    display: none;
  }
}
/* TOPへ戻るボタン */
#fixedTop {
  right: 20px;
  bottom: 15px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  vertical-align: middle;
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(19, 40, 65, 0.6);
  position: fixed;
  z-index: 99;
  font-size: 20px;
}
#fixedTop:hover {
  background: rgba(19, 40, 65, 0.2);
}
@media screen and (max-width: 896px) {
  #fixedTop {
    display: none !important;
  }
}
#sincloBox div#sincloBannerBox #sincloBanner.sincloBanner {
  background-color: #516c8d !important;
}
/*ペット*/
.pet {
  text-align: center;
}
.pet p {
  font-size: 1.7em;
}
.pet_container {
  display: flex;
  margin-top: 50px;
}
.pet_container_re {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 896px) {
  .pet_container {
    display: flex;
    flex-direction: column;
  }
  .pet_container_re {
    display: flex;
    flex-direction: column;
  }
  .pet_mainimg {
    width: 100% !important;
  }
  .pet_mainimg img {
    width: 100%;
    margin: 30px 0 30px;
  }
  .pet_txtarea {
    width: 100% !important;
  }
}
.pet_mainimg {
  width: 50%;
}
.pet_mainimg img {
  width: 100%;
  margin: 30px 0 30px;
}
.pet_txtarea {
  width: 50%;
}
.pet_ame {
  background-color: #e7e7e7;
  padding: 40px 0 10px;
  width: 40%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 896px) {
  .pet_ame {
    background-color: #e7e7e7;
    padding: 40px 0 10px;
    width: 95%;
    margin: 0 auto 50px;
  }
}
.pet_ame ul {
  text-align: left;
  width: 300px;
  margin: 0 auto 50px;
  line-height: 3rem;
}
.pet_ame li {
  font-size: 1.6rem;
}
.pet_bg {
  width: 1200px;
  margin: 0 auto;
}
.pet_h3 {
  padding-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1.3;
  position: relative;
  color: orange !important;
  margin-bottom: 20px;
  border-bottom: solid 1px orange !important;
}
.bignumber {
  font-size: 48px;
  color: orange;
  margin-bottom: 15px;
}
/* ------------------------------
   20240220追記
------------------------------ */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 897px) {
  .is-hidden_pc {
    display: none !important;
  }
}
@media screen and (max-width: 896px) {
  .is-hidden_sp {
    display: none !important;
  }
}
img {
  max-width: 100%;
  height: auto;
}
p {
  line-height: 2;
}
@media screen and (max-width: 896px) {
  p {
    font-size: 1.5rem;
  }
}
a:hover {
  opacity: 0.7;
}
h2 {
  font-size: 30px;
  line-height: 1.7;
}
.ttl_yellow {
  line-height: 1.3;
}
.ttl_yellow span {
  display: block;
}
.ttl_yellow .ja {
  font-size: 16px;
}
.ttl_yellow .en {
  color: #ffb300;
  font-size: 60px;
  font-weight: 700;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 896px) {
  h2 {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.5;
  }
  .ttl_yellow .ja {
    font-size: 13px;
    text-align: center;
  }
  .ttl_yellow .en {
    font-size: 40px;
    text-align: center;
  }
}
.u-color_red {
  color: #D80000;
}
.u-bg_gray {
  background-color: #fff8e6;
  padding: 180px 0;
}
@media screen and (max-width: 896px) {
  .u-bg_gray {
    padding: 70px 15px;
  }
}
.btn {
  margin-top: 40px;
}
.btn a {
  border: 1px solid #979797;
  color: #333;
  font-size: 15px;
  display: block;
  text-align: center;
  padding: 10px;
  width: 180px;
  max-width: 90%;
  position: relative;
}
.btn a:after {
  content: "";
  mask: url(./img/common/ico_arrow.svg) no-repeat center / contain;
  background-color: #333;
  width: 6px;
  height: 11px;
  position: absolute;
  margin: auto 0;
  inset: 0 10px 0 auto;
  transition: all 0.3s;
}
.btn a:hover {
  background-color: #979797;
  color: #fff;
  opacity: 1;
}
.btn a:hover:after {
  background-color: #fff;
}
.wrapper {
  overflow-x: hidden;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .container {
    padding: 0 15px;
  }
}
/* ===================================================
追従ボタン
=================================================== */
.reserve_pc, .reserve_sp {
  box-sizing: initial;
}
.reserve_pc p, .reserve_sp p {
  line-height: 1.7;
}
/* ===================================================
header
=================================================== */
@media screen and (min-width: 897px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-shadow: 1px 1px 10px #737373;
  }
  .menu {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .menu {
    flex-shrink: 0;
    font-size: 15px;
  }
  /*プレオープン用*/
  #menu-item-9526 {
    background-image: linear-gradient(90deg, rgba(89, 173, 241, 1), rgba(251, 251, 227, 1));
    right: -30px;
    background: #00ac82;
    box-shadow: 1px 1px 10px #737373;
  }
  #menu-item-9526 a {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 350px;
    height: 100px;
  }
  #menu-item-9526 a:before {
    content: "";
    background: url(./img/common/ico_calender_w.svg) no-repeat center / contain;
    width: 33px;
    height: 39px;
  }
 #menu-item-13720 {
  display: none;
   }

  /*グランドオープン用*/
  #menu-item-5589 {
    background: rgb(227, 235, 150);
    background-image: linear-gradient(90deg, rgba(249, 244, 158, 1), rgba(255, 248, 212, 1) 100%, rgba(251, 251, 227, 1));
  }
  #menu-item-5589 a {
    color: #656565;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 300px;
    height: 100px;
  }
  #menu-item-5589 a:before {
    content: "";
    background: url(./img/common/ico_calender.svg) no-repeat center / contain;
    width: 31px;
    height: 37px;
  }
}
@media screen and (max-width: 1170px) {
  header h1 img {
    width: 130px;
    padding-left: 15px;
  }
  .menu {
    gap: 15px;
  }
  #menu-item-9526 {
    background: #00ac82;
  }
  #menu-item-5589 {
    background: rgb(227, 235, 150);
    background-image: linear-gradient(90deg, rgba(249, 244, 158, 1), rgba(255, 248, 212, 1) 100%, rgba(251, 251, 227, 1));
  }
  #menu-item-5589 a, #menu-item-9526 a {
    font-size: 15px;
    color: #fff;
  }
  /* ↓20260107追記 ↓　	
------------------------------ */
  #menu-item-13720 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  #menu-item-13720::before {
    content: "";
    display: inline-block;
    width: 34px;
    height: atuo; 
    margin-right: 15px;
    background-image: url('./img/line_icon.png');
    background-size: contain;
    margin-top: -6px;
    background-repeat: no-repeat;
    background-position: center;
  }
  /* ↑20260107追記 ↑　	
------------------------------ */
}
@media screen and (max-width: 896px) {
  .header {
    width: 100%;
    box-shadow: 1px 1px 10px #737373;
  }
  header h1 {
    width: fit-content;
  }
  header h1 img {
    margin: 8px 0 0 5px;
    width: 165px;
    padding-top: 0px;
  }
}
/* ===================================================
footer
=================================================== */
footer {
  background-color: #fbfbfb;
  padding: 60px 0 0;
}
footer .f_info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
footer .logo_image img {
  width: 300px;
}
footer .f_company h2 {
  font-size: 3rem;
  padding-bottom: 30px;
  color: #fff;
}
footer .f_company h2 img {
  width: 250px;
  margin: 0 auto;
}
footer .f_company .tel {
  margin-top: 10px;
}
footer .f_company .tel .num {
  font-size: 24px;
}
footer .f_company .tel .time {
  font-size: 14px;
}
  /* ↓20260107追記 ↓　	
------------------------------ */
footer .f_company .btn_line {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid #06c755;
  border-radius: 15px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 10px;
}
.btn_line::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px; 
  margin-right: 10px;
  background-image: url('./img/line_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* ↑ 20260107追記↑ 　
------------------------------ */
footer.menu {
  gap: 15px;
  display: flex;
}
.copyright {
  font-size: 13px;
  text-align: center;
  padding: 30px 20px 60px;
}
#footer-menu ul li a {
  color: #555;
}
@media screen and (max-width: 896px) {
  footer .container {
    padding: 0 25px;
  }
  footer .f_info {
    flex-direction: column;
  }
  footer .logo_image img {
    width: 300px;
  }
  /*footer .f_menu li + * {
    margin-top: 20px;
  }*/
  .copyright {
    font-size: 10px;
    padding: 60px 25px 30px;
  }
  #menu-footer-menu {
    display: flex;
    flex-wrap: wrap;
  }
}
/* 20240220追記　ここまで
------------------------------ */
