@charset "utf-8";
/* CSS Document */

/* Common *******************/
body {
	font-family: "Zen Old Mincho", serif;
	margin: 0;
	padding: 0;
	color: #251e1c;
}
img {
	width: 100%;
}
section {
    padding: 30px 0;
}
.inner {
	width: 96%;
	max-width: 1200px;
	margin: auto;
}
.btn a {
	background-color: #fff;
    border: 1px solid #ddd;
    display: block;
    width: 100%;
    max-width: 300px;
    text-align: center;
    color: #000;
    text-decoration: none;
	letter-spacing: 0.3rem;
	padding: 10px 20px 10px 3rem;
	box-sizing: border-box;
}
.text-red {
	color: #c10000;
}
.text-blue {
	color: #0080ff;
}

/* Header *******************/
header .inner {
	display: grid;
}
.header-logo img{
    max-width: 100%;
}
.header-logo a,
.header-logo-sp a {
    display: block;
}
ul.g-nav {
	list-style: none;
}
ul.g-nav a {
	text-decoration: none;
	color: inherit;
}
ul.g-nav li {
	position: relative;
	padding-left: 30px;
}
ul.g-nav li::before {
	content: "";
	position: absolute;
	width: 25px;
    height: 25px;
    background-image: url(../img/icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	left: 0;
}

/* Footer *******************/
footer {
	background-color: #e5e5e6;
}
footer .inner {
	display: grid;
}
.footer-logo img{
    max-width: 100%;
}

ul.footer-nav {
	list-style: none;
}
ul.footer-nav a {
	text-decoration: none;
	color: inherit;
}
ul.footer-nav li {
	position: relative;
	padding-left: 30px;
}
ul.footer-nav li::before {
	content: "";
	position: absolute;
	width: 25px;
    height: 25px;
    background-image: url(../img/icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	left: 0;
}
.copy {
	text-align: center;
	font-size: .7rem;
	padding: 10px;
}

#topBtn {
  position:fixed;
  bottom:20px;
  right:10px;
  display:block;
  background-color:rgba(0,0,0,0.5);
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  font-size:11px;
  width:60px;
  height:60px;
  text-align:center;
  line-height:22px;
  border-radius:30px;
  padding-top:30px;
  box-sizing:border-box;
}
#topBtn:before {
  content:'\25B2';
  position:absolute;
  top:10px;
  left:0;
  width:100%;
  text-align:center;
  font-size:20px;
}
#topBtn:hover {
  opacity:0.7;
}
/* Top Page *******************/
section h2 {
	letter-spacing: .2rem;
    font-size: 1.1rem;
}
section h2:not(section.top-contact h2) {
	color: #574b41;
}

/* Top About */
section.top-about .inner {
    display: grid;
	position: relative;
	gap: 30px;
}
section.top-about h2 {
    position: relative;
    padding-left: 65px;
}
section.top-about h2::before {
	content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url(../img/icon-member.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
}
.about-text p {
    line-height: 2;
	font-size: .95rem;
	margin-top: 30px;
}
.btn.btn-more {
    display: flex;
    justify-content: center;
	margin-top: 20px;
    margin-bottom: 30px;
}
.btn.btn-more a:hover {
    background-color: #f39700;
    color: #fff;
}


/* Top Contact */
section.top-contact {
	background: url("../img/bg-blue.png") no-repeat;
	background-size: cover;
}
section.top-contact .inner {
    position: relative;
}
section.top-contact h2 {
    color: #5f5f60;
	display: flex;
    justify-content: center;
	text-align: center;
}
section.top-contact h2 span {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
	display: inline-block;
}
section.top-contact h2 span::before,
section.top-contact h2 span::after{
    content: "";
    display: inline-block;
    width: 35px;
    height: 50px;
    background-image: url(../img/bone.png);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
	bottom: 0;
}
section.top-contact h2 span::before {
    left: 0px;
}
section.top-contact h2 span::after {
    right: 0px;
	transform: scale(-1, 1);
}
.nayami-box {
	background-color: rgba(255,255,255,0.60);
	padding: 50px 30px;
	display: grid;
}
.nayami-img {
    text-align: center;
	align-content: center;
}
.nayami-text ul {
	padding-left: 0;
}
.nayami-text ul li {
    padding-bottom: .7rem;
    font-size: 1rem;
	list-style: none;
	display: flex;
}
.nayami-text ul li::before {
    content: "●";
	color: #cbb1d1;
	padding-right: .5rem;
}
.nayami-text p {
    font-size: 1.2rem;
    background: linear-gradient(transparent 60%, #fff 0%);
    display: inline;
	color: #965498;
	line-height: 2;
	font-weight: bold;
}
.btn-contact {
	display: flex;
	justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}
.btn-contact a:hover {
    background-color: #965498;
    color: #fff;
}

/* Top News */
section.top-news {
	text-align: center;
}
#newsframe {
    height: 100vh;
}

/* Top Access */
section.top-access {
	background: url("../img/bg-pink.png") no-repeat;
	background-size: cover;
}
section.top-access .inner {
    display: grid;
	gap: 30px;
	position: relative;
}

.top-info h3 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
}
.info-tel {
    font-size: 1.2rem;
	margin-bottom: .8rem;
}

.info-email,.info-address,.info-map {
    font-family: sans-serif;
	margin-bottom: .7rem;
}
.touroku {
    font-size: .8rem;
	
}
.info-map {
    background-color: #fff;
    display: block;
	padding: 30px;
    text-align: center;
}
.info-map img {
    max-width: 400px;
}
.info-map a {
	text-decoration: none;
	color: #000;
	display: block;
}

.sp {
	display: none;
}


/* Menu Page *******************/
#page-service h1 {
	color: #574b41;
}

.service-img {
	background-image: url("../img/service-main.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 200px;
}

.hotel-wrap {
	display: grid;
	gap:30px;
}
section.hotel {
	position: relative;
}
.daycare-wrap {
	display: grid;
	gap: 30px;
}

.tbl-price {
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  border-collapse: collapse;
  width: 100%;
  box-sizing: border-box;
  margin-top: 30px;
  margin-bottom: 30px;
}
.tbl-price th,
.tbl-price td {
  border-left: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 10px;
  box-sizing: border-box;
}
.tbl-price th {
  background-color: #eee;
  text-align: left;
}


/* Salon Page *******************/
#page-facility h1 {
	color: #574b41;
}
.facility-img {
	background-image: url("../img/facility-main.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 200px;
}

section.facility h2.f-name {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
	letter-spacing: inherit;
}
section.facility h2.f-name span {
	font-size: 1.2rem;
	margin-left: .5rem;
}
section.facility .facility-photo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
    margin-top: 30px;
}
.facility-photo p.cap {
    font-size: .9rem;
    text-align: center;
    margin-top: 0;
}
section.access h3,
section.disclaimer h3{
	text-align: center;
	color: #574b41;
	font-size: 1.2rem;
	letter-spacing: 0.3rem;
}
.facility-wrap {
	display: grid;
	gap: 30px;
}
section.access .info-map {
	border: 1px solid #ccc;
}
section.disclaimer {
    background-color: #f0f8ff;
}

@media (max-width: 1023px) {
body {
    width: 100vw;
    height: 100vh;
    animation: bugfix infinite 1s;
  }
.sp {
	display: block;
}
.pc {
	display: none;
}
.header-logo-sp {
    width: 130px;
    padding: 5px 15px;
}
@keyframes bugfix {
from {
	padding: 0;
}
to {
	padding: 0;
}
}

@-webkit-keyframes bugfix {
from {
	padding: 0;
}
to {
	padding: 0;
}
}

#overlay-button {
	position: absolute;
	right: .5rem;
	top: .5rem;
	padding: 26px 11px;
	z-index: 5;
	cursor: pointer;
	user-select: none;
}

#overlay-button span {
	height: 4px;
	width: 35px;
	border-radius: 2px;
	background-color: #000;
	position: relative;
	display: block;
	transition: all .2s ease-in-out;
}

#overlay-button span:before {
	top: -10px;
	visibility: visible;
}

#overlay-button span:after {
	top: 10px;
}

#overlay-button span:before,
#overlay-button span:after {
	height: 4px;
	width: 35px;
	border-radius: 2px;
	background-color: #000;
	position: absolute;
	content: "";
	transition: all .2s ease-in-out;
}

#overlay-button:hover span,
#overlay-button:hover span:before,
#overlay-button:hover span:after {
	background: #000;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox]:checked ~ #overlay {
	visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span,
input[type=checkbox]:checked ~ #overlay-button span {
	background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
	transform: rotate(45deg) translate(7px, 7px);
}

input[type=checkbox]:checked ~ #overlay-button span:after {
	transform: rotate(-45deg) translate(7px, -7px);
}

#overlay {
	height: 100vh;
	width: 100vw;
	background: #fff;
	z-index: 2;
	visibility: hidden;
	position: fixed;
	opacity: .9;
	}

#overlay ul {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	height: 100vh;
	padding-left: 0;
	list-style-type: none;
}

#overlay ul li {
	padding: 1rem 30px;
}

#overlay ul li a {
	color: #000;
	text-decoration: none;
}

#overlay ul li a:hover {
	color: #000 !important;
}
}


@media screen and (max-width: 767px) {
.header-logo-sp {
	width: 100px;
	padding: 5px;
}
.dog01,.dog02,.dog03,.dog04 {
    display: none;
}
section.top-about h2 br {
    display: none;
}
.about-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.nayami-img img {
    width: 90%;
	max-width: 180px;
}
section.top-access h2 {
	text-align: center;
}
.footer-logo,
.footer-nav{
	display: none;
}

.tbl-price {
    border: none;
}
.tbl-price thead {
    display: none;
}
.tbl-price tr {
    border-top: 1px solid #999;
    display: block;
    margin-bottom: 50px;
}
.tbl-price td {
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    display: block;
    padding: 10px;
    text-align: right;
}
.tbl-price td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
}

.tbl-price td:first-child {
	background-color:#CCCCCC;
}
.tbl-price span {
	display: none;
}
.disclaimer ul {
    font-size: .9rem;
}
}

@media screen and (max-width: 480px) {
/* Menu Page *******************/
.service-img {
	background-position: center;
}
.facility-img {
	background-position: left -130px center;
}
}
@media screen and (min-width: 768px) {

/* Common *******************/
body {
	font-family: "Zen Old Mincho", serif;
	margin: 0;
	padding: 0;
	color: #251e1c;
}
img {
	max-width: 100%;
}
section {
    padding: 50px 0 50px;
}
.inner {
	width: 94%;
	max-width: 1200px;
	margin: auto;
}
.btn a {
    min-width: 200px;
	max-width: 300px;
	padding: 15px 20px 15px 3rem;
}
section h2 {
	letter-spacing: .3rem;
	font-size: 1.5rem;
}
footer .inner {
	grid-template-columns: 150px 3fr;
    align-items: center;
    justify-content: space-between;
	gap: 30px;
	padding: 20px;
}
footer nav ul.footer-nav {
	display: grid;
    grid-template-columns: 1fr auto 1fr 1fr;
    justify-items: center;
}
/* Top About */
section.top-about .inner {
    grid-template-columns: 2fr 1fr;
}
section.top-about h2 {
    position: relative;
    padding-left: 100px;
}
section.top-about h2::before {
	content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background-image: url(../img/icon-member.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
}
.about-text p {
    margin-left: 90px;
    line-height: 2;
}
.btn.btn-more {
    display: flex;
    justify-content: flex-end;
	margin-top: 50px;
}
.btn.btn-more a:hover {
    background-color: #f39700;
    color: #fff;
}
.dog01 {
    width: 200px;
    position: absolute;
    /*left: -10%;*/
    bottom: 0;
	left: 0;
}

/* Top Contact */
section.top-contact {
	background: url("../img/bg-blue.png") no-repeat;
	background-size: cover;
}
section.top-contact .inner {
    position: relative;
}
section.top-contact h2 {
    color: #5f5f60;
	display: flex;
    justify-content: center;
}
section.top-contact h2 span {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
	display: inline-block;
}
section.top-contact h2 span::before,
section.top-contact h2 span::after{
    width: 35px;
    height: 35px;
}
section.top-contact h2 span::before {
    left: 0px;
}
section.top-contact h2 span::after {
    right: 0px;
	transform: scale(-1, 1);
}
.nayami-box {
	background-color: rgba(255,255,255,0.60);
	padding: 50px 30px;
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 80px;
}
.nayami-text ul {
	padding-left: 0;
}
.nayami-text ul li {
    padding-bottom: .7rem;
    font-size: 1.1rem;
	list-style: none;
}
.nayami-text ul li::before {
    content: "●";
	color: #cbb1d1;
	padding-right: .5rem;
}
.nayami-text p {
    font-size: 1.2rem;
    background: linear-gradient(transparent 60%, #fff 0%);
    display: inline;
	color: #965498;
	line-height: 2;
	font-weight: bold;
}
.btn-contact {
	margin-top: 2rem;
}
.btn-contact a:hover {
    background-color: #965498;
    color: #fff;
}
.dog02 {
    position: absolute;
    right: 0;
    bottom: -150px;
	width: 250px;
}

/* Top News */
section.top-news {
	text-align: center;
	padding-bottom: 0;
}


/* Top Access */
section.top-access {
	background: url("../img/bg-pink.png") no-repeat;
	background-size: cover;
}
section.top-access .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 80px;
	position: relative;
}

.top-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.info-tel {
    font-size: 1.8rem;
    margin-bottom: .5rem;
}
.info-email {
	margin-bottom: .7rem;
}
.info-email,.info-address,.touroku,.info-map {
    font-family: sans-serif;
}

.info-map {
    background-color: #fff;
    display: block;
    /*padding: 50px 80px 0;*/
    text-align: center;
	align-content: center;
    margin-top: 50px;
}

.info-map a {
	text-decoration: none;
	color: #000;
}
.dog03 {
    position: absolute;
    left: 0%;
    top: -130px;
    width: 200px;
}
.copy {
	text-align: right;
	font-size: .8rem;
	padding: 20px;
}

/* Menu Page *******************/
#page-service h1 {
    margin-top: 0;
    margin-bottom: 1rem;
	font-size: 2rem;
}
.hotel h2 {
	font-size: 1.2rem;
}
.service-img {
	height: 370px;
	background-position: center bottom;
}
.hotel-wrap {
	grid-template-columns: auto 40%;
	gap:30px;
}
.daycare-wrap {
	grid-template-columns: auto 40%;
	gap: 30px;
}
.hotel-photo {
    align-self: center;
}
.daycare-photo {
    align-self: center;
}

section.hotel {
    position: relative;
}
.dog04 {
	width: 230px;
	position: absolute;
	right: 50px;
	bottom: 30px;
}

/* Salon Page *******************/
#page-facility h1 {
    margin-top: 0;
    margin-bottom: 1rem;
	font-size: 2rem;
}
section.facility h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}
section.access h3,
section.disclaimer h3{
	font-size: 1.5rem;
}
.facility-img {
	height: 370px;
	background-position: left -200px center;
}

.facility-wrap {
	grid-template-columns: 2fr 3fr;
	gap: 30px;
}
section.facility .facility-photo {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}
}

@media screen and (min-width: 1024px) {
section {
    padding: 100px 0 80px;
}

header .inner,footer .inner {
	grid-template-columns: 150px 3fr;
    align-items: center;
    justify-content: space-between;
	gap: 80px;
	padding: 20px;
}
header nav ul.g-nav {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: end;
}
footer nav ul.footer-nav {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
}

/* Top About */
section.top-about .inner {
    gap: 80px;
}

.about-text p {
    width: 80%;
    margin-left: 20%;
	font-size: 1.1rem;
}
section.top-contact h2 span::before,
section.top-contact h2 span::after{
    height: 40px;
}
.btn-contact {
    justify-content: flex-end;
}
.top-info {
    margin-left: 10%;
}
.touroku {
    font-size: .9rem;
}
.hotel h2 {
    font-size: 1.5rem;
}
.daycare h2 {
	font-size: 2rem;
}

.dog04 {
	width: 230px;
	position: absolute;
	right: 50px;
	bottom: 110px;
}

#page-facility h1 {
	margin-bottom: 2rem;
}

.info-map {
    padding: 50px 80px 0;
    margin-top: 50px;
}
.info-map img {
	margin-bottom: 20px;
}

}

@media screen and (min-width: 1280px) {
#page-index section h2 {
	font-size: 2rem;
}
.dog01 {
    width: 300px;
    position: absolute;
    left: -10%;
    bottom: 0;
}
.dog02 {
    position: absolute;
    right: 0;
    bottom: -150px;
	width: 300px;
}

.dog03 {
    position: absolute;
    left: -10%;
    top: -180px;
    width: 300px;
}
.dog04 {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 300px;
}
.about-text p {
    width: 70%;
    margin-left: 30%;
}
section.top-contact h2 span::before,
section.top-contact h2 span::after{
    height: 50px;
}
.info-email, .info-address, .touroku, .info-map {
	font-size: 1.1rem;
}
/* Menu Page *******************/
.service-img {
	height: 480px;
	background-position: center bottom;
}
/* Salon Page *******************/
.facility-img {
	height: 480px;
	background-position: center;
}
}