/* ===== リセット ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* contactページの不要な投稿・ウィジェットを非表示 */
body.page-template-contact-page #right-sidebar,
body.page-template-contact-page .sidebar,
body.page-template-contact-page .widget-area,
body.page-template-contact-page .footer-widgets,
body.page-template-contact-page .inside-footer-widgets {
  display: none !important;
}

/* contactページを1カラムにする */
body.page-template-contact-page .site-content,
body.page-template-contact-page .content-area,
body.page-template-contact-page #primary,
body.page-template-contact-page main {
  width: 100% !important;
  max-width: 100% !important;
}
/* ===== body ===== */
body {
    margin: 0;
    background: #ffffff!important;
    color: #333;
    font-family: "Zen Maru Gothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}
.center{
	text-align : center;
}
.color-pink{
	color : #cc0000;
}
.font-120{
	font-size : 120%;
}
.marker-yellow{
	background : #faee9f;
}
.marker-pink{
	background : #f9cfd8;
}

/* ===== 共通表示制御 ===== */
.pc {
    display: block;
}

.sp {
    display: none;
}

/* 改行制御 */
.br-pc {
    display: block;
}

.br-sp {
    display: none;
}

/* ===== PC / SP 切替（これが本体） ===== */

/* デフォルト */
.pc {
    display: block;
}
.sp {
    display: none;
}

/* スマホ */
@media (max-width: 899px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}

/* PC強制 */
@media (min-width: 900px) {
    .pc {
        display: block !important;
    }
    .sp {
        display: none !important;
    }
}

/* ===== h1バー ===== */
.h1-text {
    height: 40px;
    line-height: 40px;
    background: #3cb371;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
}

/* ===== FV ===== */
.fv {
    position: relative;
    text-align: center;
}

.fv-bg {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    height: auto;
}

.fv.show .fv-bg {
    opacity: 1;
}

.fv-logo {
    position: absolute;
    z-index: 10;
}

/* テキスト */
.fv-inner {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1080px;
    padding: 0 20px;
}

/* ===== キャッチ ===== */
h2.fv-main {
    margin: 0 0 18px;
    font-size: 0;
    font-family: "M PLUS Rounded 1c", sans-serif !important;
}

.fv-line1,
.fv-line2 {
    display: block;
    font-weight: 700;
}

.fv-line2 {
    margin-top: 8px;
}

.fv-small {
    font-size: 70%;
}

/* マーカー */
.marker {
    background: linear-gradient(transparent 62%, #fff176 62%);
}

/* サブ */
.fv-sub {
    font-size: 20px;
    margin: 0 0 22px;
    font-weight: 600;
    line-height: 1.8;
    font-family: "M PLUS Rounded 1c", sans-serif !important;
}

.fv-big {
    display: inline-block;
}

/* ボタン */
.fv-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #f96f5a;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
}

/* ===== スクロール ===== */
.fade {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s ease;
}

.fade.show {
    opacity: 1;
    transform: none;
}

/* ===== セクション共通 ===== */
/* ===== 見出しフォント強制 ===== */
h2,
.section-title {
  font-family: "M PLUS Rounded 1c", sans-serif !important;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title-white {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

/* ===== お困り ===== */
.worry-section {
    max-width: 1080px;
    margin: 50px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.worry-title {
    font-size: 34px;
    margin-bottom: 40px;
    text-decoration: underline wavy #e07a7a;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    line-height: 55px;
}

/* SP基準（2列） */
.worry-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
}

.worry-item img {
    width: 50%;
    margin: 0 auto;
    display: block;
}

.worry-item p {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
}

/* ===== 更新簡単 ===== */
.easy-manage-section {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;

    background-color: #f8fdff;

    background-image:
        linear-gradient(rgba(61,157,182,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,157,182,0.03) 1px, transparent 1px);

    background-size: 12px 12px;
}

.easy-manage-title {
    font-size: 34px;
    margin-bottom: 25px;
    text-decoration: underline wavy #3d9db6;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    line-height: 55px;
}
.easy-manage-title span{
	font-size : 24px;
}

.easy-manage-text {
    max-width: 700px;
    margin: 0 auto 45px;
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.easy-manage-list {
  max-width : 780px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  margin : 0 auto 30px;
}

.easy-manage-item img {
    width: 40%;
    margin: 0 auto;
    display: block;
}

.easy-manage-item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
}

/* ===== 制作事例 ===== */
.works-section {
  background: #fffef8;
  padding: 60px 20px;
}

.section-lead {
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #555;
}
.section-lead-left {
  text-align: left;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}


.section-lead-white {
  text-align: center!important;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #fff;
}

/* 基本（PC基準：4列） */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)!important;
  gap: 26px;
  max-width : 1280px;
  margin : 0 auto;
}

.works-card {
  border-radius: 18px;
  padding: 0;
  text-align: center;
}

.works-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}

.works-card p {
  margin: 15px 0 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

/* フワッと表示（共通なのでここ） */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
	width : 100%;
	margin : 0px auto;
}

/* 遅延 */
.works-card:nth-child(1) { transition-delay: 0.1s; }
.works-card:nth-child(2) { transition-delay: 0.2s; }
.works-card:nth-child(3) { transition-delay: 0.3s; }
.works-card:nth-child(4) { transition-delay: 0.4s; }
.works-card:nth-child(5) { transition-delay: 0.5s; }
.works-card:nth-child(6) { transition-delay: 0.6s; }
.works-card:nth-child(7) { transition-delay: 0.7s; }
.works-card:nth-child(8) { transition-delay: 0.8s; }

/* ===== お客様の声 ===== */

.pet-voice {
  padding: 60px 20px;
  background: #fffaf2;
  text-align: center;
}

.pet-voice-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.pet-voice-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pet-voice-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}

/* スライダー */
.pet-voice-slider {
  max-width: 600px!important;
  margin: 0 auto;
  position: relative;
}

/* 縦伸び防止 */
.pet-voice-slider .slick-track {
  display: flex !important;
  align-items: flex-start !important;
}

.pet-voice-slider .slick-slide,
.pet-voice-slider .slick-list {
  height: auto !important;
}

/* カード */
.pet-voice-card {
  background: #fff;
  padding: 15px 20px;
  margin: 0 15px;
  border: 2px solid #f5c56a;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
}

/* 画像 */
.pet-voice-card img {
  display: block;
  margin: 0 auto 6px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* 名前 */
.pet-voice-card .name {
  font-weight: bold;
  margin: 4px 0;
}

/* 本文 */
.pet-voice-card .text {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  margin: 15px 0 0;
}

/* ===== 矢印（共通） ===== */

.voice-prev,
.voice-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #f5c56a !important;
  border: none !important;
  cursor: pointer;
  z-index: 20;
  font-size: 0 !important;
}

/* PC位置（基本） */
.voice-prev {
  left: -50px;
}

.voice-next {
  right: -50px;
}

/* アイコン */
.voice-prev::before,
.voice-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.voice-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.voice-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* hover */
.voice-prev:hover,
.voice-next:hover {
  background: #f5c56a !important;
}

/* ===== 料金案内 ===== */
.pw-price {
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px 40px 20px;
}

/* ===== プラン横並び ===== */
.pw-price-wrap {
  display: flex;
  gap: 30px;
}

/* ===== プランカード ===== */
.pw-plan {
  flex: 1;
  background: #fff;
  border: 2px solid #3cb035;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

/* プレミアム（差なし） */
.pw-premium {
  border: 2px solid #e85c3a;
  box-shadow: none;
  transform: none;
}

/* ラベル */
.pw-label {
  font-size: 14px;
  color: #fff;
  background: #3cb035;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.premium-label {
  background: #e85c3a;
}

/* タイトル */
.pw-plan h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "Yu Gothic", sans-serif !important;
}

/* 価格 */
.pw-price-num {
  margin-bottom: 20px;
}

.pw-price-num span {
  font-size: 36px;
  font-weight: bold;
  color: #cc0000;
}

/* 説明 */
.pw-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* リスト */
.pw-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px 0;
  border-top : 2px dotted #555151;
  padding-top : 20px;
}

.pw-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

/* アイコン */
.pw-list i {
  color: #555151;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ===== 迷い解消 ===== */
.pw-guide {
  text-align: center;
  margin: 50px 0 20px;
  font-size: 15px;
  line-height: 1.8;
}

.pw-guide-ttl {
  font-size: 20px;
	color : #e07a7a;
}

.pw-guide-strong {
  margin-top: 10px;
  font-weight: bold;
}

/* ===== CTA ===== */
.pw-btn-main {
  display: block;
  max-width: 420px;
  margin: 30px auto 0;
  padding: 18px;
  background: #e07a7a;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(232,92,58,0.3);
  transition: 0.3s;
}

.pw-btn-main:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===== その他サービス ===== */
.pw-option {
  max-width: 640px;
  margin: 60px auto 20px;
  padding: 25px 20px;
  background: #fffef8;
}

.pw-option h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #3cb371;
}

.pw-option ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pw-option li {
  position: relative;
  padding: 12px 0 12px 22px;
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.pw-option li:last-child {
  border-bottom: none;
}

.pw-option li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: #3cb035;
}

/* ===== 下部2カラム ===== */
.pw-option-wrap {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

/* 既存調整 */
.pw-option {
  flex: 1;
  max-width: none;
  margin: 0;
}

/* スマホ */
@media (max-width: 899px) {

  .pw-option-wrap {
    flex-direction: column;
    gap: 20px;
  }

}

/**** CTA（完全固定版） ***********/
.pet-cta{
  background: #e07a7a;
  padding: 60px 20px;
}


/* 中央ボックス */
.pw-contact {
  max-width: 680px;
  width: 100%;
  margin: 30px auto;
  padding: 25px 20px;
  background: #f7f7f7;
  border-radius: 12px;

  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
}

/* ===== ボタン ===== */
.pw-contact-btns {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px; /* ← 下の余白はここで管理 */
}

.btn-line,
.btn-form {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 17px;
  color: #fff;
}

/* hover時も白固定 */
.btn-line:hover,
.btn-form:hover {
  color: #fff !important;
  text-decoration: none;
}

/* visited / active も念のため */
.btn-line:visited,
.btn-form:visited,
.btn-line:active,
.btn-form:active {
  color: #fff !important;
}

.btn-line { background: #3cb035; }
.btn-form { background: #e85c3a; }

/* ===== 電話 ===== */
.pw-contact-tel {
  text-align: center;
}

/* 上の小見出し（←ここを明示的に大きく） */
.pw-contact-tel .tel-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* 電話番号 */
.pw-contact-tel .tel-number {
  font-size: 26px;
  font-weight: bold;
  margin: 5px 0;
}

/* 下の時間（余白ゼロ固定） */
.pw-contact-tel .tel-time {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-top : 20px;
  margin-bottom : 0;
}

/* ===== ご依頼の流れ ===== */
.flow-section {
  max-width: 680px;
  margin: 50px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.flow-item {
  background: #fff;
  border: 2px solid #3cb371;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
}

.flow-step {
  font-size: 15px;
  color: #e95c5c;
  font-weight: 700;
  margin-bottom: 6px;
}

.flow-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.flow-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: center;
}

/* ボタン（PCは横並び・サイズ確保） */
.flow-btns {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.flow-btn {
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.btn-line { background: #3cb035; }
.btn-form { background: #e85c3a; }

/* 電話は別行 */
.flow-tel {
  margin-top: 12px;
  text-align: center;
}

.flow-tel .tel-number {
  font-weight: 700;
  color: #e95c5c;
  font-size : 20px;
}

.flow-tel .tel-time {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ===== デザイナー紹介（PC・タブレット） ===== */
.designer-section {
  width: 100%;
  background: #fffef8;
  padding: 60px 0;
}

/* 中身 */
.designer-section .section-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* 枠 */
.designer-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  border : 1px solid #e4d9b9;
	margin-top : 40px;
}

/* 肩書（メイン・大きく） */
.designer-role {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* 画像 */
.designer-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* 名前（サブ・小さく） */
.designer-name {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight : 600;
}

/* 自己紹介（左寄せ） */
.designer-text {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  color: #555;
}

/* ===== FAQ（PC） ===== */
.faq-section {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}
.faq-list {
  max-width: 800px;
  margin: 20px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-q {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: #3cb371;
  font-weight: bold;
}

.faq-a {
  font-size: 16px;
  line-height: 1.8;
  padding-left: 30px;
  position: relative;
}

.faq-a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7a7a;
  font-weight: bold;
}


/* ==============================
   Premium Contact Page
============================== */

.premium-contact-page {
  background: #e07a7a;
  color: #fff;
  margin: 0;
}

/* ==============================
   FV
============================== */
.premium-contact-header {
  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;
}
.premium-contact-title,
.premium-contact-sub {
  position: relative;
  z-index: 2;
}

.premium-contact-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.premium-contact-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* ==============================
   フォーム
============================== */

.premium-contact-form {
  background: #fff;
  color: #333;
  padding: 50px 30px;
  text-align : center;
}

.premium-form {
  max-width: 780px;
  margin: 0 auto;
}
.premium-form {
  max-width: 720px;
  margin: 0 auto;
}

/* ===== 各項目 ===== */

.form-group {
  margin-bottom: 28px;
  text-align : left;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* 必須・任意 */

.label-required {
  color: #fff;
  background: #b38b8b;
  padding: 4px 6px;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 6px;
}

.label-optional {
  color: #fff;
  background: #999;
  padding: 4px 6px;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 6px;
}

/* 入力 */

.premium-form input[type="text"],
.premium-form input[type="email"],
.premium-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 15px;
  background: #fff;
  transition: 0.3s;
}

.premium-form input:focus,
.premium-form textarea:focus {
  border-color: #b38b8b;
  outline: none;
}

/* チェック */

.checkbox-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
}

.checkbox-group input {
  margin-right: 8px;
}

/* ===== 送信ボタン ===== */

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit button {
  background: #0b1c3f;
  color: #fff;
  padding: 16px 48px;
  border: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.3s;
}

.form-submit button:hover {
  background: #162c63;
  color: #fff;
}

/* ==============================
   下部
============================== */

.premium-contact-note {
  text-align: center;
  padding: 40px 20px 80px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* フォーム内のフォント強制上書き */
.premium-form,
.premium-form * {
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif !important;
}

/* fontタグ無効化 */
.premium-form font {
  all: unset;
  font-family: inherit !important;
  color: inherit !important;
  font-size: inherit !important;
}

/* 相談ボタン（送信） */
.form-submit button {
  background: #e07a7a !important;
  color: #fff !important;
  border-radius : 10px;
}

/* 戻るボタン（aタグ） */
.form-submit a {
  background: #e07a7a !important;
  color: #fff !important;
	border-radius : 10px;
}

/* hoverも白文字固定 */
.form-submit button:hover,
.form-submit a:hover {
  background: #d66161 !important;
  color: #fff !important;
}

/* ==============================
   レスポンシブ
============================== */

@media (max-width: 768px) {

  .premium-contact-title {
    font-size: 24px;
  }

  .premium-contact-sub {
    font-size: 14px;
  }

  .premium-contact-header {
    padding: 50px 20px;
  }

  .premium-contact-form {
    padding: 10px 15px;
  }
}

/*****フッター*****/
.site-footer {
  background: #f0f8fb;
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ロゴ */
.footer-logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ナビ */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-nav li {
  display: inline-block;
  margin: 0 10px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* 情報 */
.footer-info {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* コピー */
.footer-copy {
  font-size: 12px;
  color: #555;
}

/* フッター強制修正 */
.site-footer {
  color: #333;
}

.site-footer a {
  color: #333;
}

/* =========================
  特商法（1列・シンプル）
========================= */
/* 全体幅 */
.policy-inner {
  max-width: 800px;
  margin: 0 auto;
  padding:10px 20px;
}

/* h1 */
.policy-title {
  font-size: 22px;
  margin: 0px 0 20px 0;
  font-weight: 700;
  text-align : left;
  border-bottom : 2px solid #555151;
  padding-bottom : 8px;
}

/* リード */
.policy-lead {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align : left;
}

/* テーブル風 */
.policy-table {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom : 50px;
}

/* 行 */
.policy-row {
  display: flex;
  border-top: 1px solid #eee;
}

.policy-row:first-child {
  border-top: none;
}

/* 左（項目） */
.policy-th {
  width: 30%;
  background: #f7f7f7;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align : left;
}

/* 右（内容） */
.policy-td {
  width: 70%;
  padding: 12px;
  font-size: 14px;
  line-height: 1.7;
  text-align : left;
}

/* ===== スマホ ===== */
@media (max-width: 899px) {

  .policy-row {
    flex-direction: column;
  }

  .policy-th,
  .policy-td {
    width: 100%;
  }

  .policy-th {
    background: #f0f0f0;
    border-bottom: 1px solid #eee;
  }

}

/* ======================================
   コラム一覧
====================================== */
.premium-contact-header{
    background:#e07a7a !important;
}
.premium-contact-title,
.premium-contact-sub{
    color:#fff !important;
}
.pw-column-list{
  max-width : 1280px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:30px;
    margin:40px auto;
}

/* ===== カード ===== */
.pw-column-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #dcdcdc;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:#333;
    transition:0.3s;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
    box-sizing:border-box;
}

.pw-column-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.10);
}

/* ===== アイキャッチ ===== */
.pw-column-thumb{
    width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    background:#f5f5f5;
}

.pw-column-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ===== 中身 ===== */
.pw-column-content{
    padding:22px;
}

/* 投稿日＋カテゴリー */
.pw-column-meta{
    margin:0 0 12px;
    font-size:13px;
    color:#888;
    line-height:1.6;
}

/* タイトル */
.pw-column-title{
    margin:0 0 15px !important;
    font-size:20px !important;
    line-height:1.7 !important;
    font-weight:700;
    color:#222;
  text-align : left;
}

/* 抜粋 */
.pw-column-excerpt{
    margin:0;
    font-size:15px;
    line-height:1.9;
    color:#555;
  text-align : left;
}

/* ===== タブレット ===== */
@media(max-width:1080px){

    .pw-column-list{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

}

/* ===== スマホ ===== */
@media(max-width:899px){

    .pw-column-list{
        grid-template-columns:1fr;
        gap:25px;
    }

    .pw-column-content{
        padding:18px;
    }

    .pw-column-title{
        font-size:18px !important;
    }

    .pw-column-excerpt{
        font-size:14px;
        line-height:1.8;
    }

}

/* ======================================
   記事ページ
====================================== */

.pw-single-article{
    background:#fff;
}

/* アイキャッチ */
.pw-single-thumb{
  display : none;
}

/* 本文 */
.pw-single-content{
  max-width : 860px;
  margin : 0px auto;
    font-size:16px;
    line-height:2.2;
    color:#333;
  text-align : left;
}

/* 見出し */
.pw-single-content h2{
    font-size:25px;
    line-height:1.6;
    margin:70px 0 30px;
    color:#fff;
	font-weight : 600;
  background : #e07a7a;
  padding : 6px 15px;
  border-radius : 10px;
}

.pw-single-content h3{
    font-size:24px;
    line-height:1.6;
    margin:50px 0 25px;
    color:#e07a7a;
	border-bottom : 2px dotted #e07a7a;
	padding-bottom : 3px;
	font-weight : 600;
}

/* 画像 */
.pw-single-content img{
    max-width:100%;
    height:auto;
    border-radius:10px;
}

/* 段落 */
.pw-single-content p{
    margin-bottom:28px;
  line-height : 1.6;
}

/* リスト */
.pw-single-content ul,
.pw-single-content ol{
    margin:0 0 30px 25px;
}

/* ===== スマホ ===== */
@media(max-width:899px){

    .pw-single-content{
        font-size:15px;
        line-height:2;
    }

    .pw-single-content h2{
        font-size:20px;
        margin:20px 0 25px;
    }

    .pw-single-content h3{
        font-size:17px;
        margin:40px 0 20px;
    }
.pw-single-thumb img{
    width:95%;
  margin : 0 
    height:auto;
    border-radius:10px;
}
}

/* ===== テロップ ===== */
.fv-news-ticker{
  display:none;
}

/* スマホのみ表示 */
@media (max-width:899px){

  .fv-news-ticker{
    display:flex;
    align-items:center;
    gap:10px;

    width:100%;
    margin-bottom:20px;
    padding:10px 14px;

    background:#16a2d0;
    border-radius:8px;

    overflow:hidden;

    z-index:30;
    color:#fff;
    text-decoration:none;
  }

  .fv-news-ticker__viewport{
    overflow:hidden;
    flex:1;
  }

  .fv-news-ticker__track{
    display:flex;
    white-space:nowrap;
  }

  .fv-news-ticker__track span{
    padding-right:60px;
    font-size:12px;
    color:#fff;

    animation:tickerMove 20s linear infinite;
  }

  .fv-news-ticker__label{
    flex-shrink:0;

    font-size:10px;
    background:#fff;
    color:#16a2d0;

    padding:4px 6px;
    border-radius:3px;
  }

  @keyframes tickerMove{
    0%{
      transform:translateX(0);
    }
    100%{
      transform:translateX(-100%);
    }
  }

}

.clomumn-link{
	width: 240px;
	margin: 20px auto 0px;
	border: 1px solid #db7093;
	border-radius: 20px;
	text-align: center;
	font-size: 13px;
	overflow: hidden;
}

.clomumn-link a{
	display: block;
	padding: 8px 5px;
	text-decoration: none;
	background: #db7093;
	color: #fffef8;
	transition: 0.3s;
	border-radius: 20px;
}

.clomumn-link a:hover{
	background: #db7093;
	color: #fffef8;
}

/* =========================
   新着情報・今月の特典
========================= */

.pet-news-section {
  width: 100%;
  padding: 35px 20px 20px;
  background: #fffef8;
}

.pet-news-box {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #cd5c5c;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(60, 179, 113, 0.12);
}

.pet-news-label {
  background: #cd5c5c;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 20px;
}

.pet-news-content {
  padding: 22px 24px 24px;
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
  text-align: center;
}

/* スマホ */
@media (max-width: 899px) {
  .pet-news-section {
    padding: 25px 16px 15px;
    margin-top : 0px;
  }

  .pet-news-label {
    font-size: 16px;
    padding: 10px 16px;
  }

  .pet-news-content {
    padding: 18px 16px 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}

.monitor-link {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 20px;
    background: #cd5c5c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    letter-spacing: 0.05em;
}
.monitor-link {
    display: inline-block;
    border-radius: 999px;
    transition: 0.3s;
}

.monitor-link a {
    display: block;
    padding: 4px 20px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.monitor-link:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.monitor-link a:hover {
    color: #ffffff !important;
}

/* スマホ */
@media (max-width: 899px) {
    .monitor-link {
        font-size: 12px;
        padding: 4px 18px;
        margin-top: 15px;
    }
}

/********　追加（20260516）********/
.anshin-ttl{
	text-align : center;
	font-size : 20px;
	line-height : 30px;
	font-weight : 600;
	margin-bottom : 30px;
	color : #e85c3a;
}
.tegaki{
	text-align : center;
}
.minifont{
	font-size : 12px;
	font-weight : 600;
	color : #0ba894;
}
.price-monitor {
  position: relative;
  display: inline-block;
}

.price-monitor::after {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  width: 110%;
  height: 3px;
  background: #ff4d4d;
  transform: rotate(-8deg);
}

/* ===== 追加モニター募集 ===== */
.monitor-info-section {
    padding: 40px 20px;
    background: #fff;
}

.monitor-info-box {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid #f66382;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
}

/* タイトル */
.monitor-info-title {
    background: #f66382;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 16px 28px;
    line-height: 1.5;
}

/* 内容 */
.monitor-info-content {
    padding: 28px 34px 32px;
    color: #333;
    line-height: 2;
    text-align: left;
}

.monitor-info-content p {
    margin: 0 0 20px;
}

.monitor-info-content p:last-child {
    margin-bottom: 0;
}

.monitor-info-content ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.monitor-info-content li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 6px;
}

.monitor-info-content li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #f66382;
    font-size: 0.8em;
}

/* スマホ */
@media (max-width: 899px) {

    .monitor-info-section {
        padding: 30px 15px;
    }

    .monitor-info-title {
        padding: 14px 20px;
    }

    .monitor-info-content {
        padding: 24px 20px 26px;
        line-height: 1.6;
    }

}

/* ===== お悩みボックス ===== */
.nayami-box-section {
    padding: 40px 20px;
    background: #fff;
}

.nayami-box {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid #f3b55d;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
}

/* タイトル */
.nayami-box-title {
    background: #f3b55d;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 16px 28px;
	font-size : 18px;
    line-height: 1.5;
}

/* 内容 */
.nayami-box-content {
    padding: 28px 34px 32px;
    color: #333;
    line-height: 2;
    text-align: left;
}

.nayami-box-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nayami-box-content li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 6px;
}

.nayami-box-content li:last-child {
    margin-bottom: 0;
}

.nayami-box-content li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #f3b55d;
    font-size: 0.8em;
}

.nayami-text {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed #ccc;
}

/* スマホ */
@media (max-width: 899px) {

    .nayami-box-section {
        padding: 30px 15px;
    }

    .nayami-box-title {
        padding: 14px 20px;
    }

    .nayami-box-content {
        padding: 24px 20px 26px;
        line-height: 1.9;
    }

}

/* =========================
スマホ限定プラン
========================= */

.sp-only-plan {
    display: none;
}

/* =========================
スマホ
========================= */

@media screen and (max-width: 899px) {

    .sp-only-plan {
        display: block;
    }

}
/* モニターボックス */
.monitor-box-text{
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #ffd6e5;

    color: #333;
    font-size: 18px;
    line-height: 2;

    box-sizing: border-box;
}

/* 誘導文 */
.monitor-price-link{
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* スマホ */
@media screen and (max-width: 899px){

    .monitor-box-text{
        padding: 25px 20px;
        font-size: 15px;
        line-height: 1.9;
    }

    .monitor-price-link{
        font-size: 12px;
        margin-top: 15px;
    }

}

.new-fv{
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.new-fv-bg{
    display: block;
}

.new-fv-bg img{
    display: block;
    height: auto;
    margin: 0 auto;
	width : auto;
}

/* スマホ */
@media screen and (max-width: 899px){

    .new-fv-bg img{
        width: 100%;
        height: auto;
    }

}