/*
Theme Name: アウトドア用品委託販売canvasマーケット
Theme URI: https://corp.ei-o.com/
Description: 合同会社えいおうオリジナルWordPressテーマテンプレート
Version: 1.0
Author: ei-o
Author URI: https://corp.ei-o.com/
Text Domain: canvas-original
*/

:root {
  --orange: #E09000;
  --black: #333333;
  --bg-gray: #f5f5f5;
}
body{
	padding: 0;
	margin: 0;
	padding-top: 150px;
  padding-bottom: 170px;
}
body *{
	box-sizing: border-box;
}
body.home{
	padding-top: 100px;
}
p,
a,
li,
h2,
h3,
h4,
h5{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

p{
	line-height: 1.75;
	font-size: 16px;
  margin-top: 0;
}

.inner{
	max-width: 1150px;
	margin: 0 auto;
}
.center{
	text-align: center;
}
a{
	transition: all .3s;
}
a.line-button,
.line-button a{
  background-color: #06C755!important;
  border-color: #06C755!important;
}
a.line-button:hover,
.line-button a:hover{
  background-color: transparent!important;
  color:#06C755!important;
}
img{
	max-width: 100%;
	display: block;
}

.flex-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.flex-box.align-top{
	align-items: flex-start;
}
.flex-box.left{
	justify-content: flex-start;
}
.bg-gray{
  background-color: var(--bg-gray);
}
.mb-0{
  margin-bottom: 0!important;
}
.mt-0{
  margin-top: 0!important;
}
/* 蛍光マーカー（オレンジ #e09000） */
.marker-orange{
  /* 好みで濃さを微調整 */
  --marker-r: 224; /* #e09000 */
  --marker-g: 144;
  --marker-b:   0;
  --alpha: .45;     /* マーカーの透け具合 */
  padding: 0 .3em; /* 文字の左右に少し余白 */
  background-image: linear-gradient(
    to bottom,
    transparent 58%,
    rgba(var(--marker-r), var(--marker-g), var(--marker-b), var(--alpha)) 58%
  );
  background-repeat: no-repeat;
  /* 複数行に折り返してもハイライトを“継ぎ足し” */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: .12em; /* 端を少し丸く（好みで） */
  font-weight: bold;
  font-size: 150%;
}
/* 濃いめにしたいとき（任意） */
.marker-orange.is-strong{
  --alpha: .55;
}
/* ダークモードで少しだけ濃く（任意） */
@media (prefers-color-scheme: dark){
  .marker-orange{ --alpha: .55; }
}

h2.wp-block-heading{
  color: #fff;
  font-size: 28px;
  margin: 2em auto 1em;
  background-color: var(--orange);
  padding: 20px;
}
h3.wp-block-heading{
  border-bottom: 2px solid var(--orange);
  font-size: 25px;
  margin: 1.5em auto 1em;
}
.wp-block-buttons>.wp-block-button{
  margin: 50px auto;
}
.wp-block-buttons>.wp-block-button a.wp-block-button__link{
  background-color: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
}
.wp-block-buttons>.wp-block-button a.wp-block-button__link:hover{
  background-color: transparent;
  color: var(--orange);
}
@media (max-width: 960px){
  h2.wp-block-heading{
    font-size: 24px;
  }
  h3.wp-block-heading{
    font-size: 22px;
  }
}

.arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  color: var(--orange);
}
.arrow-button .arrow {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 1px;
  background-color: var(--orange);
}
.arrow-button .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 10px;
  height: 11px;
  border-top: 1px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
}
.arrow-button:hover .arrow {
  transform: translateX(4px);
  transition: transform 0.3s;
}


/* header */
.header-inner{
	max-width: 1150px;
	margin: 0 auto;
}
#menu-header-menu{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#menu-header-menu li{
	list-style: none;
}
#menu-header-menu li a{
	text-decoration: none;
	color: var(--black);
  padding: 1em;
}
#menu-header-menu li a:hover{
	text-decoration: underline;
	color: var(--orange);
}
header.main-header{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
}
header .site-nav ul li{
  margin-right: .5em;
}
header .site-nav ul li:last-child{
  margin-right: 0;
}
header .site-nav ul li#menu-item-114 a{
  padding: 1em 2em;
  background: var(--orange);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
}
/* ========== Hamburger base ========== */
.hamburger{
  position: fixed;
  top: 6px;
  right: 10px;
  z-index: 10002;
  display: flex;
  flex-direction: column;       /* ← 縦並びに変更 */
  align-items: center;          /* 中央寄せ */
  justify-content: center;
  gap: 4px;                     /* 線と文字の間隔 */
  padding: 8px;
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hamburger__icon {
  width: 24px;
  height: 16px;
  position: relative;
}
.hamburger__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.hamburger__icon span:nth-child(1){ top:0; }
.hamburger__icon span:nth-child(2){ top:7px; }
.hamburger__icon span:nth-child(3){ top:14px; }

/* 開状態で × に変形 */
.hamburger.is-open .hamburger__icon span:nth-child(1){ top:7px; transform: rotate(45deg); }
.hamburger.is-open .hamburger__icon span:nth-child(2){ opacity:0; }
.hamburger.is-open .hamburger__icon span:nth-child(3){ top:7px; transform: rotate(-45deg); }

.hamburger__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--orange);
  text-align: center;
  line-height: 1;
}
/* メニュー展開時の見た目は変えず */
.hamburger.is-open .hamburger__label {
  color: var(--orange);
}
/* ========== Backdrop ========== */
.drawer-backdrop{
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 9999;                 /* ↓ メニューより下にする */
  opacity: 0; transition: opacity .2s ease;
  pointer-events: none;          /* 非アクティブ時はクリックを受けない */
}
.drawer-backdrop.is-active{
  opacity: 1;
  pointer-events: auto;          /* 有効時のみ受ける */
}
html.scroll-lock, html.scroll-lock body{ overflow: hidden !important; }

/* ========== Drawer (menu container) ========== */
.mobile-drawer{
  position: fixed; inset: 0; background: #fff;
  z-index: 10000;                /* ↑ バックドロップより上 */
  transform: translateY(-100%);
  transition: transform .25s ease;
  padding: 80px 20px 40px;
}
.mobile-drawer.is-open{ transform: translateY(0); }

/* メニューの中身 */
.mobile-menu{ list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.mobile-menu > li > a{
  display: block; padding: 14px 4px; font-size: 18px; text-decoration: none; color: #111; border-bottom: 1px solid #eee;
}
.mobile-menu .sub-menu{ list-style: none; padding-left: 14px; margin: 6px 0 0; border-left: 2px solid #f2f2f2; }
.mobile-menu .sub-menu a{ font-size: 16px; padding: 10px 0; border: 0; }

/* ========== Desktop: 普通のナビに戻す場合（任意） ========== */
@media (min-width: 960px){
  .drawer-backdrop, .mobile-drawer{ display: none !important; }
  .hamburger{ display: none; }
  /* ここで既存のヘッダーメニューを横並び表示にするなら、別クラスに切替推奨 */
}



/* TOPページ */
.mv{
	position: relative;
  background-image: url(https://sell.canvas-jp.net/wp-content/uploads/2025/10/everett-mcintire-BPCsppbNRMI-unsplash.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65vh;
  min-height: 700px;
}
.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.mv .title-box {
  position: relative;
  z-index: 2;
  text-align: center;
}
.mv .title-box h1,
.mv .title-box h2,
.mv .title-box p{
	color: #fff;
}
.mv .title-box h2{
  font-size: 45px;
}
.button-box{
	margin: 2em auto;
}
.button-box a{
	display: inline-block;
	background-color:var(--orange);
	border: 1px solid var(--orange);
	padding: 1em 3em;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
}
.button-box a:hover{
	background-color: transparent;
	color:var(--orange) ;
}
.badge {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}
/* 丸の上半分と下半分の「弧」 */
.badge::before,
.badge::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 8px solid #fff;
  border-radius: 50%;
}
/* 弧の開口部を作るために下部分を透明にする */
.badge::before {
  border-bottom-color: transparent;
  transform: rotate(15deg);
}

.badge::after {
  border-bottom-color: transparent;
  transform: rotate(-15deg);
}
/* 上部テキスト群 */
.badge-top {
  position: absolute;
  top: 28px;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}

.bagde-text-01 {
  font-weight: 700;
}

.bagde-text-02 {
  font-weight: 400;
}

.bagde-text-03 {
  font-weight: 700;
}

/* 中央の「安心」 */
.badge-center {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-top: 20px;
  line-height: 1.25;
  color: #fff;
}

/* 星マーク */
.badge-stars {
  position: absolute;
  bottom: 20px;
  font-size: 22px;
  color: #ffb800;
  letter-spacing: 5px;
  text-align: center;
  text-indent: 5px;
}

section.content-container{
	padding: 60px 0;
}
section.lead .title-box{
  margin: 0 auto;
}
section.lead .title-box h2{
  position: relative;
  padding-bottom: 1em;
  margin: 0 auto 2em;
}
section.lead .title-box h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--orange);
  border-radius: 50px;
}
section.content-container .title-box{
  margin: 0 auto 40px;
}
section.content-container .title-box h2{
  text-align: center;
  font-size: 35px;
  margin-top: 0;
}
section.content-container .title-box p{
  text-align: center;
  color: var(--orange);
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.reasons .reason-content-box{
  margin-bottom: 50px;
  background-color: var(--bg-gray);
  padding: 0 20px 20px;
}
.reasons .reason-content-box h3{
  border-bottom: 2px solid var(--orange);
  font-size: 22px;
  text-align: center;
  padding: 15px 0;
}
.reasons .reason-content-box h3 span.number{
  font-size: 40px;
  color: var(--orange);
  padding-right: 10px;
}
.reasons .reason-content-box .lead p{
  text-align: center;
  font-size: 18px;
}
.reasons .reason-content-box .flex-box{
  align-items: stretch;
}
.reasons .reason-content-box .flex-box .flex-item{
  width: 33%;
  background-color: #fff;
  padding: 20px;
}
.reasons .reason-content-box .flex-box .flex-item h4{
  text-align: center;
}
.reasons .reason-content-box .flex-box .flex-item p:last-child{
  margin-bottom: 0;
}

.high-price .high-price_content-box{
  margin-bottom: 30px;
}
.high-price .high-price_content-box .blank{
  width: 20%;
}
.high-price .high-price_content-box .high-price_content{
  width: 80%;
  background-color: #fff;
  padding: 20px;
}
.high-price .high-price_content-box .high-price_content p:last-child{
  margin-bottom: 0;
}
.high-price .high-price_content-box .high-price_content h3{
  border-bottom: 2px solid var(--orange);
}
.high-price .high-price_content-box .high-price_content h3 span{
  color: var(--orange);
  font-size: 150%;
  padding-right: 0.5em;
}

.flow .flow-content{
  margin-bottom: 30px;
}
.flow .flex-box .flex-item.img{
  width: 20%;
}
.flow .flex-box .flex-item:nth-of-type(2){
  width: 80%;
  padding-left: 50px;
}
.flow .flex-box h3{
  margin-top: 0;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 5px;
  font-size: 24px;
}
.flow .flex-box h3 span{
  color: var(--orange);
  font-size: 150%;
  display: block;
  font-size: 16px;
}

body.home .full-image-container img{
  width: 100%;
  height: 35vh;
  object-fit: cover;
  max-height: 400px;
}
@media (max-width: 798px) {
  height: 20vh;
}



.case-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; list-style: none; margin: 0; padding: 0; }
.case-item { background: #fff; border: 1px solid #eee; overflow: hidden; }
.case-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.case-media { aspect-ratio: 4 / 3; overflow: hidden; margin: 0; }
.case-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-body { padding: 12px; }
.case-title { font-size: 1rem; line-height: 1.5; margin: 0 0 8px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.9rem; color: #555; }
.case-price { margin-left: auto; font-weight: 700; color: var(--color-main, #E09000); }


.top-news { margin: 40px 0; }
.top-news__title { font-size: 1.25rem; margin: 0 0 12px; }
.top-news__list { list-style: none; margin: 0; padding: 0; }
.top-news__item + .top-news__item { border-top: 1px solid #eee; }
.top-news__list li{
  border-bottom: 1px solid;
  margin-bottom: 10px;
}
.top-news__list li:last-child{
  margin-bottom: 0;
}
.top-news__link {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}
.top-news__date { color: #666; }
.top-news__text { line-height: 1.6; }
.top-news__link:hover .top-news__text { text-decoration: underline; }

.top-news__more { margin-top: 12px; text-align: right}
.top-news__more a { color: var(--color-main, #E09000); text-decoration: none; }
.top-news__more a:hover { text-decoration: underline; }

section.item-category .content-box h3{
  border-bottom: 2px solid var(--orange);
  padding: 5px 0;
}
section.item-category .content-box{
  margin-bottom: 40px;
}
section.item-category .content-box:last-child{
  margin-bottom: 0;
}
section.item-category ul.flex-box{
	padding: 0;
	margin: 0;
  display:flex; flex-wrap:wrap; gap:24px;
  list-style:none; margin:0; padding:0;
}
section.item-category ul.flex-box > li {
  flex: 0 1 140px;
  aspect-ratio: 1 / 1;
  display: flex;
}
section.item-category ul.flex-box > li > a {
  display:grid;
  grid-template-rows: 1fr auto;
  place-items:center;
  width:100%; height:100%;
  text-align:center; text-decoration:none; color:inherit;
  padding:8px;
}
section.item-category ul.flex-box > li > a > img {
  width:auto; height:auto;
  max-width:70%;
  max-height:70%;
  object-fit:contain;
  display:block;
  margin-bottom:8px;
}
section.item-category ul.flex-box > li > a > span{
  font-size:14px; line-height:1.4; color:var(--black);
}


/* 過去実績ページ */

/* Breadcrumbs */
.breadcrumbs { margin: .5rem 0 1rem; font-size: .9rem; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5em; }
.breadcrumbs .crumb { display: inline-flex; gap: .5em; }
.breadcrumbs .crumb + .crumb::before { content: "›"; color: #999; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }


body.single-case{
	background-color: var(--bg-gray);
}
.item-detail{

}
.item-detail .image-box,
.item-detail .detail-box{
	width: 48%;
}
ul.case-gallery-thumbs{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 20px auto;
}
ul.case-gallery-thumbs li{
	list-style: none;
	width: 32%;
	margin-bottom: 5px;
}
ul.case-gallery-thumbs li .thumb-btn{
	border: none;
	padding: 0;
	width: 100%;
}
body.single-case h1.entry-title{
	margin: 0;
}
.detail-box p.case-brand,
.detail-box p.case-cat{
	margin: 0;
}
.case-pricing p{
	margin: 0;
}
h2.case-price-title,
h2.case-fee-title,
h2.case-buyprice-title{
	font-size: 16px;
	padding-right: 2em;
	margin: 0;
}
p.case-price-value{
	font-size: 20px;
	font-family: Inter, sans-serif;
	font-weight: bold;
}
section.case-pricing{
  padding: 1em 0;
  margin: 2em auto;
}
.case-price-block{
	border-bottom: 1px solid #000;
	margin-bottom: 1em;
}

.case-meta-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
}

.case-meta-table th,
.case-meta-table td {
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 10px 14px;
}

.case-meta-table th {
  width: 25%;
  background: #fafafa;
  font-weight: 600;
}

.case-meta-table tr:first-child th,
.case-meta-table tr:first-child td {
  border-top: none;
}

.case-meta-table tr th:last-child,
.case-meta-table tr td:last-child {
  border-right: none;
}
/* メイン画像を常に正方形に表示 */
.case-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* 正方形を維持 */
  object-fit: cover;     /* はみ出した部分をトリミング */
  display: block;
}

/* サムネイル画像の整列 */
.case-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 2%;
  margin-top: 12px;
}

.case-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;  /* サムネも正方形で揃える */
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
}

.case-gallery-thumbs img:hover {
  opacity: 0.8;
}

.item-detail .detail-box .product-detail{
  margin: 50px auto;
}



/* 過去実績一覧ページ */
.case-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:20px;
}
.case-filter-form{ flex:1; background:#f7f7f7; padding:12px 16px; border-radius:8px; }
.case-filter-inner{ display:flex; flex-wrap:wrap; gap:12px; align-items:flex-end; }
.case-filter-item label{ display:block; font-size:.9rem; margin-bottom:4px; color:#555; }

.case-sort{ min-width:220px; text-align:right; }
.case-sort label{ display:block; font-size:.9rem; margin-bottom:4px; color:#666; }
.case-sort select{ width:100%; padding:6px 10px; }
.case-archive {

}

.case-filter-form {
  margin-bottom: 30px;
  background: #f9f9f9;
  padding: 15px 20px;
}
.case-filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}
.case-filter-item label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.case-filter-item select,
.case-filter-item button {
  padding: 6px 10px;
  font-size: 1rem;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.case-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.case-card:hover {
  transform: translateY(-3px);
}
.case-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.case-info {
  padding: 12px 14px 16px;
}
.case-title {
  font-size: 1rem;
  margin: 0 0 6px;
}
.case-meta {
  font-size: 0.85rem;
  color: #777;
}
.case-price {
  margin-top: 8px;
  font-weight: bold;
  color: #E09000;
  font-size: 1.1rem;
}
.case-pagination {
  text-align: center;
  margin-top: 40px;
}



/* 記事ページ */

.site-main { margin: 0 auto; }
.entry-header { margin-bottom: 16px; }
.entry-meta { display: flex; gap: 12px; color: #666; font-size: .9rem; }
.entry-thumb img { width: 100%; height: auto; display: block; border-radius: 8px; }
.post-navigation { display: flex; justify-content: space-between; margin-top: 24px; }

.related-posts { margin-top: 40px; }
.related-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px; }
.related-link { display: grid; grid-template-columns: 72px 1fr; gap: 10px; text-decoration: none; color: inherit; }
.related-thumb img { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; }
.related-title { margin-bottom: 12px; font-size: 1.1rem; }
body.single article.entry{
	max-width: 800px;
}
body.single .site-sidebar{
	width: 300px;
}



/* よくある質問 */
/* セクション */
.top-faq { margin: 40px 0; }
.top-faq__title { font-size: 1.5rem; margin-bottom: 12px; }

/* タブ */
.top-faq__tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.top-faq__tab {
  appearance: none; border: 1px solid #ddd; background: #f9f9f9;
  padding: 6px 12px; cursor: pointer; font-size: .95rem;
  border-radius: 50px;
}
.top-faq__tab.is-active { background: #000; color: #fff; border-color: #000; }

/* パネル */
.top-faq__panel { margin-top: 8px; }
.top-faq__list { list-style: none; margin: 0; padding: 0; }
.top-faq__item + .top-faq__item { margin-top: 8px; }

/* アコーディオン（details/summary） */
.faq-acc {
  border: 1px solid #eee; background: #fff;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,.04);
}
.faq-q {
  list-style: none; cursor: pointer; padding: 12px 14px; margin: 0; font-weight: 600;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-acc[open] .faq-q { border-bottom: 1px solid #f0f0f0; }

.faq-a { padding: 12px 14px; line-height: 1.8; }

/* 色合わせ（キーカラーが #E09000 の場合） */
.top-faq__tab.is-active { background: var(--orange); border-color: var(--orange); }
.faq-q:hover { background: var(--bg-gray) }


/* 固定ページ */
.page-simple { margin: 0 auto; }
.page-title { margin: 0 0 12px; font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.page-thumb img { width: 100%; height: auto; display: block; border-radius: 8px; }
.page-content { margin-top: 16px; }
/* ====================================
   blockquote スタイル
   ==================================== */
   blockquote {
    position: relative;
    margin: 2em 0;
    padding: 1.5em 1.5em 1.5em 2em;
    background: #fffdf8;
    border-left: 5px solid #E09000;
    font-style: italic;
    line-height: 1.8;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }

/* 引用符を装飾的に表示 */
blockquote::before {
  content: "“";
  position: absolute;
  top: -0.2em;
  left: 0.25em;
  font-family: "Georgia", serif;
  font-size: 3.5rem;
  color: rgba(224,144,0,0.2);
  line-height: 1;
}

/* 引用内の出典や補足など */
blockquote cite {
  display: block;
  margin-top: 1em;
  font-size: 0.9rem;
  color: #888;
  text-align: right;
}
blockquote cite::before {
  content: "— ";
}



/* footer */
footer{
	background-color: var(--bg-gray);
	padding: 60px 0;
}
footer p.cory-right{
	text-align: center;
}


/* お知らせ一覧ページ */
/* News archive simple */
.news-archive-title { font-size: 1.6rem; margin: 0 0 1rem; }

.news-simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #eee;
}
.news-simple-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.news-date { color: var(--muted); font-size: .95rem; white-space: nowrap; }
.news-link { text-decoration: none; }
.news-link:hover { text-decoration: underline; }

.pagination { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-block; min-width: 36px; text-align: center;
  padding: 6px 10px; border: 1px solid #e2e2e2; border-radius: 6px;
}
.pagination .current { background: #eef3ff; border-color: #cbd8ff; }

@media (max-width: 600px) {
  .news-simple-item { grid-template-columns: 90px 1fr; }
}


.footer-fix{
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.76);
}
.footer-fix .flex-box{
  justify-content: space-around;
}
.footer-fix h2{
  color: var(--orange);
}
.footer-fix p{
  color: #fff;
}


/* page-flow */
.page-flow .caution-box{
  border: 2px solid var(--orange);
}
.page-flow .caution-box h2{
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  background-color: var(--orange);
  color: #fff;
}
.page-flow .caution-box .caution-content{
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
.page-flow .caution-box .caution-content h3{
  margin-top: 0;
  border-left: 5px solid var(--orange);
  padding-left: 1em;
}
.page-flow .caution-box .caution-content p:last-child{
  margin-bottom: 0;
}


.footer-container .footer-menu-container{
  align-items: flex-start;
}
.footer-container .footer-menu-container div.footer-menu{
  margin-right: 30px;
}
.footer-container .footer-menu-container div.footer-menu:last-child{
  margin-right: 0;
}
.footer-container .footer-menu-container ul.footer-menu{
  padding-left: 0;
}
.footer-container .footer-menu li{
  list-style: none;
  margin-bottom: 10px;
}
.footer-container .footer-menu li a{
  color: var(--orange);
}



/* =========================
   BLOGセクション全体
========================= */
.blog-section {
  padding: 60px 20px;
  background-color: #f7f7f8; /* ほんの少しグレーで面を分ける */
}

.blog-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 見出し行（タイトル＋「すべて見る」） */
.blog-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 12px;
}

.blog-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  display: flex;
  align-items: center;
  column-gap: 0.6em;
  position: relative;
}

.blog-section__title::before {
  content: "";
  display: block;
  width: 4px;
  height: 1.2em;
  border-radius: 2px;
  background: linear-gradient(135deg, #222 0%, rgba(0,0,0,0.4) 100%);
}

.blog-section__more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  line-height: 1.2;
}
.blog-section__more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   カードリスト
========================= */
.blog-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* カード本体 */
.blog-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
  transition: box-shadow .25s ease, transform .25s ease;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

/* アイキャッチ部分 */
.blog-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eee;
  flex-shrink: 0;
  overflow: hidden;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* アイキャッチない場合 */
.blog-card__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: repeating-conic-gradient(
    from 0deg,
    #e5e5e7 0% 25%,
    #f5f5f7 0% 50%
  );
  background-size: 20px 20px;
  color: #555;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* テキストブロック */
.blog-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 日付＋カテゴリ */
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 4px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.4;
}

.blog-card__date {
  font-weight: 500;
  color: #555;
}

.blog-card__cat {
  background-color: #efefef;
  color: #333;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 6px;
  padding: 4px 6px;
}

/* タイトル */
.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* 2行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 抜粋 */
.blog-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;      /* 3行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ホバー効果（PCのみ狙い撃ちしたい場合は@media(min-width:768px)で囲ってもOK） */
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* 記事が0件のとき */
.blog-section__empty {
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.95rem;
  color: #666;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

/* レスポンシブ微調整 */
@media (max-width: 480px) {
  .blog-section {
    padding: 40px 16px;
  }
  .blog-section__title {
    font-size: 1.2rem;
  }
  .blog-card__body {
    padding: 16px 16px 20px;
  }
  .blog-card__title {
    font-size: 0.95rem;
  }
}



/* ========================================
   ブログ一覧ページ全体
======================================== */
.blog-archive {
  background-color: #f7f7f8;
  color: #222;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Heroセクション ---------- */
.blog-archive__hero {
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 60%),
  linear-gradient(135deg, #ffffff 0%, #f0f0f3 100%);
  padding: 60px 20px 50px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.blog-archive__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 32px 28px 36px;
}

.blog-archive__labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-archive__label-main {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: #222;
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  letter-spacing: .05em;
}

.blog-archive__label-sub {
  font-size: .7rem;
  font-weight: 600;
  color: #555;
  background-color: #efefef;
  border-radius: 6px;
  padding: 4px 8px;
  line-height: 1.2;
  letter-spacing: .03em;
}

.blog-archive__title {
  font-size: clamp(1.4rem, 1vw + 1rem, 1.8rem);
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin: 0 0 12px;
}

.blog-archive__lead {
  color: #444;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- カテゴリフィルター ---------- */
.blog-archive__cats {
  padding: 24px 20px 8px;
  background-color: transparent;
}

.blog-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-archive__cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-archive__cat-item { }

.blog-archive__cat-link {
  display: inline-block;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: all .2s ease;
}

.blog-archive__cat-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.blog-archive__cat-link.is-active {
  background-color: #222;
  color: #fff;
  border-color: #222;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* ---------- 一覧（カードグリッド） ---------- */
.blog-archive__list {
  padding: 32px 20px 60px;
}

.blog-archive__cards {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* カード */
.blog-archive-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
}

.blog-archive-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* サムネイル */
.blog-archive-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eee;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.blog-archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* サムネイル無しのとき */
.blog-archive-card__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: repeating-conic-gradient(
    from 0deg,
    #e5e5e7 0% 25%,
    #f5f5f7 0% 50%
  );
  background-size: 20px 20px;
  color: #555;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 本文部分 */
.blog-archive-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* メタ（日付・カテゴリ） */
.blog-archive-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 4px;
  font-size: 0.8rem;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.4;
}

.blog-archive-card__date {
  font-weight: 500;
  color: #555;
}

.blog-archive-card__cat {
  background-color: #efefef;
  color: #333;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 6px;
  padding: 4px 6px;
}

/* タイトル */
.blog-archive-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* 2行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 抜粋 */
.blog-archive-card__excerpt {
  font-size: .85rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;      /* 3行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* hover演出 */
.blog-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.08);
}

/* ---------- ページネーション ---------- */
.blog-archive__pager {
  text-align: center;
}

.archive-pager {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-pager__item a,
.archive-pager__item span {
  display: inline-block;
  min-width: 38px;
  padding: 10px 12px;
  font-size: .8rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background-color: #fff;
  color: #222;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: all .2s ease;
}

.archive-pager__item a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

/* WPの現在ページは <span class="current"> として出る想定 */
.archive-pager__item .current {
  background-color: #222;
  color: #fff;
  border-color: #222;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ---------- 空表示 ---------- */
.blog-archive__empty {
  background-color: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 48px 20px;
  font-size: 0.95rem;
  color: #666;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 600px) {
  .blog-archive__hero {
    padding: 40px 16px 32px;
  }

  .blog-archive__hero-inner {
    padding: 24px 20px 28px;
    border-radius: 20px;
  }

  .blog-archive__title {
    font-size: 1.4rem;
  }

  .blog-archive-card__body {
    padding: 20px 20px 24px;
  }

  .blog-archive__cat-link {
    font-size: .75rem;
    padding: 8px 12px;
  }
}


/* ===== Search (global) ===== */
.c-search { --ring: var(--orange); --bg: #fff; --border:#e5e7eb; --text:#111; --muted:#6b7280; }
.c-search--wide { max-width: 720px; margin: 0 auto; }
.c-search__label { display:block; font-size:12px; color: var(--muted); margin: 0 0 8px; }
.c-search__box{
  position: relative;
  display:flex; align-items:center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 10px 10px 40px; /* アイコン分の左余白 */
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: box-shadow .2s ease, border-color .2s ease, transform .06s ease-in-out;
}
.c-search__box:focus-within{
  border-color: var(--ring);
  box-shadow: 0 8px 28px rgba(0,0,0,.08), 0 0 0 4px color-mix(in srgb, var(--ring) 18%, transparent);
}
.c-search__icon{
  position:absolute; left:12px; color:#9ca3af; display:inline-flex; align-items:center; justify-content:center;
}
.c-search__input{
  flex:1 1 auto; min-width: 0;
  border:0; outline:0; background:transparent;
  font-size:16px; line-height:1.4; padding: 0 10px;
}
.c-search__input::placeholder{ color:#9ca3af; }
.c-search__btn{
  flex:0 0 auto;
  appearance: none; border:0; cursor:pointer;
  padding: 10px 16px; border-radius: 10px;
  background: var(--orange); color:#fff; font-weight:700; line-height:1;
  transition: transform .06s ease-in-out, opacity .2s ease;
}
.c-search__btn:hover{ opacity:.9; }
.c-search__btn:active{ transform: translateY(1px); }
.c-search__hint{ margin:8px 2px 0; font-size:12px; color:#6b7280; }

/* 404ページと馴染ませる（任意・軽め） */
.error-404__search .c-search--wide { margin-top: 8px; }

/* ダークモード（任意） */
@media (prefers-color-scheme: dark){
  .c-search { --bg:#0f1115; --border:#2a2f3a; --text:#e5e7eb; --muted:#9aa3b2; }
  .c-search__box{ box-shadow: 0 6px 18px rgba(0,0,0,.4); }
  .c-search__icon{ color:#9aa3b2; }
}

.error-404__title { font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin: 0 0 8px; }
.error-404__lead { color: #555; margin: 0 0 24px; line-height: 1.8; }
.error-404__search { margin: 0 0 32px; }
.error-404__columns { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px){
  .error-404__columns { grid-template-columns: 1fr 1fr; }
}
.error-404__section-title { font-size: 16px; font-weight: 700; margin: 0 0 12px; }
.error-404__list { list-style: none; margin: 0; padding: 0; }
.error-404__list li { border-bottom: 1px solid #eee; }
.error-404__list li a { display: block; padding: 10px 0; text-decoration: none; color: #111; }
.error-404__list li a:hover { text-decoration: underline; }
.error-404__actions { margin-top: 28px; }
.error-404__home {
  display: inline-block; padding: 10px 16px; border: 1px solid #111; border-radius: 6px;
  text-decoration: none; color: #111;
}
.error-404__home:hover { background: #111; color: #fff; }


/* ===========================
   フローティングボタン（LINE風）
=========================== */
.inquiry-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background-color: #06C755; /* LINE公式グリーン */
  color: #fff;
  border-radius: 999px; /* 丸み */
  /* box-shadow: 0 8px 24px rgba(6, 199, 85, 0.5); */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
}

.inquiry-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.6);
}

/* アイコン部分 */
.inquiry-fab__icon {
  width: 24px;
  height: 24px;
  line-height: 0;
  flex-shrink: 0;
  color: #fff;
}

.inquiry-fab__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* テキスト */
.inquiry-fab__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* スマホでは丸いアイコンボタンに切り替え */
@media (max-width: 480px) {
  .inquiry-fab {
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    bottom: 100px;
    right: 10px;
  }
  .inquiry-fab__text {
    display: none;
  }
  .inquiry-fab__icon {
    width: 28px;
    height: 28px;
  }
}


/* ===========================
   モーダル本体
=========================== */

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none; /* デフォルト非アクティブ */
}

.inquiry-modal.is-active {
  pointer-events: auto; /* アクティブ時にクリック可能へ */
}

/* 背景の半透明オーバーレイ */
.inquiry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity .2s ease;
}

.inquiry-modal.is-active .inquiry-modal__overlay {
  opacity: 1;
}

/* モーダルカード本体 */
.inquiry-modal__card {
  position: absolute;
  right: 16px;
  bottom: 80px; /* フローティングボタンの少し上に出す */
  width: min(320px, calc(100% - 32px));
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  padding: 20px 20px 16px;
  color: #222;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transform-origin: bottom right;
  transition: all .2s ease;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.inquiry-modal.is-active .inquiry-modal__card {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 9999;
}

/* 閉じるボタン */
.inquiry-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  appearance: none;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  transition: all .15s ease;
}

.inquiry-modal__close:hover {
  background: rgba(0,0,0,0.8);
}

/* モーダル中身 */
.inquiry-modal__head {
  padding-right: 32px; /* 閉じるボタンの分の余白 */
  margin-bottom: 16px;
}

.inquiry-modal__label {
  display: inline-block;
  background-color: #222;
  color: #fff;
  font-size: .65rem;
  line-height: 1.2;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 6px;
  margin: 0 0 8px;
}

.inquiry-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin: 0 0 8px;
}

.inquiry-modal__desc {
  font-size: .8rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

/* LINEボタン */
.inquiry-modal__actions {
  margin: 16px 0 12px;
}

.inquiry-line-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  line-height: 1.3;
  font-size: .9rem;
  color: #fff;
  background-color: #06C755; /* LINEカラー系グリーン */
  box-shadow: 0 20px 40px rgba(6, 199, 85, 0.4);
  transition: all .2s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.inquiry-line-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 28px 60px rgba(6, 199, 85, 0.6);
}

.inquiry-line-btn__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #fff;
}

.inquiry-line-btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.inquiry-line-btn__text {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.inquiry-line-btn__note {
  font-size: .7rem;
  font-weight: 500;
  opacity: .9;
  line-height: 1.4;
}

/* フッターメモ */
.inquiry-modal__foot {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
  margin-top: 12px;
}

.inquiry-modal__note {
  font-size: .7rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
  text-align: left;
}

@media (max-width: 480px) {
  .inquiry-modal__card {
    right: 12px;
    bottom: 72px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 100px);
  }

  .inquiry-line-btn {
    font-size: .85rem;
    padding: 12px;
  }

  .inquiry-line-btn__icon {
    width: 28px;
    height: 28px;
  }
}

.c-share { margin: 32px 0 0; }
.c-share__label { font-weight:700; margin:0 0 12px; }
.c-share__list { display:flex; flex-wrap:wrap; gap:10px; list-style:none; padding:0; margin:0; }
.c-share__btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px; text-decoration:none;
  border:1px solid #e5e7eb; background:#fff; color:#111; font-weight:700;
  transition: transform .06s ease-in-out, opacity .2s ease, border-color .2s ease;
}
.c-share__btn:hover { opacity:.9; border-color:#d1d5db; }
.c-share__btn:active { transform: translateY(1px); }

/* 各ブランド色（必要なら調整） */
.c-share__btn--x    { color:#111; background:#fff; }
.c-share__btn--fb   { color:#1877F2; background:#fff; }
.c-share__btn--line { color:#00B900; background:#fff; }
.c-share__btn--hb   { color:#00A4DE; background:#fff; }
.c-share__icon--hb  { font-weight:900; font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif; }

/* コピー後のフィードバック */
.c-share__btn--copy.is-copied { border-color: var(--orange); box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 20%, transparent); }

/* ダークモード（任意） */
@media (prefers-color-scheme: dark){
  /* .c-share__btn { background:#0f1115; border-color:#2a2f3a; color:#e5e7eb; } */
  .c-share__btn--x    { color:#e5e7eb; }
  .c-share__btn--fb   { color:#8fb8ff; }
  .c-share__btn--line { color:#78e391; }
  .c-share__btn--hb   { color:#4ecaff; }
}



.sp-box{
  display: none;
}

@media (max-width: 798px){
  .sp-box{
    display: block;
  }
  .pc-box{
    display: none;
  }
  body{
    padding-top: 85px;
  }
  body.home{
    padding-top: 60px;
  }
  p{
    font-size: 15px;
  }
  .inner {
    max-width: 100%;
    padding: 0 5px;
  }
  .mv .title-box h1{
    font-size: 6vw;
  }
  .mv .title-box h2{
    font-size: 5vw;
  }
  .mv .title-box .flex-box{
    justify-content: space-evenly;
  }

  header .header-inner h1.logo{
    margin: 0;
    padding: 10px;
  }
  header .header-inner h1.logo img{
    width: 160px;
  }
  .badge{
    width: 110px;
    height: 110px;
  }
  .badge-center {
    font-size: 20px;
    letter-spacing: 0px;
    margin-top: 85px;
  }
  .badge::before,
  .badge::after{
    width: 105px;
    height: 105px;
    border-width: 2px;
  }
  .badge-top{
    top: 30px;
    font-size: 13px;
  }
  .badge-stars {
    bottom: -30px;
    font-size: 15px;
  }

  section.content-container .title-box h2{
    font-size: 24px;
  }

  .reasons .reason-content-box .lead p{
    text-align: left;
    font-size: 16px;
  }
  .reasons .reason-content-box h3{
    text-align: left;
  }
  .reasons .reason-content-box .flex-box{
    display: block;
  }
  .reasons .reason-content-box .flex-box .flex-item{
    width: 100%;
    margin-bottom: 10px;
  }
  .reasons .reason-content-box .flex-box .flex-item:last-child{
    margin-bottom: 0;
  }
  .high-price .high-price_content-box .blank{
    width: 10%;
  }
  .high-price .high-price_content-box .high-price_content{
    width: 90%;
  }
  .flow .flex-box .flex-item:nth-of-type(2) {
    padding-left: 15px;
  }
  .flow .flex-box h3{
    width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .case-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  section.item-category ul.flex-box {
    gap: 25px 0;
  }
  section.item-category ul.flex-box > li {
    flex: 0 25%;
  }

  .case-filter-form{
    padding: 10px;
  }
  .case-toolbar{
    display: block;
  }
  .case-sort,
  .case-sort select{
    width: auto;
    min-width: 0;
  }

  .case-detail .flex-box.item-detail{
    display: block;
  }
  .item-detail .image-box, .item-detail .detail-box{
    width: 100%;
  }

  .footer-fix{
    padding: 10px 0;
  }
  .footer-fix .flex-box .flex-item:nth-of-type(1){
    width: 50%;
  }
  .footer-fix .flex-box .flex-item:nth-of-type(2){
    width: 50%;
  }
  .footer-fix .flex-box .flex-item h2{
    font-size: 13px;
    margin: 0px auto 5px;
  }
  .footer-fix .flex-box .flex-item p{
    font-size: 11px;
    margin: 0;
  }
  .footer-fix .flex-box .flex-item .button-box{
    margin: 0;
  }
  .footer-fix .flex-box .flex-item .button-box a{
    padding: 5px 10px;
    font-size: 13px;
  }





}