@charset "UTF-8";

/* index.html */
.p-service {
  color: #333;
}

.p-service__mv {
  margin-bottom: 60px;
}

.p-service__mv .c-heading-01 {
  margin-bottom: 0;
}

/**
 * よく見られているサービス
*/
.p-service__popular {
  margin-bottom: 40px;
}

.p-service__popular-heading {
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 35px;
}

.p-service__hash {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.p-service__hash-item {
  padding-left: 0;
  display: inline-block;
  margin: 0;
  line-height: 1.3;
}

.p-service__hash-item:before {
  content: none;
}

.p-service__hash-url {
  background: #ffffff;
  color: #333333;
  transition: 0.3s;
  padding: 0.55rem 1.45rem;
  border-radius: 100vmax;
  border: 1px solid #707070;
  font-size: 1rem;
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-service__hash-url {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.1;
  }
}

.p-service__hash-url:hover {
  background: #707070;
  color: #ffffff;
}

/**
 * アンカーナビ
*/
.p-service__anchor-nav {
  padding: 70px 0;
  background-color: #B4B4B4;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-service__anchor-nav {
    padding: 2.5rem 0;
  }
}

.p-service__anchor-nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-service__anchor-nav-list:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .p-service__anchor-nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.p-service__anchor-nav-list--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-service__anchor-nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.p-service__anchor-nav-button--last {
  grid-column-start: 1;
  grid-column-end: 4;
  border: 1px solid #333;
}

.p-service__anchor-nav-button--last .p-service__anchor-nav-url {
  height: 60px;
}

@media screen and (max-width: 767px) {
  .p-service__anchor-nav-button--last {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.p-service__anchor-nav-list--two .p-service__anchor-nav-button--last {
  grid-column-start: 1;
  grid-column-end: 3;
}

.p-service__anchor-nav-url {
  font-size: 16px;
  line-height: 1.375;
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/icon-arrow-bottom01.svg);
  background-position: center right 18px;
  background-repeat: no-repeat;
  padding: 0 37px 0 22px;
}

@media screen and (max-width: 767px) {
  .p-service__anchor-nav-url {
    font-size: 14px;
    background-position: center right 8px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1) {
  .p-service__anchor-nav-url {
    font-size: 14px;
    background-position: center right 8px;
    padding: 0 23px 0 20px;
  }
}

/**
 * コンテンツ背景
*/
.p-service__contents-top {
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: #F5F5F5;
  margin-bottom: 110px;
}

/**
 * h2タイトル
*/
.p-service__heading2 {
  margin-bottom: 70px;
  font-size: 22px;
  text-align: center;
  position: relative;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .p-service__heading2 {
    font-size: 20px;
    margin-bottom: 4.375rem;
  }
}

.p-service__heading2::before {
  content: "";
  width: 3.125rem;
  height: 0.0625rem;
  margin-left: -1.5625rem;
  background: #29aabf;
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
}

@media screen and (max-width: 767px) {
  .p-service__heading2::before {
    width: 2.5rem;
    margin-left: -1.25rem;
  }
}

/**
 * h3タイトル
*/
.p-service__heading3 {
  border-bottom: 1px solid #E0E0E0;
  font-size: 20px;
  line-height: 1.45;
  padding: 35px 0 35px 50px;
  position: relative;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-service__heading3 {
    background-position: left 10px center;
    padding: 30px 0 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-service__heading3 {
    font-size: 18px;
    background-position: left 2px center;
    padding: 30px 0 30px 0;
    background-size: 50px auto;
  }
}

.p-service__heading3+.p-service__item {
  padding-top: 0;
}

/**
 * タイトル
*/
.p-service__item-title {
  font-size: 18px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-service__item-title {
    font-size: 16px;
  }
}

.p-service__item-title+.p-service__item-url {
  margin-top: 16px;
}

.p-service__item-title-url {
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(../images/icon-arrow-right01.svg);
  padding: 0.75rem 22px 0.75rem 50px;
  padding: 0.23rem 22px 0.23rem 0;
  border-bottom: 0.0625rem solid #707070;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .p-service__item-title-url {
    padding: 0.21rem 18px 0.21rem 0;
  }
}

.p-service__item-title-icon {
  display: block;
  height: 40px;
  margin-right: 11px;
}

@media screen and (max-width: 767px) {
  .p-service__item-title-icon {
    height: 30px;
    margin-right: 6px;
  }
}

.p-service__item-title-icon-img {
  height: 100%;
  width: auto;
}

/**
 * 大ブロック
*/
.p-service__list:not(:last-child) {
  margin-bottom: 70px;
}

.p-service__list-body {
  background-color: #fff;
}

.p-service__heading2 + .p-service__list-body > .p-service__item {
  padding-top: 46px;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-service__heading2 + .p-service__list-body > .p-service__item {
    padding-top: 36px;
  }
}

.p-service__heading2 + .p-service__list-body > .p-service__item {
  padding-left: 20px;
  padding-right: 20px;
}

.p-service__heading2 + .p-service__list-body > .p-service__item:last-child .p-service__item-inner {
  background-image: none;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-service__heading2 + .p-service__list-body > .p-service__item {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}


/**
 * 中ブロック
*/
.p-service__list-child {
  padding: 0 5px;
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-service__list-child {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-service__list-child {
    padding: 0 1.25rem;
  }
}

.p-service__list-child:not(:last-child) {
  padding-bottom: 30px;
}

.p-service__list-child:last-child {
  padding-bottom: 50px;
}

.p-service__list-child>.p-service__heading3 {
  margin-top: 20px;
}

.p-service__list-child:last-of-type .p-service__item:last-child .p-service__item-inner {
  padding-bottom: 0;
  background-image: none;
}

/**
 * 小ブロック
*/
.p-service__item {
  padding-top: 50px;
}

.p-service__item:not(:last-child) {
  margin-bottom: 30px;
}

.p-service__item+.p-service__item {
  padding-top: 0;
}

.p-service__item-inner {
  padding-bottom: 28px;
  max-width: 780px;
  margin: 0 auto;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-image: url(../images/bg-dot01.svg);
}

/**
 * 本文
*/
.p-service__item-desc {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-service__item-desc {
    font-size: 14px;
  }
}

/**
 * リンクリスト
*/
.p-service__item-url {
  background-color: #F5F5F5;
  display: inline-flex;
  font-weight: 300;
  color: #333;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 16px;
  padding: 16px 20px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-service__item-url {
    font-size: 14px;
  }
}

.p-service__item-url .p-service__item-url-text {
  line-height: 1.6;
}

.p-service__item-url-text {
  text-decoration: underline;
}


/**
 * 注釈
*/
.p-service__item-note {
  font-size: 14px;
  font-weight: 300;
  color: #333;
  margin-top: 8px;
  line-height: 1.5;
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}

.p-service__item-note::before {
  content: "※";
}

/**
 * ペットをご同伴のお客様
*/
.p-service__notice {
  margin-bottom: 20px;
  background-color: #F5F5F5;
  padding: 40px 50px;
}

@media screen and (max-width: 767px) {
  .p-service__notice {
    padding: 40px 20px;
  }
}

.p-service__notice-title {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.p-service__notice-desc {
  line-height: 1.78;
  font-size: 18px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .p-service__notice-desc {
    line-height: 1.6;
    font-size: 16px;
  }
}

/**
 * バナー
*/
.p-service__banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-service__banner--2fr {
  grid-column-start: 1;
  grid-column-end: 2;
}

.p-service__banner-item--2fr {
  grid-column-start: 1;
  grid-column-end: 3;
}

/**
 * TOPにもどる
*/
.p-service__more {
  margin-top: 100px;
}
/* /index.html */


/* detail.html default */
.p-service__detail__wrap {
	max-width: 62.5rem;
	margin: 0 auto;
	padding: 1rem;
	color: #333;
}

.p-service .c-heading-02 {
	letter-spacing: 1.5px;
	margin: 0.25rem 1rem;
}

.p-service-detail__contents h1 {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.5555555556;
	margin: 1.875rem 0;
}

.p-service-detail__contents h2 {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.5555555556;
	margin: 1.875rem 0;
}

.p-service-detail__contents {
	margin-bottom: 0.5rem;
}

/* .p-service-detail__contents a {
	display: block !important;
} */

.p-service-detail__contents .floor {
	margin-bottom: 0.5rem;
}

.p-service-detail__contents .floor a {
	display: inline-block;
	padding: 0.325rem 1.2rem;
	margin-right: 0.625rem;
	background-color: #333;
	color: #fff;
	border-radius: 2px;
	transition: .3s;
}

.p-service-detail__contents .floor a:hover {
	opacity: 0.7;
}

.p-service-detail__contents .detail {
	margin-bottom: 0.5rem;
}

.p-service-detail__contents .detail .flex_list {
	display: flex;
}

.p-service-detail__contents .detail dt {
	padding: 0.5rem 0;
	line-height: 1.6;
}

.p-service-detail__contents .detail dd {
	padding: 0.5rem;
	line-height: 1.6;
}

.p-service-detail__contents .detail dd a:hover {
	text-decoration: underline;
}

.p-service-detail__contents .detail ul {
	margin: 0.5rem 0 !important;
}

.p-service-detail__contents .detail li {
	font-size: 0.8rem;
	border-radius: 2px;
	border: 1px solid #ccc;
	display: inline-block;
	padding: 0.3rem 0.75rem;
}

.p-service-detail__contents a:hover {
	transition: opacity;
}

.p-service-detail__contents h3 {
	font-weight: 400;
	margin-bottom: 2rem !important;
	font-size: 1.2rem;
	line-height: 1.5;
}

.p-service-detail__contents h4,
h5,
h6 {
	margin-bottom: 1.25rem;
}

.p-service-detail__contents p {
	font-size: 1rem;
	line-height: 1.5 !important;
	margin-bottom: 2rem !important;
	font-weight: 300;
}

.p-service-detail__contents ul {
	margin: 1.5rem 0 1.5rem 1.25rem;
}

.p-service-detail__contents ol {
	margin: 2rem 0;
	padding: 1.5rem 2rem 1.2rem 3.25rem;
	background: #f2f2f2;
}

.p-service-detail__contents ul li {
	/*list-style: disc;*/
	margin-bottom: 0.3rem;
	line-height: 1.5;
	color: #333 !important;
	font-weight: 300;
	font-size: .875rem;
}

.p-service-detail__contents ol li {
	list-style: decimal;
	margin-bottom: 0.75rem;
	line-height: 1.6;
	color: #333 !important;
	font-weight: 300;
	letter-spacing: 1.5px;
	font-size: .875rem;
}

.p-service-detail__contents ol li a {
	border-bottom: 1px solid #777;
	display: inline !important;
}

.p-service-detail__contents hr {
	margin: 2.5rem 0.5rem;
	color: #ccc;
}

.p-service-detail__contents .mt-be-column {
	width: 100%;
}

.p-service-detail__contents img {
	margin-bottom: 1rem;
}

/* asset-imageをmt-be-columns内以外で中央寄せ */
.p-service-detail__contents .asset-image:not(.mt-be-columns .asset-image) {
	margin-left: auto;
	margin-right: auto;
}

.p-service-detail__contents *::marker {
  content: none;
}

@media screen and (max-width: 480px) {
	.p-service-detail__contents .mt-be-columns {
		display: block !important;
		margin: 1rem 0;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.p-service-detail__contents .mt-be-column {

		margin: 0.125rem;
	}
}

@media screen and (min-width: 481px),
screen and (orientation: landscape) {
	.p-service-detail__contents .mt-be-columns {
		display: flex;
		margin: 2.5rem 0;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.p-service-detail__contents .mt-be-column {
		width: 28.75rem;
		flex-basis: calc((100% - 1.5rem) / 2);
		max-width: calc((100% - 1.5rem) / 2);
	}
}

.p-service-detail__contents table {
	border-collapse: collapse;
}

.p-service-detail__contents table tr,
td {
	border: 1px solid #ccc;
	padding: .75rem;
	font-size: .75rem;
}

.p-service-detail__contents table tr {
	background: #f2f2f2;
}

.p-service-detail__contents table td {
	background: #fff;
}

.p-service-detail__contents a:not(:has(img)){
  text-decoration: underline;
}

.p-service-detail__tag {
	max-width: 62.5rem;
	margin: 3rem auto 1rem;
	text-align: center;
}

.p-service-detail__tag li {
	display: inline-block;

}

.p-service-detail__tag li a {
	background: #f2f2f2;
	color: #333;
	transition: .3s;
	padding: 0.625rem;
	border-radius: 20px;
	margin-right: 0.3rem;
	font-size: .875rem;
}

.p-service-detail__tag li a:hover {
	background: #6c6c6c;
	color: #fff;
}

.p-service-detail__foot {
	max-width: 62.5rem;
	margin: 0 auto;
	padding: 2.5rem 0 1rem;
	text-align: center;
}

.p-service__cards {
	padding: 3.875rem 0 5rem 0
}

.p-service__cards__heading {
	color: #333;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5555555556
}

.p-service__cards__flex {
	display: flex;
	flex-wrap: wrap
}

.p-service__cards__col {
	width: calc(25% - 28.5px) !important;
	margin-top: 3.75rem !important;
	margin-left: 2.375rem !important
}

.p-service__cards__col:first-child,
.p-service__cards__col:nth-child(4n+5) {
	margin-left: 0 !important
}

.p-service__cards__col a {
	display: inline-block
}

.p-service__cards__img {
	position: relative;
	border: 1px solid #f3f3f3;
	display: flex;
	align-items: center;
	margin: auto 0;
	aspect-ratio: 1;
	text-align: center
}

.p-service__cards__img img {
	max-width: 100%;
	max-height: 100%;
	margin: auto;
	display: block
}

@media screen and (max-width: 767px) {
	.p-service__cards__col {
		width: calc(50% - 7.5px) !important;
		margin-top: 2.5rem !important;
		margin-left: .9375rem !important
	}

	.p-service__cards__col:nth-child(-n+3) {
		width: calc(50% - 7.5px) !important;
		margin-top: 2.5rem !important;
		margin-left: .9375rem !important
	}

	.p-service__cards__col:first-child,
	.p-service__cards__col:nth-child(4n+4) {
		margin-left: .9375rem !important
	}

	.p-service__cards__col:nth-child(-n+2) {
		margin-top: 1.25rem !important
	}

	.p-service__cards__col:nth-child(odd) {
		margin-left: 0 !important
	}
}
/* /detail.html default */

/* detail.html */
.p-service-detail .l-breadcrumbs {
  margin-bottom: 8.125rem;
}

.p-service-detail .c-heading-01 {
  font-size: 1.25rem;
}

.p-service-detail .u-wrap--small {
  padding: 0 1.25rem;
}

.p-service-detail__contents {
  max-width: 53.75rem;
  margin: 0 auto;
}

.p-service-detail__mv {
  margin-bottom: 3.125rem;
}

.p-service-detail__desc {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
  color: #333;
}

.p-service-detail__desc .en {
  color: #909090;
}

.p-service-detail__desc:not(:first-child) {
  margin-top: 30px;
}

.p-service-detail__desc:last-of-type+* {
  margin-top: 70px;
}

.p-service-detail .p-service__item-url {
  padding: 26px 20px;
  width: 100%;
  margin: 0;
}

.p-service-detail__pic {
  text-align: center;
}
/* /detail.html */