@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*** グローバルナビ ***/
/* 文字 */
.c-gnav {
    font-weight: bold;
    font-size: 1.2em;
}

/* メニュー間隔
.c-gnav>.menu-item>a {
    padding: 0 1.2em;
} */

/*** グローバルナビ下余白 ***/
.c-gnav {
	padding-top:4px;/*上の余白*/
	padding-bottom:4px;/*下の余白*/
}

/* メインビジュアル */
/*画像を右半分に表示（PCのみ）
@media  (min-width: 960px) {
  .p-mainVisual__imgLayer.c-filterLayer__img {
      width: 50%;
      left: 50%;
  }
}*/

/*メインビジュアルとテキスト縦並びに（スマホのみ）
 * スマホのメインビジュアルの高さをautoにしてから 
@media  (max-width: 959px) {
  .p-mainVisual__slide {
      display: flex;
      flex-direction: column;
  }
  .p-mainVisual__textLayer {
      position: relative;
      justify-content: end;
      padding-bottom: 2em;
  }
  .c-filterLayer__img {
      position: relative;
      height: auto;
  }
}*/


/* *****************************
 * グローバルナビ
/* *****************************/

/*** リンク ***/
.c-gnav > li:hover > a, .c-gnav > .-current > a {
background: transparent;
	color: #faf9f6;
transition: all .25s;
}

/* *****************************
/* フッター
/* ******************************/

/*** 仕切りの縦線を消す ***/
.l-footer__nav li:first-child a,
.l-footer__nav li a {
    border-left: 0;
    border-right: 0;
}

/*** メニューリンク ***/
.l-footer__nav li:first-child a {
border-left: none;
}
.l-footer__nav a {
border: none;
}
.l-footer__nav a:hover {
color: #c75a72;
text-decoration: none;
transition: all .25s;
}

/* *****************************
/* 見出し
/* ******************************/

/*** 見出し1 ***/
.c-pageTitle {
  font-weight: normal;
  font-size: 2rem;
  line-height: 1.4;
  padding-top: 0.5em;
  padding-bottom: 1.2em;
  margin-bottom: 0.8em;
  position: relative;
  text-align: left;
  padding-left: 0; /* ← 左余白をなくす */
}
.c-pageTitle::before {
  content: '';
  background-color: #ff7caf;
  width: 2em;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 0; /* 左端に固定 */
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .c-pageTitle {
    font-size: 1.8rem;
    padding-bottom: 1.5em;
    margin-bottom: 1em;
    padding-left: 0;
  }
  .c-pageTitle::before {
    width: 1.6em;
    height: 2px;
    bottom: -6px;
    left: 0;
  }
}

/*** 記事中のh2見出し ***/
h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  color: var(--color_main);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}

/* 下に短い縦線 */
h2::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: currentColor;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.4rem;
    margin-bottom: 2.5em;
  }
  h2::before {
    height: 16px;
    bottom: -26px;
  }
}

/*** 記事中のh2見出し-緑 ***/
h2.ttlGreen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  color: #00ac98;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}

/* 下に短い縦線 */
h2.ttlGreen::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: currentColor;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  h2.ttlGreen {
    font-size: 1.4rem;
    margin-bottom: 2.5em;
  }
  h2.ttlGreen::before {
    height: 16px;
    bottom: -26px;
  }
}

/*** 記事中のh3見出し 
.post_content h3 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #ff7caf;
  font-weight: normal;
}

/* 吹き出しの三角部分 
.post_content h3::before {
  position: absolute;
  top: 100%;
  left: 24px;
  transform: translateX(0) skew(-25deg);
  height: 20px;
  width: 10px;
  border-left: 3px solid #ff7caf;
  background-color: #fdfbfa;
  content: "";
}

/* スマホ向け調整 
@media (max-width: 600px) {
  .post_content h3 {
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff7caf; /* ← ここを追加！ 
  }

  .post_content h3::before {
    height: 16px;
    width: 8px;
    border-left: 2px solid #ff7caf; /* 三角の線も細く 
  }
} */


/*** 記事中のh4見出し ***/
.post_content h4 {
   border-left: solid 3px var(--color_htag);
   font-weight: normal;
}

/* スマホ対応（600px以下） */
@media (min-width: 600px) {
    .post_content h4 {
		font-weight: normal;
    }
}
	
/*** 記事中のh5見出し ***/
.post_content h5 {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: normal;
  text-align: center;
  /*color: #ff5e9b;*/
}

/* 共通：＼／部分を直線で作る */
.post_content h5::before,
.post_content h5::after {
  content: '';
  position: absolute;
  top: 50%;
	width: 2px; /* 線の太さ */
  height: 24px; /* 線の長さ */
  background-color: #ff5e9b; /* ← 塗りつぶし（空洞にならない） */
  transform: translateY(-50%);
}

/* ＼：左側 */
.post_content h5::before {
  left: 0;
  transform: translateY(-50%) rotate(-30deg);
}

/* ／：右側 */
.post_content h5::after {
  right: 0;
  transform: translateY(-50%) rotate(30deg);
}

/* スマホ対応（600px以下） */
@media (max-width: 600px) {
  .post_content h5 {
    padding: 0.75rem 1.5rem;
  }

  .post_content h5::before,
  .post_content h5::after {
    height: 20px;
    width: 2px;
  }
}

	
/*** 記事下のh2見出し ***/
.c-secTitle{
/* カスタマイズコードを書く場所 */
}
	
/* 表罫線の色 */
:root {
 --color_border--table: #EBD9C8;
}

/* *****************************
/* メインビジュアル
/* *****************************/

/*** 共通（PC基準）***/
.mainVisual {
    position: relative;
    padding-bottom: 0;
}
.mainVisual__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}
.mainVisual__ttlBox {
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    text-align: left;
    font-size: 3rem;
}
.mainVisual__txtBox {
    font-weight: bold;
    line-height: 1.6;
    margin: 1.5rem 0 0 0;
    text-align: left;
    font-size: 1.5rem;
}
.mainVisual__imgBox {
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
    position: static;
}
.mainVisual__imgBox img {
    width: 100%;
    height: auto;
    display: block;
}

/*** タブレット（768px1024px）***/
@media (min-width: 768px) and (max-width: 1024px) {
    .mainVisual__ttlBox {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.35;
    }

    .mainVisual__txtBox {
        font-size: 1.3rem;
        margin-top: 1.2rem;
        line-height: 1.5;
    }

    .mainVisual__imgBox {
        max-width: 400px;
        margin: 1rem 0 0 0; /* 左揃え */
    }
}

/*** スマホ（767px）***/
@media (max-width: 767px) {
    .mainVisual {
        padding-bottom: 4rem; /* 画像はみ出し分の余白 */
    }
    .mainVisual__ttlBox {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
        text-align: left;
    }
    .mainVisual__txtBox {
        font-size: 1.2rem;
        margin-top: 1rem;
        line-height: 1.4;
        text-align: left;
    }
    .mainVisual__imgBox {
        position: relative;
        top: 72px; /* 画像を下にずらしてはみ出す */
        width: 80%;
        max-width: 100%;
        margin: 0 auto;
    }
}

.mainVisual__txtBox,.mainVisual__ttlBox {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}


/* *****************************
/* arkhe css
/* ******************************/

/** scProductOV01 
.arkp-scProductOV01 .ark-block-container {
    padding: 2rem 2rem;
}
.arkp-scProductOV01 .arkp-scProductOV01__message {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
.arkp-scProductOV01 .wp-block-image {
    font-size: 0;
    margin-top: 0 !important;
}
.arkp-scProductOV01 .wp-block-image img {
    width: 100%;
}**/

/** scUserReview04 **/
.arkp-scUserReview04 .arkp-scUserReview04__itemImgWrapper > img {
    width: 100%;
}
.arkp-scUserReview04 .arkp-scUserReview04__itemHead {
    padding-top: 0.75rem;
	padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}
.arkp-scUserReview04 .arkp-scUserReview04__itemTitle {
    font-size: 1rem;
}
.arkp-scUserReview04 .arkp-scUserReview04__itemMeta {
    font-size: .75rem;
    margin-top: .25rem !important;
}
.arkp-scUserReview04 .arkp-scUserReview04__itemTxt {
    font-size: .875rem;
}
/** gnRichClmn09 **/
.arkp-gnRichClmn09 {
    --arkp--img--width: 100%;
}
.arkp-gnRichClmn09 .ark-block-columns__inner {
    row-gap: 0;
}
.arkp-gnRichClmn09 .ark-block-column {
    display: flex;
    flex-direction: column;
    gap: 2rem 4rem;
    /* padding: 2rem 0; */
    border-top: 1px solid #eee;
}
.arkp-gnRichClmn09 .ark-block-column:last-of-type {
    border-bottom: 1px solid #eee;
}
.arkp-gnRichClmn09 .arkp-gnRichClmn09__content {
    justify-content: center;
}
.arkp-gnRichClmn09 .arkp-gnRichClmn09__content > p {
    font-size: .875rem;
}
.arkp-gnRichClmn09 .ark-block-heading__main {
    font-size: 1.5rem;
}
.arkp-gnRichClmn09 .wp-block-image {
    flex-shrink: 0;
    width: var(--arkp--img--width);
    margin-top: 0;
}
.arkp-gnRichClmn09 .wp-block-image img {
    width: 100%;
}

/* *****************************
/* 子犬ページ
/* ******************************/

/*** カード全体デザイン ***/
.puppy-list-card .p-postList__item {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
                0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: #FAF9F6;
    padding: clamp(1rem, 2vw, 2rem); /* 画面サイズに応じた余白 */
    margin: 12px;
    box-sizing: border-box;
}

/*** ホバー時の浮き上がり効果 ***/
.puppy-list-card .p-postList__item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
                0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/*** カードを2列に（スマホでは1列） ***/
.puppy-list-card .-type-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*** 各カード幅 ***/
.puppy-list-card .-type-card .p-postList__item {
    width: 47%;
}

/*** スマホ：1列に ***/
@media screen and (max-width: 768px) {
    .puppy-list-card .-type-card .p-postList__item {
        width: 100%;
    }
}

/*** サムネイルの上下左右余白（バランス良く） ***/
.puppy-list-card .p-postList__thumb {
    margin: clamp(0.8rem, 2vw, 1.5rem) 0 clamp(0.5rem, 1.5vw, 1rem);
    border-radius: 8px;
    overflow: hidden;
}

/*** サムネイル画像 ***/
.puppy-list-card .p-postList__thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}
@media (min-width: 960px) {
    .-type-card.-pc-col2 .p-postList__item {
        padding: 0.25em 1em;
    }
}

/* *****************************
/* 犬ページ共通
/* ******************************/

/*** 表罫線 ***/
.wp-block-table td, .wp-block-table th{
	border-color: #ccc;
}

/*** グリーン系のアコーディオンラッパー全体 ***/

/*** タイトル部分（開閉ボタン） ***/
.accordion-green .swell-block-accordion__title{
	background-color: #00ac98;
	color: #fff;
}

/*** アコーディオンの中身 ***/
.accordion-green .swell-block-accordion__body {
    border: 1px solid #00ac98;
	border-top: none;
}


/*** 紹介部全体の角に丸みをつける ***/
.kadomaru{
 background:#F8D9DE; /* 背景色pink */
 border-radius: 16px; /* 全体の丸み */
 /*border: 2px solid #f6e6e6;*/
 padding:2em; /* 余白をつける */
}

/*** 画像の角に丸みをつける ***
.kadomaru img{
 border-radius: 16px; /* 全体の丸み *
}
/* 子犬親犬画像内側に罫線 *
.uchi-line-p img {
    display: flex;/*テキストを真ん中にするためにflexを使用*
    justify-content: center;
    align-items: center;
    outline: 3px solid rgba(248, 217, 222, 0.4);/*outlineでドットの線を追加*
    outline-offset: -10px;/*outline-offsetの値を-10pxにして内側に調整*
}
.uchi-line-g img {
    display: flex;/*テキストを真ん中にするためにflexを使用*
    justify-content: center;
    align-items: center;
    outline: 3px solid rgba(200, 216, 195, 0.4);/*outlineでドットの線を追加*
    outline-offset: -10px;/*outline-offsetの値を-10pxにして内側に調整*
}
.oya-line-p {
    border: 1px solid #F8D9DE;
}
.oya-line-g {
    border: 1px solid #C8D8C3;
}*/


/* *****************************
/* 子犬を迎えるまでページ
/* ******************************/

/*** 接種説明部 ***/
.is-style-vk-group-top-bottom-border {
    border-top: solid 1px #ff9999;
	border-bottom: solid 1px #ff9999;
}

/*** step ***/
.swell-block-step {
    --swl-step_arrow_color: #ff9999/*#E3AAB4*/;
    counter-reset: step;
}


/* *****************************
/* お問い合わせページ
/* ******************************/
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}
.cf7__list dt {
  width: 35%;
  padding-top: 15px;
}
.cf7__list dd {
  width: 65%;
}

/*** 必須・任意 ***/
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}
.cf7__required {
  background: #BE1D1D;
}
.cf7__optional {
  background: #878D8E;
}

/*** input・textarea ***/
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  background: #F4F4F4;
}

/*** ドロップダウンメニュー ***/
.cf7__select {
  position: relative;
}
.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: '';
}
.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*** チェックボックス・ラジオボタン ***/
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/*** 縦並び（チェックボックス・ラジオボタン） ***/
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}
.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/*** マウスカーソル（チェックボックス・ラジオボタン） ***/
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/*** チェックボックス・ラジオボタン ***/
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*** チェックボックス ***/
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/*** ラジオボタン ***/
input[type="radio"] {
  border-radius: 50%;
}
input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}

/*** プレースホルダー ***/
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}
/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}
/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/*** 送信ボタン ***/
.cf7__button {
  padding-left: 72px;
  text-align: center;
}
input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #FF5E9B;
  color: #fff;
  transition: opacity .6s;
}
input[type="submit"]:hover {
  opacity: .6;
}

/*** ajax-loader ***/
.wpcf7-spinner {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }
  .cf7__list dd {
    width: 100%;
  }
  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }
  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }
  /* 送信ボタン */
	.cf7__button{
		padding-left: 0;
	}
	
	input[type="submit"] {
    width: 100%;
    height: 56px;
  }
}


/*******************************
 * ギャラリーページ * 
 ******************************/

/*** ギャラリー（最後の写真を拡大しない）***/
.wp-block-gallery.has-nested-images figure.wp-block-image {
    flex-grow: 0;
}
/*** ギャラリーホバー ***/
.album .wp-block-image img:hover {
    transform: translateY(-5px); /* ホバーで少し浮き上がる */
}

/*** ギャラリー全体の基本的な設定 ***/
.album .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px,35vw), 1fr));
    gap: 10px; /* 各写真の間に少し隙間を設けます */
}

/*** 個々の画像コンテナ（figure）の調整 ***/
.album .wp-block-gallery figure.wp-block-image {
    width: unset !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px; /* 全体を少し角丸にしたい場合 */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* ほんのり影をつけて立体感を出す */
}

/*** 画像（imgタグ）自体の調整 ***/
.album .wp-block-image img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1; /* 縦横比を維持 */
    object-fit: cover; /* 画像がコンテナに収まるように調整 */
    
    /* 画像のサイズに影響を与えない内側の透明な枠線 */
	outline: 2px solid rgba(255,255,255,0.5);/* 白（RGB 255,255,255）で透明度50% */
    outline-offset: -8px; /* 枠線を内側にずらす（マイナス値で内側へ） */
	border-radius: 16px; /* 画像自体を少し角丸にしたい場合 */
}

/*** SWELLのライトボックス拡大画像がスマホで横にはみ出さないように調整 ***/
@media screen and (max-width: 768px) {
.lum-lightbox img,
.lum-lightbox-image,
.lum-img {
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
}

/*** 追従バナー ***/
/* 835px以上の画面幅（タブレットの横向き、PCなど）でバナーを表示・配置する基本スタイル */
.follow-banner {
  position: fixed;
  top: 50%;
  right: 0; /* PCやiPad横向きでのデフォルトの位置 */
  transform: translateY(-50%);
  z-index: 20;
}

/* PCのタブレット表示での微調整や、iPad横向きで余白を調整したい場合のみ追加 */
@media screen and (min-width: 835px) and (max-width: 1024px) { /* iPad横向きなど、特定の範囲での調整 */
  .follow-banner {
    right: 1vw; /* 例えば、iPad横向きで少し余白を持たせる場合 */
  }
}

/* 以下はバナー内のaタグなどのスタイル */
.follow-banner a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: var(--color_main);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.5em 1em;
  border-radius: 10px 0 0 10px;
  transition: opacity 0.25s;
}

.follow-banner a:hover {
  opacity: 0.7;
}

.follow-banner .swl-inline-icon::after {
  left: 50%;
  transform: translateX(-50%);
}

/* スマホおよびタブレットの縦向きでバナーを非表示にする */
@media screen and (max-width: 834px) {
  .follow-banner {
    display: none;
  }
}

/*** お問い合わせ電話 ***/
.tetTel{
	line-height: 0.9;
}
/* 改行しない */
.tetTel{
  white-space : nowrap;
}

/* google captcha */
.grecaptcha-badge { visibility: hidden; }