@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================================
  切り替え用
===============================================*/
html {
  font-size: clamp(8px, 2.2222222222vw, 10px);
}

.sp-none {
  display: none !important;
}

.com-table:not(.com-table--noblock) table,
.com-table:not(.com-table--noblock) table tbody,
.com-table:not(.com-table--noblock) table th,
.com-table:not(.com-table--noblock) table tr,
.com-table:not(.com-table--noblock) table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
/*===============================================
  詳細ページ前後
===============================================*/
/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
}

/*===============================================
  header
===============================================*/
#header:has(.header__logo--oth) {
  background: var(--pattern-bg-beige);
  background-position: left bottom;
}
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 8rem;
  position: relative;
  z-index: 5;
}
#header .header__inner--ent {
  justify-content: center;
  flex-direction: column;
  row-gap: 1.5rem;
  height: 15rem;
}
#header .header__logo--oth img {
  height: 4rem;
}
#header .header__logo--ent {
  position: relative;
  z-index: 0;
}
#header .header__logo--ent::before {
  content: "";
  width: 36rem;
  aspect-ratio: 360/36;
  background: url(../img/entrance/flag-l.png) no-repeat left top/contain, url(../img/entrance/flag-r.png) no-repeat right top/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.5rem;
  z-index: -2;
}
#header .header__logo--ent img {
  height: 4rem;
  aspect-ratio: 188/40;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
#header .header__memo {
  font-size: var(--font-size-xs);
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-base);
  margin-block: calc((1em - 1lh) / 2);
  position: relative;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding-top: 7.2rem;
  padding-bottom: 1.2rem;
}
#footer .footer__other {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
  padding-inline: 5%;
}
#footer .footer__logo {
  text-align: center;
}
#footer .footer__logo img {
  height: 4.5rem;
  aspect-ratio: 214/45;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
}
#footer .footer__ig {
  width: max(30px, 4rem);
}
#footer .footer__link {
  width: 24rem;
  height: 6rem;
  border-radius: 100vh;
  margin: 0 auto 5rem;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  padding-top: 5rem;
}
.footer-nav:has(.footer__link) {
  padding-top: 3rem;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-text);
  padding-block: 1px;
}
.footer-nav__item {
  background: color-mix(in srgb, var(--color-baby) 20%, var(--color-white));
}
.footer-nav__item:first-of-type:nth-last-of-type(2n + 1) {
  grid-column: span 2;
}
.footer-nav__link {
  line-height: 1.5;
  padding: 2rem 1em;
}

/*コピーライト
-----------------------------*/
.copy {
  padding-block: 2rem;
}
/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  aspect-ratio: 1;
  background: #f7f5e6;
  box-shadow: 0 0 0 0.3rem color-mix(in srgb, var(--color-white) 24%, var(--color-text)) inset;
  right: 1rem;
  bottom: 1rem;
}
#pagetop span {
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--font-family-craft);
  font-weight: var(--font-weight-regular);
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-right: 0.04em;
}
#pagetop::before {
  width: 120%;
  filter: drop-shadow(0 0 0.15rem #fff) drop-shadow(0 0 0.15rem #fff) drop-shadow(0 0 0.15rem #fff);
}

/*===============================================
  visual
===============================================*/
/*共通
-----------------------------*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: 128.6667vw;
  background: url(../img/visual/mv_bg-sp.png) no-repeat center/contain;
  padding-top: 12.8vw;
}
.visual__main::before {
  background: url(../img/visual/mv_img-sp.png) no-repeat center/contain;
  inset: 0;
}
.visual__main::after {
  content: "";
  width: 22.667vw;
  aspect-ratio: 1;
  background: url(../img/visual/mv_deco.png) no-repeat right top/contain;
  position: absolute;
  right: 15.6vw;
  top: -5.6vw;
  z-index: -1;
}
.visual__catch--main {
  width: 85.3334vw;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  padding-bottom: 1.2rem;
}
.visual__catch--sub {
  width: calc(100% - 3rem);
  min-width: 310px;
  height: 24rem;
  border-radius: 0.6rem;
  outline-width: 0.6rem;
  outline-offset: -0.6rem;
}
.visual__catch--sub::after {
  width: calc(100% + 2rem);
  height: 1.2rem;
}
.visual__catch--sub img {
  max-width: auto;
  height: min(4rem, 8vw);
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-block: 1.5rem;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb + .section {
  padding-top: 10rem;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: 8rem 0;
}
.section:has(+ .com-contact) {
  padding-bottom: 12rem;
}
.section:first-of-type:not(:has(+ .com-contact))::after, .section--bg::before, .section--bg::after {
  width: 78rem;
  height: 2.4rem;
}

.inbox {
  width: max(90%, 100% - 4rem);
}

/*電話番号
-----------------------------*/
/*ボタン
-----------------------------*/
.com-btn {
  width: 36rem;
  height: 7rem;
  font-size: var(--font-size-h6);
  margin-inline: auto;
}
.com-btn--mail {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.com-btn--mail::before {
  width: 3.6rem;
  flex-shrink: 0;
}
.com-btn--ig {
  -moz-column-gap: max(15px, 2rem);
       column-gap: max(15px, 2rem);
}
.com-btn--ig::before {
  width: max(30px, 4rem);
  flex-shrink: 0;
}

/*テーブル
-----------------------------*/
.com-table {
  line-height: 1.6;
}
.com-table--noblock tr th {
  width: 32%;
}
.com-table--noblock tr th,
.com-table--noblock tr td {
  vertical-align: middle;
  padding: 1.2em 0.5em;
}
.com-table:not(.com-table--noblock) tr th,
.com-table:not(.com-table--noblock) tr td {
  padding: 1.2em 1em;
}

/*テキストボックス
-----------------------------*/
.com-text br:not(.pc-none) {
  display: none;
}

/*お知らせ
-----------------------------*/
/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  row-gap: 1.5rem;
  margin-bottom: 3.6rem;
}
.com-title01 .waa::before {
  width: calc(100% + 8rem);
  max-width: 98vw;
  height: 3rem;
  bottom: calc((1lh - 1em) / 2);
}
.com-title01.deco {
  row-gap: 2rem;
}
.com-title01.deco::before {
  height: 4rem;
}

/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
.com-title03--ribbon {
  font-size: var(--font-size-h4);
  padding-block: 1.2rem;
  margin-bottom: 2rem;
}
.com-title03--ribbon > span {
  line-height: 1.38462;
}
.com-title03--ribbon::before {
  height: 6rem;
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding: 5rem 0;
}
.com-contact::before {
  width: 78rem;
  height: 6rem;
  top: -4rem;
}
.com-contact::after {
  display: none;
}
.com-contact__title {
  row-gap: 2.4rem;
  margin-bottom: 4.5rem;
}
.com-contact__title .sub {
  font-size: var(--font-size-h5);
  line-height: 1.5;
  padding: 0.6rem 1rem;
}
.com-contact__title .sub::before {
  aspect-ratio: 831/66;
  height: calc(100% + 1rem);
}
.com-contact__text {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 0;
}
.com-contact__text::before {
  content: "";
  width: calc(100% - 1.2rem);
  height: calc(100% + 3rem);
  background: url(../img/common/contact_deco-lt.png) no-repeat left top, url(../img/common/contact_deco-rb.png) no-repeat right bottom;
  background-size: 8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  z-index: -2;
}
.com-contact__text p {
  margin-right: -0.02em;
}
.com-contact__text br {
  display: none;
}
.com-contact__btns {
  padding-top: 4rem;
}
.com-contact__btn {
  width: 56rem;
  text-align: left;
  height: auto;
  min-height: max(60px, 8rem);
  padding: 1.5rem 4rem 1.5rem 3rem;
  margin-bottom: 2rem;
}
.com-contact__btn:last-of-type {
  margin-bottom: 0;
}
.com-contact__btn > span {
  word-break: keep-all;
}

/*ページ内リンク
-----------------------------*/
.com-links__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 4rem;
}
.com-links__inner > * {
  width: 100%;
}
.com-links__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
.com-links__item {
  width: 100%;
}

/*===============================================
  エントランスページ
===============================================*/
.entrance {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 20.2rem);
  gap: 3rem;
  padding-inline: 2rem;
}
.entrance__item {
  padding: 1.5rem 1.5rem 3rem;
}
.entrance__item::before {
  height: clamp(26px, 2.03125vw, 39px);
  top: clamp(-23px, -1.1979166667vw, -16px);
}
.entrance__item--hidden::after {
  font-size: clamp(3.2rem, 2.5vw, 4.8rem);
}
.entrance__item--home .entrance__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entrance__item--home .entrance__title {
  row-gap: 1em;
  padding-top: 1.5em;
}
.entrance__item--home .entrance__title .main {
  font-size: 2.25em;
}
.entrance__item--home .entrance__title .sub {
  font-size: 1em;
}
.entrance__image img {
  aspect-ratio: 3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entrance__image::after {
  width: 115%;
  padding-top: 30%;
  bottom: -10%;
}
.entrance__title {
  flex-direction: column;
  font-size: var(--font-size-base);
  row-gap: 0.75em;
  padding-top: 1em;
}
.entrance__title .main {
  font-size: 2em;
}
.entrance__title .sub {
  font-size: 0.875em;
}

/*===============================================
  トップページ
===============================================*/
/*先住猫の性格からおすすめの猫種が分かる！
おすすめ猫種診断
-----------------------------*/
.top-bnr--line {
  padding-top: 10rem;
}
.top-bnr--line::before {
  height: 2rem;
}
.top-bnr__box {
  padding: 3rem 2.4rem 30px;
  border-radius: 1rem;
  box-shadow: 0 0 0 0.2rem var(--color-pink) inset;
}
.top-bnr__box--style01::before {
  width: 91.5493%;
  height: 6.5rem;
  left: calc(50% + 1rem);
  bottom: -0.5rem;
}
.top-bnr__box--style02::before {
  width: 38rem;
  max-width: 89.296%;
  height: 5.8rem;
  top: -2.8rem;
}
.top-bnr__box--style02::after {
  width: 88.733%;
  min-width: 36rem;
  max-width: 42rem;
  height: 9.8rem;
  bottom: -1.3rem;
  left: calc(50% - 0.8rem);
}
.top-bnr__title {
  row-gap: 2.3rem;
  margin-bottom: 2.3rem;
}
.top-bnr__title .sub {
  padding: 1.3rem 2.2rem;
  border-radius: 100vh;
}
.top-bnr__title .sub img {
  height: 1.8rem;
}
.top-bnr__title .sub::after {
  width: 2.6rem;
  aspect-ratio: 24/10;
}
.top-bnr__title .main img {
  height: 3.4rem;
}
.top-bnr__title .main::after {
  height: 129.412%;
  right: -5.2rem;
  bottom: 0;
}
.top-bnr__btn {
  width: 20rem;
  height: 50px;
}
.top-bnr__btn::after {
  width: 1.5rem;
  right: 1.4rem;
}

/*2匹目のお迎えをお考えの方へ
こんなお悩みありませんか？
-----------------------------*/
.top-worries {
  padding: 9rem 0 6rem;
}
.top-worries::before {
  content: "";
  width: 78rem;
  aspect-ratio: 1228/660;
  background: url(../img/index/bg_worries.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  z-index: 0;
}
.top-worries::after {
  width: 92%;
  height: 10rem;
  top: -3rem;
  z-index: 2;
}
.top-worries__title {
  font-size: 2.8rem;
  margin-bottom: 5rem;
}
.top-worries__title > span:last-of-type::after {
  width: calc(100% + 8rem);
  max-width: 105vw;
  height: 5rem;
  bottom: calc(-1rem + (1lh - 1em) / 2);
}
.top-worries__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-bottom: 2rem;
}
.top-worries__item:last-of-type {
  margin-bottom: 0;
}
.top-worries__item:nth-of-type(2n + 1) .top-worries__image {
  margin-left: -3rem;
}
.top-worries__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.top-worries__item:nth-of-type(2n) .top-worries__image {
  margin-right: -3rem;
}
.top-worries__item:nth-of-type(2n) .top-worries__image img {
  -o-object-position: left bottom;
     object-position: left bottom;
}
.top-worries__balloon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(100% - 8rem);
  font-size: var(--font-size-h6);
  line-height: 1.33334;
  letter-spacing: -0.04em;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
}
.top-worries__balloon::before {
  border-radius: 2rem;
}
.top-worries__balloon p {
  margin-right: 0.04em;
  word-break: keep-all;
}
.top-worries__image {
  position: relative;
  z-index: 3;
}
.top-worries__image img {
  height: 10rem;
  aspect-ratio: 11/10;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}

/*お客様評価全国1位※
KittysRiyがお手伝いします!
-----------------------------*/
.top-about {
  padding-top: 10rem;
}
.top-about::before {
  content: "";
  -webkit-mask: url(../img/index/frame_about-top.png) no-repeat center top/78rem 4rem, linear-gradient(to bottom, transparent 4rem, #fff 4rem);
          mask: url(../img/index/frame_about-top.png) no-repeat center top/78rem 4rem, linear-gradient(to bottom, transparent 4rem, #fff 4rem);
  background: url(../img/index/bg_about-top.png) no-repeat center top/100rem;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.top-about::after {
  content: "";
  width: 92%;
  height: 8rem;
  background: url(../img/common/cat01.png) no-repeat right bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3rem;
  z-index: 1;
}
.top-about__title {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.top-about__title > span {
  line-height: 1.4;
}
.top-about__title .b {
  font-size: 1.28em;
  line-height: 1.1875;
}
.top-about__title::before {
  width: 32rem;
  height: 3.6rem;
  top: -4.5rem;
}
.top-about__memo {
  text-align: center;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  word-break: keep-all;
}
.top-about__inner {
  padding-top: 5rem;
}
.top-about__image {
  max-width: 48rem;
  margin: 0 auto 3.2rem;
  position: relative;
  z-index: 0;
}
.top-about__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about__image::before {
  content: "";
  width: calc(100% + 6rem);
  height: calc(100% + 2rem);
  background: url(../img/common/deco_bg01.png) no-repeat left bottom, url(../img/common/deco_bg02.png) no-repeat right top;
  background-size: 24%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.top-about__image img {
  -webkit-mask: url(../img/common/frame_img01.svg) no-repeat center/100% 100%;
          mask: url(../img/common/frame_img01.svg) no-repeat center/100% 100%;
}
.top-about__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding-top: 5rem;
}

/*現在販売中の子猫一覧
-----------------------------*/
.top-list::before {
  width: 92%;
  min-width: 40rem;
  height: 16rem;
  top: 1.6rem;
}
.top-list__title {
  margin-bottom: 5rem;
}
.top-list__items {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}
.top-list__item {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 375px) {
  .top-list__item {
    width: 100%;
  }
}
.top-list__image {
  padding: calc(1rem - 1px) calc(1rem - 1px) 0;
}
.top-list__image img {
  aspect-ratio: 1.25;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-list__heading {
  line-height: 1.5;
  padding: 1.3rem 1em;
}
.top-list__data {
  font-size: max(14px, 1.6rem);
  line-height: 1.5;
  padding: 2rem calc(1.5rem - 1px);
}
.top-list__btn {
  margin-top: 4rem;
}

/*リンクセクション
-----------------------------*/
.top-links {
  padding-top: 10rem;
}
.top-links__items {
  max-width: 50rem;
  margin-inline: auto;
}
.top-links__item {
  display: grid;
  grid-template-columns: 8rem 1fr;
  align-items: flex-end;
  gap: 2.4rem 1.5rem;
  padding: 2.4rem 2rem 4rem;
  background: var(--color-white);
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.top-links__item:last-of-type {
  margin-bottom: 0;
}
.top-links__item::after {
  width: 4rem;
  right: 0.5rem;
  bottom: 0.5rem;
}
.top-links__image img {
  aspect-ratio: 1.1764705882;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-links__heading {
  align-items: flex-start;
  text-align: left;
  padding-bottom: 1.3rem;
  margin-bottom: 0;
}
.top-links__body {
  grid-column: span 2;
}

/*お知らせ
-----------------------------*/
.top-news:has(+ .com-contact) {
  padding-bottom: 12rem;
}
.top-news__title {
  margin-bottom: 4.5rem;
}
.top-news__btn {
  margin-top: 4rem;
}

/*===============================================
  KittysRiyについて
===============================================*/
/*信頼と実績
-----------------------------*/
.about-achievement:has(+ .about-voice) {
  padding-bottom: 2rem;
}
.about-achievement__inner::after {
  width: 36rem;
  height: 12rem;
  background-position: left bottom;
  top: -12rem;
  z-index: 3;
}
.about-achievement__image {
  width: 36rem;
  max-width: 100%;
  margin: 0 auto 3rem;
}
.about-achievement__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-achievement__image img {
  -webkit-mask: url(../img/common/frame_img01.svg) no-repeat center/100% 100%;
          mask: url(../img/common/frame_img01.svg) no-repeat center/100% 100%;
}
.about-achievement__image::before {
  width: calc(100% + 12rem);
  height: 10rem;
  top: -3rem;
}
.about-achievement__box {
  padding-top: 8rem;
}
.about-achievement__box::before {
  height: calc(100% + 8rem);
  aspect-ratio: 1172/674;
  top: -2rem;
}
.about-achievement__heading {
  margin-bottom: 3rem;
}
.about-achievement__heading::before {
  width: 36rem;
  height: 3.6rem;
  top: -2rem;
}
.about-achievement__heading > span::before {
  width: calc(100% + 12.5rem);
  height: 6.4rem;
  bottom: calc(-0.8rem + (1lh - 1em) / 2);
}
.about-achievement__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 1rem;
}
.about-achievement__item img {
  height: 160px;
}

/*ご好評の声を多数いただいています！
-----------------------------*/
.about-voice__title .b {
  font-size: 1.125em;
  line-height: 1;
}
.about-voice__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 2rem;
  padding: calc(3rem - 1px) calc(2rem - 1px) calc(4rem - 1px);
  margin-bottom: 2rem;
}
.about-voice__item:last-of-type {
  margin-bottom: 0;
}
.about-voice__item img {
  height: 2.2rem;
}
.about-voice__item br {
  display: none;
}
.about-voice__btn {
  margin-top: 4rem;
}

/*愛情を込めたブリーディング
-----------------------------*/
.about-breathing__thumb {
  width: 36rem;
  max-width: 100%;
  margin: 0 auto 3rem;
}
.about-breathing__thumb img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-breathing__thumb img {
  -webkit-mask: url(../img/common/frame_img02.svg) no-repeat center/100% 100%;
          mask: url(../img/common/frame_img02.svg) no-repeat center/100% 100%;
}
.about-breathing__thumb::after {
  width: 96vw;
  max-width: 56rem;
  height: 10rem;
  background-position: right bottom;
  left: 50%;
  bottom: calc(100% + 2rem);
  transform: translateX(-50%);
}
.about-breathing__box {
  padding-top: 6.4rem;
}
.about-breathing__box::after {
  width: 118rem;
  height: 18rem;
  bottom: -3rem;
}
.about-breathing__images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.about-breathing__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*安心のサポート体制
-----------------------------*/
.about-support__image {
  width: 36rem;
  max-width: 100%;
  margin: 5rem auto 0;
}
.about-support__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-support__image img {
  -webkit-mask: url(../img/common/frame_img02.svg) no-repeat center/100% 100%;
          mask: url(../img/common/frame_img02.svg) no-repeat center/100% 100%;
}
.about-support__image::after {
  width: calc(100% + 8rem);
  height: 12rem;
  bottom: -1.8rem;
}

/*===============================================
  2匹目を迎える方へ
===============================================*/
/*2匹目を迎える際の注意点
-----------------------------*/
.guide-note::after {
  width: 92%;
  height: 9.6rem;
  bottom: -4rem;
}
.guide-note__title {
  font-size: 3rem;
}
.guide-note__title > span {
  line-height: 1.33334;
}
.guide-note__title .mid {
  font-size: 1.0666667em;
  line-height: 1.25;
}
.guide-note__title .b {
  font-size: 1.2em;
  line-height: 1.11112;
}
.guide-note__list {
  padding-top: 6rem;
}
.guide-note__item {
  margin-bottom: 5rem;
}
.guide-note__item:last-of-type {
  margin-bottom: 0;
}
.guide-note__item::before {
  aspect-ratio: 58/48;
  height: 4.8rem;
  font-size: 2.4rem;
  padding-top: 0.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
}
.guide-note__heading {
  padding: 5rem 2rem 3rem;
}
.guide-note__heading > span {
  word-break: keep-all;
}
.guide-note__body {
  padding: calc(3rem + (1em - 1lh) / 2) 2rem;
}

/*先住猫との顔合わせのポイント
-----------------------------*/
.guide-point__title {
  font-size: 3rem;
}
.guide-point__title > span {
  line-height: 1.33334;
}
.guide-point__title .mid {
  font-size: 1.0666667em;
  line-height: 1.25;
}
.guide-point__title .b {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1.11112;
}
.guide-point__list {
  padding-top: 6rem;
}
.guide-point__list::before {
  width: 92vw;
  height: 10rem;
  bottom: -12rem;
}
.guide-point__item {
  margin-bottom: 6rem;
}
.guide-point__item:last-of-type {
  margin-bottom: 0;
}
.guide-point__image {
  margin-bottom: 3rem;
}
.guide-point__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guide-point__num {
  justify-content: center;
  margin-bottom: 2rem;
}
.guide-point__num img {
  width: 6.8rem;
}
.guide-point__num::after {
  aspect-ratio: 58/48;
  height: 4.8rem;
  font-size: 2.4rem;
  padding-top: 0.8rem;
}
.guide-point__heading {
  align-items: center;
}

/*多頭飼いおすすめグッズ3選
-----------------------------*/
.guide-goods__title {
  font-size: 3rem;
  white-space: nowrap;
}
.guide-goods__title > span {
  line-height: 1.33334;
}
.guide-goods__title .min {
  font-size: 0.8em;
}
.guide-goods__title .mid {
  font-size: 1.0666667em;
  line-height: 1.25;
}
.guide-goods__list {
  padding-top: 6rem;
}
.guide-goods__heading {
  padding: 4rem 2rem;
}
.guide-goods__heading::before {
  width: 12.5rem;
  left: -1rem;
  bottom: -2.5rem;
}
.guide-goods__heading::after {
  font-size: 3.6rem;
  left: 1.2rem;
  bottom: 1.2rem;
}
.guide-goods__body {
  padding: calc(3rem - 1px + (1em - 1lh) / 2) calc(2rem - 1px);
}

/*===============================================
  子猫情報
===============================================*/
/*一覧
-----------------------------*/
.info-list__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
.info-list__link {
  width: calc(50% - 0.5rem);
}
.info-list__items {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 4rem;
}
.info-list__item {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 375px) {
  .info-list__item {
    width: 100%;
  }
}
.info-list__image {
  padding: calc(1rem - 1px) calc(1rem - 1px) 0;
}
.info-list__image img {
  aspect-ratio: 1.25;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-list__heading {
  line-height: 1.5;
  padding: 1.3rem 1em;
}
.info-list__data {
  font-size: max(14px, 1.6rem);
  line-height: 1.5;
  padding: 2rem calc(1.5rem - 1px);
}

/*詳細
-----------------------------*/
.info-detail__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.info-detail__image--main {
  aspect-ratio: 3/2;
  margin-bottom: 1rem;
}

/*===============================================
  おすすめ猫種診断
===============================================*/
/*おすすめ猫種診断
-----------------------------*/
/*===============================================
  お迎えの流れ
===============================================*/
/*お迎えの流れ
-----------------------------*/
.flow-list__item:last-of-type::before {
  content: "";
  width: 8.4rem;
  aspect-ratio: 6/5;
  background: url(../img/flow/deco_flow.png) no-repeat center/contain;
  position: absolute;
  right: 1rem;
  bottom: -7.2rem;
  z-index: -2;
}
.flow-list__item::after {
  height: 8rem;
  margin-block: 2rem;
}
.flow-list__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-list__inner {
  padding-top: 3rem;
}
.flow-list__num {
  justify-content: center;
  margin-bottom: 2rem;
}
.flow-list__num img {
  width: 6.8rem;
}
.flow-list__num::after {
  aspect-ratio: 58/48;
  height: 4.8rem;
  font-size: 2.4rem;
  padding-top: 0.8rem;
}
.flow-list__heading {
  align-items: center;
}
.flow-list__box {
  padding-top: 8rem;
}
.flow-list__box::before {
  display: none;
}
.flow-list__subttl {
  font-size: 2.4rem;
}
.flow-list__subttl > span {
  line-height: 1.66667;
}
.flow-list__subttl .waa::before {
  bottom: calc(0.2rem + (1lh - 1em) / 2);
}
.flow-list__subttl .b {
  font-size: 3rem;
  line-height: 1;
}
.flow-list__type {
  margin-bottom: 4rem;
}
.flow-list__type:last-of-type {
  margin-bottom: 0;
}
.flow-list__thumb {
  width: 30rem;
  margin: 0 auto -3rem;
}
.flow-list__thumb img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-list__value {
  text-align: center;
  font-size: var(--font-size-h6);
  line-height: 1.77778;
  word-break: keep-all;
}
.flow-list__btns {
  padding-top: 4rem;
}
.flow-list__btn {
  width: 56rem;
  text-align: left;
  height: auto;
  min-height: max(60px, 8rem);
  padding: 1.5rem 4rem 1.5rem 3rem;
  margin-bottom: 2rem;
}
.flow-list__btn:last-of-type {
  margin-bottom: 0;
}
.flow-list__btn > span {
  word-break: keep-all;
}
.flow-list__method {
  padding-top: 3rem;
}
.flow-list__caption {
  padding: 1.25rem 1rem;
}
.flow-list__group dt {
  padding-top: 3rem;
  margin-bottom: 1.5rem;
}

/*お引渡し後のアフターサポート
-----------------------------*/
.flow-support {
  padding-bottom: 12rem;
}
.flow-support:has(+ .com-contact) {
  padding-bottom: 15rem;
}
.flow-support__inner::before {
  content: "";
  width: 98vw;
  height: calc(100% - 2rem);
  background: url(../img/common/deco_bg02.png) no-repeat left top/12rem, url(../img/common/deco_bg01.png) no-repeat right bottom/10rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 4rem;
  transform: translateX(-50%);
  z-index: -2;
}
.flow-support__inner::after {
  content: "";
  aspect-ratio: 2/1;
  height: 10rem;
  background: url(../img/common/cat04.png) no-repeat left bottom/auto 100%, url(../img/common/deco_paws.png) no-repeat right bottom 1rem/8rem;
  position: absolute;
  left: -1rem;
  bottom: -10rem;
  z-index: -1;
}
.flow-support__title {
  font-size: min(3.2rem, 6.2223vw);
}
.flow-support__title > span {
  line-height: 1.5;
}
.flow-support__title .b {
  font-size: 1.1428572em;
}
.flow-support__text {
  padding-inline: 1em;
}

/*===============================================
  ブリーダーご挨拶
===============================================*/
/*性格と愛らしさを大切にしたブリーディングを
-----------------------------*/
.breeder-greeting__title {
  font-size: min(3.2rem, 7.1112vw);
}
.breeder-greeting__inner {
  padding: 3.6rem 2rem 3rem;
}
.breeder-greeting__inner::before {
  width: 14rem;
  aspect-ratio: 2/1;
  background-size: 7rem, 5rem;
  background-position: left bottom, right bottom 1rem;
  left: 2rem;
  bottom: 1rem;
}
.breeder-greeting__name {
  margin: 3rem 0 0 auto;
}
.breeder-greeting__name dt {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}
.breeder-greeting__name dd {
  font-size: var(--font-size-h5);
}

/*基本情報
-----------------------------*/
/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
/* お知らせ 詳細
-----------------------------*/
.news-detail__title {
  font-size: var(--font-size-h5);
}
.news-detail__title > span {
  line-height: var(--line-height-h5);
}
.news-detail__box {
  padding: 3rem 2rem;
}

/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form .contact-submits-wrap > * {
  margin: 0 auto 2rem;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  padding: 3rem 2rem;
}
.privacy-policy__heading {
  font-size: var(--font-size-h5);
}
.privacy-policy__heading > span {
  line-height: var(--line-height-h5);
}

/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__item {
  margin-bottom: 1.2rem;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}

/*===============================================
  404エラー
===============================================*/