@charset "utf-8";
*, *::before, *::after {
  box-sizing: border-box;
  user-select: none;
}

html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
}

table th{
  vertical-align:top;
}


img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}


a{
	text-decoration:underline;
	color:#ff0000;
}

a {
    -webkit-tap-highlight-color:transparent;
}

a:hover{
	color: #999;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0; 
	clear: both;
	visibility: hidden; 
	overflow: hidden;
}

a img {
    border-style:none;
}

a:hover img:hover{
opacity: 0.6;
-webkit-opacity: 0.6;
-moz-opacity: 0.6;
}

a img{
-webkit-transition: opacity 0.3s ease-out;
-moz-transition: opacity 0.3s ease-out;
-ms-transition: opacity 0.3s ease-out;
transition: opacity 0.3s ease-out;
}

.ui-widget-overlay {
    opacity: .3;
    filter: Alpha(Opacity=.3);
}

.text-danger {
    color: #dc3545;
}

#point_list th,
#point_list td {
    width: auto;
    font-size: 75%;
}

html,body {  
	-webkit-text-size-adjust: 100%; 
} 

body {
	min-height: 100vh;
    margin:0;
	width:100%; 
    color: #2c2c2c;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: clamp(14px, 3.5vw, 18px); 
	line-height: 1.6;
	-webkit-text-size-adjust: 100%; 
	background-image:
    url("../images/bg1.png"),
    url("../images/bg2.png"),
    url("../images/bg.jpg");
    background-repeat:
    no-repeat,
    no-repeat,
    repeat;
    background-position:
    left 0 top 0,
    right 0 bottom 0,
    center top;
    background-attachment:
    fixed,
    fixed,
    fixed;
   background-size: 50%, 50%, 50%;
   background-color: #f7f3eb;
}

#wrapper {
  	overflow:hidden;
	margin-top: 50px;
}

input,textarea,select,button{
	font-family: "Noto Serif JP", serif;
}

img{
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0; 
	clear: both;
	visibility: hidden; 
}

.center {
	text-align:center;
	margin:0 auto;
}

.right {
	text-align:right;
}

.b{
	font-weight:bold;
}

/* コンテナ: 画面全体を覆う固定配置 */
.ripple-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;  /* クリックを透過させる */
    z-index: 0;            /* 背景として配置 */
    overflow: hidden;      /* はみ出し部分を隠す */
}

/* 波紋の基本スタイル */
.ripple {
    position: absolute;
    border: 1px solid #5C9291;  /* 藍鼠色の線 */
    border-radius: 50%;         /* 円形にする */
    opacity: 0;                 /* 初期状態は透明 */
    animation: ripple 4s ease-out infinite;
}

/* 波紋アニメーション定義 */
@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.2;    /* 薄く表示開始 */
    }
    50% {
        opacity: 0.1;    /* 中間で更に薄く */
    }
    100% {
        width: 800px;    /* 大きく広がる */
        height: 800px;
        opacity: 0;      /* 完全に消える */
    }
}

/* =============================
   HEADER
============================= */

.site-header a{
	color: #2c2c2c;
}

.site-header a:hover{
	color: #c9a961;
}


.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid #d8c89a;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 40px;
}

.global-nav a {
  font-size: clamp(14px, 1.5vw, 18px);
  text-decoration: none;
}

/* =============================
   HERO
============================= */
.hero {
  padding-top: 10px;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  text-align: center;
}

.hero-logo img {
  max-width: 150px;
  margin: 0 auto 40px;
}

.hero-copy {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  font-size: clamp(14px, 3.5vw, 18px); 
  margin-bottom: 40px;
  letter-spacing: 0.4em;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: #c9a961;
  transform: translateY(-50%);
}

.hero-copy::before {
  left: -64px;
}

.hero-copy::after {
  right: -64px;
}


.section-label {
  position: relative;
  display: inline-block;
  padding: 0 32px;
  font-size: clamp(14px, 3.5vw, 18px); 
  letter-spacing: 0.4em;
  color: #2b2b2b;
}

.section-label::before,
.section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: #c9a961;
  transform: translateY(-50%);
}

.section-label::before {
  left: -64px;
}

.section-label::after {
  right: -64px;
}
/* =============================
   TODAY CARD
============================= */
.today-card {
  position: relative;
  background:url("../images/bgw.jpg");
  padding: 60px 32px;
  margin: 0 auto 40px;
  border: 1px solid #c9a961;
}

.today-card::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 2px solid #c9a961;
  pointer-events: none;
}

.today-title {
  font-size: clamp(24px, 4.5vw, 36px);
  letter-spacing :0.5em;
  margin-bottom: 20px;
}

.today-race {
  margin-bottom: 34px;
  letter-spacing :0.5em;
}

.diamond-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.diamond-row span {
  width: 12px;
  height: 12px;
  background: #c9a961;
  transform: rotate(45deg);
  margin: 0 5px;
}

.btn-detail {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  width: 80%;
  background: #2b2b2b;
  color: #fff;
  letter-spacing: 0.5em;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.btn-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c9a961;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-detail:hover::before {
  left: 0;
}

.btn-detail:hover {
  color: #fff;
}

.hero-note{
  letter-spacing: 0.4em;
}

/* =============================
   LINE
============================= */
.line-box {
  margin-top: 50px;
}

.line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00c300;
  color: #fff;
  padding: 18px 5px;
  text-decoration: none;
  font-size: clamp(16px, 4vw, 26px);
  font-weight: 500;
  margin: 0 auto 20px;
  width: 100%;
  animation: lineGlow 3s ease-in-out infinite;
  transition: background 0.3s ease;
}

.line-btn:hover {
  background: #999;
  color: #fff;
  animation: lineGlowOff 0.4s forwards;
}

@keyframes lineGlow {
  0% {
    box-shadow:
      0 0 0 rgba(0,0,0,0),
      0 0 10px rgba(0, 195, 0, 0.45),
      0 0 22px rgba(0, 195, 0, 0.25),
      0 0 36px rgba(0, 195, 0, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 rgba(0,0,0,0),
      0 0 20px rgba(0, 195, 0, 0.75),
      0 0 42px rgba(0, 195, 0, 0.50),
      0 0 68px rgba(0, 195, 0, 0.28);
  }
  100% {
    box-shadow:
      0 0 0 rgba(0,0,0,0),
      0 0 10px rgba(0, 195, 0, 0.45),
      0 0 22px rgba(0, 195, 0, 0.25),
      0 0 36px rgba(0, 195, 0, 0.12);
  }
}

@keyframes lineGlowOff {
  from {
    box-shadow:
      0 0 20px rgba(0, 195, 0, 0.75),
      0 0 42px rgba(0, 195, 0, 0.50),
      0 0 68px rgba(0, 195, 0, 0.28);
  }
  to {
    box-shadow:
      0 0 0 rgba(0,0,0,0);
  }
}

.line-icon {
  width: 32px;
  height: auto;
  display: block;
}

.line-note {
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: 0.4em;
}


/* ==================================================
   プラン一覧
================================================== */

.hm-plans{
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 10px 26px;
}

.hm-plan-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px){
  .hm-plan-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px){
  .hm-plan-grid{ grid-template-columns: repeat(3, 1fr); }
}

.hm-plan-card{
  --hm-bd: #a5bd49;
  --hm-bg: #a5bd49;
  --hm-badge-shadow: rgba(165,189,73,0.5);
  background: var(--hm-bg);
  border: 2px solid var(--hm-bd);
}

.hm-plan-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--hm-bd);
}

.hm-plan-head-left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hm-plan-ic{
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}

.hm-plan-name{
  display: inline-flex;
  align-items: center; 
  gap: 2px;
  font-size: clamp(24px, 4.2vw, 26px);
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1; 
}

.hm-plan-name span{
  font-size: clamp(16px, 4.2vw, 16px);
  color: var(--hm-bd);
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  top: 2px;
}

.hm-plan-badge{
  display: inline-block;
  padding: 8px 14px;
  background: var(--hm-bd);
  box-shadow: 0 2px 10px var(--hm-badge-shadow);
  color: #fff;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.16em;
}

.hm-plan-tabs{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--hm-bd);
}

.hm-plan-tab{
  padding: 10px 6px;
  text-align: center;
  border-right: 1px solid var(--hm-bd);
  cursor: pointer;
  transition: background 0.2s ease, filter 0.2s ease;
  background: #fff;
}

.hm-plan-tab:last-child{ border-right: none; }

.hm-plan-tab span{
  display: block;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.08em;
  color: #2c2c2c;
}

.hm-plan-tab em{
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: clamp(11px, 2.9vw, 13px);
  letter-spacing: 0.12em;
  color: #666;
}

.hm-plan-tab:hover{
  background: rgba(255,255,255,0.78);
  filter: brightness(1.02);
}

.hm-plan-tab:active{
  filter: brightness(0.98);
}

.hm-plan-tab:focus-visible{
  outline: 2px solid rgba(201,169,97,0.6);
  outline-offset: -2px;
}

.hm-plan-tab.is-active{
  background: var(--hm-bg);
  box-shadow: inset 0 -3px 0 0 var(--hm-bd);
}

.hm-plan-tab.is-active em{
  color: #2c2c2c;
  font-weight: 600;
}

.hm-plan-body{
  padding: 18px 16px 24px;
  text-align: center;
}

.hm-plan-pt{
  margin-top: 8px;
  font-size: clamp(38px, 4vw, 50px);
  letter-spacing: 0.05em;
  color: var(--hm-bd);
}

.hm-plan-pt strong{ font-weight: 600; }

.hm-plan-pt span{
  font-size: 0.55em;
  margin-left: 6px;
  letter-spacing: 0.14em;
}

.hm-plan-meta{
  margin-top: 6px;
  font-size: clamp(16px, 3vw, 18px);
  letter-spacing: 0.12em;
  color: #666;
}

.hm-plan-stars{
  margin-top: 10px;
  display: inline-flex;
  gap: 6px;
  font-size: clamp(20px, 4.8vw, 30px);
  letter-spacing: 0.08em;
  color: rgba(242,164,58,0.25);
}

.hm-plan-stars .is-on{
  color: #ffb74d;
}

.hm-plan-expect{
  margin-top: 10px;
  font-size: clamp(16px, 3vw, 18px);
  letter-spacing: 0.16em;
  color: #c9a961;
}

.hm-plan-expect span{ font-weight: 600; }

.hm-plan-list{
  margin: 14px auto 0;
  width: fit-content;
  text-align: left;
}

.hm-plan-list li{
  position: relative;
  padding-left: 1.1em;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.12em;
  color: #666;
  margin: 8px 0;
}

.hm-plan-list li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
}

.hm-plan-btn{
  position: relative;
  display: inline-block;
  margin-top: 18px;
  min-width: 70%;
  padding: 14px 18px;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: clamp(13px, 3.2vw, 15px);
  overflow: hidden;
  z-index: 1;
}

.hm-plan-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--hm-bd);
  transition: left 0.4s ease;
  z-index: -1;
}

.hm-plan-btn:hover::before {
  left: 0;
}

.hm-plan-btn:hover {
  color: #fff;
}


.hm-plan-panel{
  display: none;
}

/* ==================================================
   カード別テーマ
================================================== */

/* CARD 01 */
.hm-plan-card--1{
  --hm-bd:#b3aa83;
  --hm-bg:linear-gradient(45deg, #f7f6f2, #fff);
  --hm-badge-shadow: rgba(179,170,131,0.5);
}

/* CARD 02 */
.hm-plan-card--2{
  --hm-bd:#b64a84;
  --hm-bg:linear-gradient(45deg, #f8edf2, #fff);
  --hm-badge-shadow: rgba(182,74,122,0.5);
}

/* CARD 03 */
.hm-plan-card--3{
  --hm-bd:#6a6869;
  --hm-bg:linear-gradient(45deg, #f0f0f0, #fff);
  --hm-badge-shadow: rgba(106,104,105,0.5);
}

/* CARD 04 */
.hm-plan-card--4{
  --hm-bd:#101159;
  --hm-bg:linear-gradient(45deg, #e7e7ee, #fff);
  --hm-badge-shadow: rgba(16,17,89,0.5);
}

/* CARD 05 */
.hm-plan-card--5{
  --hm-bd:#7572cd;
  --hm-bg:linear-gradient(45deg, #f1f1fa, #fff);
  --hm-badge-shadow: rgba(117,114,205,0.5);
}

/* CARD 06 */
.hm-plan-card--6{
  --hm-bd:#6696aa;
  --hm-bg:linear-gradient(45deg, #eff4f6, #fff);
  --hm-badge-shadow: rgba(102,150,170,0.5);
}

/* CARD 07 */
.hm-plan-card--7{
  --hm-bd:#a12106;
  --hm-bg:linear-gradient(45deg, #f5e8e6, #fff);
  --hm-badge-shadow: rgba(161,23,6,0.5);
}

/* CARD 08 */
.hm-plan-card--8{
  --hm-bd:#324f8b;
  --hm-bg:linear-gradient(45deg, #e0e5ee, #fff);
  --hm-badge-shadow: rgba(50,79,139,0.5);
}

/* CARD 09 */
.hm-plan-card--9{
  --hm-bd:#ce7b22;
  --hm-bg:linear-gradient(45deg, #f8ebde, #fff);
  --hm-badge-shadow: rgba(206,123,34,0.5);
}

/* CARD 10 */
.hm-plan-card--10{
  --hm-bd:#c994ad;
  --hm-bg:linear-gradient(45deg, #f7eff3, #fff);
  --hm-badge-shadow: rgba(201,148,173,0.5);
}

/* CARD 11 */
.hm-plan-card--11{
  --hm-bd:#27a6ad;
  --hm-bg:linear-gradient(45deg, #dff2f3, #fff);
  --hm-badge-shadow: rgba(39,166,173,0.5);
}

/* CARD 12 */
.hm-plan-card--12{
  --hm-bd:#6a528c;
  --hm-bg:linear-gradient(45deg, #e9e5ee, #fff);
  --hm-badge-shadow: rgba(106,82,140,0.5);
}

/* CARD 13 */
.hm-plan-card--13{
  --hm-bd:#efc95a;
  --hm-bg:linear-gradient(45deg, #fdf7e6, #fff);
  --hm-badge-shadow: rgba(239,201,90,0.5);
}

/* CARD 14 */
.hm-plan-card--14{
  --hm-bd:#87c5c2;
  --hm-bg:linear-gradient(45deg, #edf6f6, #fff);
  --hm-badge-shadow: rgba(135,197,194,0.5);
}

/* CARD 15 */
.hm-plan-card--15{
  --hm-bd:#477cba;
  --hm-bg:linear-gradient(45deg, #e4ebf5, #fff);
  --hm-badge-shadow: rgba(72,124,186,0.5);
}

/* CARD 16 */
.hm-plan-card--16{
  --hm-bd:#b58439;
  --hm-bg:linear-gradient(45deg, #f4ede1, #fff);
  --hm-badge-shadow: rgba(181,132,57,0.5);
}

/* CARD 17 */
.hm-plan-card--17{
  --hm-bd:#773529;
  --hm-bg:linear-gradient(45deg, #ebe1df, #fff);
  --hm-badge-shadow: rgba(119,53,41,0.5);
}

/* CARD 18 */
.hm-plan-card--18{
  --hm-bd:#9b6a49;
  --hm-bg:linear-gradient(45deg, #f0e9e4, #fff);
  --hm-badge-shadow: rgba(155,106,73,0.5);
}

/* CARD 19 */
.hm-plan-card--19{
  --hm-bd:#9c8c73;
  --hm-bg:linear-gradient(45deg, #f0eeea, #fff);
  --hm-badge-shadow: rgba(156,140,115,0.5);
}

/* CARD 20 */
.hm-plan-card--20{
  --hm-bd:#396331;
  --hm-bg:linear-gradient(45deg, #ebefea, #fff);
  --hm-badge-shadow: rgba(57,99,49,0.5);
}

/* CARD 21 */
.hm-plan-card--21{
  --hm-bd:#5a884a;
  --hm-bg:linear-gradient(45deg, #eef3ed, #fff);
  --hm-badge-shadow: rgba(90,136,74,0.5);
}

/* CARD 22 */
.hm-plan-card--22{
  --hm-bd:#6a8c7b;
  --hm-bg:linear-gradient(45deg, #f0f3f2, #fff);
  --hm-badge-shadow: rgba(106,140,123,0.5);
}

/* CARD 23 */
.hm-plan-card--23{
  --hm-bd:#a5bd49;
  --hm-bg:linear-gradient(45deg, #f6f8ec, #fff);
  --hm-badge-shadow: rgba(165,189,73,0.5);
}

/* =============================
   CONCEPT SECTION
============================= */
.concept {
  position: relative;
  border-top: 1px solid #c9a961;
  border-bottom: 1px solid #c9a961;
  background: rgba(255,255,255,0.88);
}

.concept-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.concept-title {
  font-size: clamp(20px, 4.8vw, 32px);
  line-height: 1.9;
  letter-spacing: 0.5em;
  margin-bottom: 40px;
  color: #2b2b2b;
}

.concept-lead {
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.4em;

}

.hm-trust {
  padding: 80px 16px;
  
}

.hm-trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hm-feature-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.hm-feature {
  position: relative;
  background: url("../images/bgw.jpg");
  border: 2px solid #c9a961;
  padding: 60px 20px 56px;
}

.hm-feature-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.hm-feature-icon img {
  max-height: 100%;
  width: auto;
}

.hm-feature-title {
  font-size: clamp(26px, 3vw, 30px);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: #c9a961;
}

.hm-feature-tag {
  font-size: clamp(15px, 2.6vw, 18px);
  margin-bottom: 16px;
}

.hm-feature-text {
  font-size: clamp(14px, 2.4vw, 16px);
}


.hm-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) 16px;
  text-align: center;
}


.hm-trust2 {
  position: relative;
  border-top: 1px solid #c9a961;
  border-bottom: 1px solid #c9a961;
  background: rgba(255,255,255,0.88);
}

.hm-trust-grid {
  display: grid;
  gap: clamp(24px, 4vw, 32px);
  margin-top: 60px;
}



.hm-trust-card {
  background: rgba(245, 246, 246, 0.9);
  border: 2px solid #49a592;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.hm-trust-card-inner {
  padding: clamp(24px, 4vw, 32px);
}

.hm-trust-icon {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(24px, 4vw, 32px);
}

.hm-trust-icon img {
  width: 72px;
  height: auto;
}

.hm-trust-list {
  margin: 0;
}

.hm-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: clamp(15px, 2.8vw, 18px);
}

.hm-trust-row + .hm-trust-row {
  border-top: 1px solid #b9cbc7;
}

.hm-trust-row dt {
  font-weight: 400;
}

.hm-trust-row dd {
  margin: 0;
}

/* 数値 */
.hm-trust-num {
  font-weight: 600;
}

.hm-trust-num--accent {
  color: #49a592;
}


.hm-price {
  padding: 80px 16px 120px;
}

.hm-price-head {
  text-align: center;
  margin-bottom: 56px;
}


.hm-price-lead {
  font-size: clamp(14px, 3vw, 16px);
  letter-spacing: 0.5em;
  text-indent: 0.2em;
  margin: 54px 0 8px;
}

.hm-price-copy {
  font-size: clamp(14px, 2.7vw, 16px);
  letter-spacing: 0.5em;
  text-indent: 0.25em;
  color: #c9a961;
}

.hm-price-list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: nowrap;
}

.hm-price-card {
  border: 2px solid #c9a961;
  background: url("../images/bgw.jpg");
  width: 250px;
  padding: 32px 0 36px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
}

.hm-price-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.btn-detail2 {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  width: 80%;
  background: #2b2b2b;
  color: #fff;
  letter-spacing: 0.5em;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-size: clamp(14px, 3.2vw, 14px);
}

.btn-detail2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c9a961;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-detail2:hover::before {
  left: 0;
}

.btn-detail2:hover {
  color: #fff;
}

.hm-price-card .btn-detail2 {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1023px) {
  .hm-price-list {
    flex-direction: column;
    align-items: center;
  }

  .hm-price-card {
    width: 100%;
    height: auto;
	margin: 10px 0;
  }
}

.hm-price-icon {
  margin-bottom: 20px;
}

.hm-price-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin: 0 auto;
}

.hm-price-name {
  font-size: clamp(25px, 4vw, 28px);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c9a961;
  width: 80%;
}

.hm-price-price {
  font-size: clamp(28px, 4.5vw, 32px);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  color: #c9a961;
}


.hm-price-races {
  font-size: clamp(16px, 3.2vw, 16px);
  margin-bottom: 18px;
}

.hm-price-features {
  list-style: none;
  padding: 0 0 15px;
  margin: 0;
  text-align: left;
  font-size: clamp(16px, 2.8vw, 16px);
  line-height: 2.5;
}

.hm-price-features span {
  color: #c9a961;
}

.hm-price-ribbon {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80px;
  padding: 3px 0;
  background: #c9a961;
  color: #fff;
  font-size: clamp(14px, 2.6vw, 16px);
}

.hm-price-note {
  margin-top: 60px;
  text-align: center;
  font-size: clamp(11px, 2.6vw, 12px);
  letter-spacing: 0.15em;
}


.hm-voices {
  border-top: 1px solid #c9a961;
  border-bottom: 1px solid #c9a961;
  background: rgba(255,255,255,0.88);
}

.voices-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) 16px;
  text-align: center;
}

.hm-voices-head {
  text-align: center;
  margin-bottom: 56px;
}

.hm-voices-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hm-voices-card {
  flex: 1;
  display: flex;
}

.hm-voices-inner {
  border: 2px solid #c9a961;
  background: rgba(245, 246, 246, 0.9);
  padding: 32px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hm-voices-title {
  text-align: center;
  font-size: clamp(18px, 3.6vw, 20px);
  letter-spacing: 0.05em;
  text-indent: 0.2em;
  margin-bottom: 20px;
}

.hm-voices-rating {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 20px;
}

.hm-voices-stars {
  font-size: clamp(20px, 4vw, 24px);
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  color: #c9a961;
}

.hm-voices-score {
  margin-left: 8px;
  font-size: clamp(18px, 3.2vw, 22px);
}

.hm-voices-name {
  font-size: clamp(16px, 3vw, 16px);
  margin-bottom: 12px;
}

.hm-voices-text {
  font-size: clamp(14px, 2.8vw, 16px);
  text-align: left;
  line-height: 2;

}


.hm-faq {
  padding: 80px 16px 120px;
}

.hm-faq-head {
  text-align: center;
  margin-bottom: 60px;
}

.hm-faq-list {
  max-width: 1070px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.hm-faq-item {
  border: 2px solid #c9a961;
  background: rgba(255, 255, 255, 0.96);
  padding: 20px 24px;
}

.hm-faq-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hm-faq-row--answer {
  margin-top: 10px;
}

.hm-faq-badge {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: #c9a961;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.hm-faq-badge--a {
  background: #2c2c2c;
}

.hm-faq-question {
  font-size: clamp(15px, 3.2vw, 18px);
  color: #c9a961;
  line-height: 1.7;
}

.hm-faq-answer {
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.9;
}

.bt-cv {
  padding: 80px 16px 120px;
}

.bt-cv-head {
  text-align: center;
  margin-bottom: 56px;
}


.bt-cv-lead {
  font-size: clamp(14px, 3vw, 16px);
  letter-spacing: 0.5em;
  text-indent: 0.2em;
  margin: 80px 0;
}

.bt-cm {
  border-top: 1px solid #c9a961;
  border-bottom: 1px solid #c9a961;
  background: rgba(255,255,255,0.88);
  text-align: center;
  padding: 80px 0;
  font-size: clamp(14px, 3vw, 16px);
  letter-spacing: 0.5em;
}



.hm-footer {
  background: #2a2a2a;
  color: #fff;
  padding: 60px 20px 40px;
}

.hm-footer a{
  color: #fff;
  text-decoration: none;
}

.hm-footer a:hover{
	color: #999;
}

.hm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.hm-footer-block {
  flex: 1;
  min-width: 240px;
}

.hm-footer-title {
  font-size: clamp(14px, 3vw, 18px);
  margin-bottom: 16px;
  letter-spacing: 0.2em;
}

.hm-footer-block p {
  font-size: clamp(12px, 3vw, 14px);
  margin-bottom: 6px;
  letter-spacing: 0.2em;
}

.hm-footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.15em;
  opacity: 0.85;
}

/* 利用規約ページ */
.hm-terms {
  padding: 80px 16px;
  max-width: 900px;
  margin: 0 auto;
}

.hm-terms-head {
  text-align: center;
  margin-bottom: 48px;
}

.terms-label {
  font-size: clamp(16px, 4vw, 26px);
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.terms-label::before,
.terms-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 1px;
  background: #c9a961;
}

.terms-label::before {
  right: 100%;
  margin-right: 18px;
}

.terms-label::after {
  left: 100%;
  margin-left: 18px;
}

.terms-lead {
  text-align: left;
  font-size: clamp(13px, 3vw, 15px);
  margin-top: 30px;
}

.hm-terms-box {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #c9a961;
  padding: 28px 24px;
  margin-bottom: 28px;
  line-height: 1.9;
  border-radius: 4px;
}

.hm-terms-box h3 {
  font-size: clamp(14px, 3vw, 18px);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #2d2d2d;
}

.hm-terms-box p {
  font-size: clamp(13px, 3vw, 15px);
  color: #444;
}



@media (max-width: 1024px) {
  .hm-footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .hm-footer-block {
    margin-bottom: 32px;
  }
}



@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
  }

  .global-nav {
    display: none;
  }

  .site-logo {
    margin: 0 auto;
  }

.site-logo img {
    height: 44px;
  }

.hero-inner {
  padding: 40px 20px 60px;
}

.concept-inner {
    padding: 30px 16px;
  }

  .concept-title {
    letter-spacing: 0.18em;
  }

  .concept-lead {
    line-height: 1.9;
  }
}



@media (min-width: 768px){

body {
	height: 100%;	
}

.spbr{
    display: none;
}

.hero {
  padding-top: 30px;
}


.hero-logo img {
    margin-bottom: 60px;
}

.today-card {
    padding: 100px 70px;
	width: 420px;
}

.global-nav ul {
  display: flex;
  gap: 50px;
}

 .hero-copy::before,
  .hero-copy::after {
    width: 80px;
  }

  .hero-copy::before {
    left: -100px;
  }

  .hero-copy::after {
    right: -100px;
}
.section-label::before,
  .section-label::after {
    width: 80px;
  }

.section-label::before {
    left: -100px;
  }

.section-label::after {
    right: -100px;
}

.line-btn {
  margin: 0 auto 40px;
  width: 500px;
}

 .hm-trust {
    padding: 100px 24px 140px;
}

 .hm-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
}
 
.hm-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (min-width: 1024px){
body {
	height: 100%;
	background-size: auto, auto, auto;
}

.global-nav ul {
  display: flex;
  gap: 100px;
}

   .hm-today-head{
    padding: 30px 12px 20px;
  }

  .hm-today-line{
    width: 48px;
  }

.hero-inner {
    max-width: 900px;
}

.hm-feature-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.hm-feature {
    padding: 60px 20px 56px;
}

  .hm-price-list {
    align-items: flex-end;
  }

  .hm-price-card--stone {
    padding-top: 24px;
  }

  .hm-price-card--jade {
    padding-top: 28px;
  }

  .hm-price-card--en {
    padding-top: 60px;
  }

  .hm-price-card--king {
    padding-top: 60px;
  }

  .hm-price-card {
    display: flex;
  }

  .hm-price-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hm-price-features {
    margin-bottom: auto;
  }

  .hm-price-card .btn-detail2 {
    margin-top: 28px;
  }
  .hm-voices-list {
    flex-direction: row;
  }

}
  
.hm-today-head{
  width: 100%;
  padding: 50px 16px 70px;
  text-align: center;
}

.hm-today-inner{
  max-width: 900px;
  margin: 0 auto;
}

.hm-today-title{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(14px, 3.5vw, 18px); 
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  font-weight: 500;
  margin-bottom: 26px;
}

.hm-today-line{
  display: inline-block;
  width: 64px;
  height: 2px;
  background: #c9a961;
}

.hm-today-sub{
  font-size: clamp(13px, 3vw, 16px);
  letter-spacing: 0.18em;

}

.hm-today-title img{
	width: 30px;
	margin-right: -15px;
}

/* ==================================================
   推奨買い目ブロック（色切替対応）
================================================== */

.hm-tips{
  --hm-accent:#b04a7e;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 10px;
}

.hm-tips-out{
 background: #fff;
}
.hm-tips-inner{
  border: 2px solid rgba(var(--hm-accent), 1.0);
  background: rgba(var(--hm-accent), 0.1);
  padding: 18px;
}

.hm-tips-head{
  background: rgba(var(--hm-accent), 0.15);
  border: 1px solid rgba(var(--hm-accent), 1.0);
  padding: 16px 16px 14px;
}

.hm-tips-head-title{
  font-size: clamp(14px, 3.4vw, 18px);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.hm-tips-head-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hm-tips-kv{
  text-align: center;
}

.hm-tips-kv .k{
  display: block;
  font-size: clamp(11px, 3vw, 12px);
  letter-spacing: 0.18em;
  color: #666;
  margin-bottom: 6px;
}

.hm-tips-kv .v{
  display: block;
  font-size: clamp(16px, 4vw, 18px);
  letter-spacing: 0.18em;
  color: rgba(var(--hm-accent), 1.0);
  font-weight: 600;
}

.hm-tips-body{
  margin-top: 16px;
  border: 1px solid rgba(var(--hm-accent), 1.0);
  background: rgba(255,255,255,0.62);
  padding: 18px 16px 16px;
}

.hm-tips-title{
  font-size: clamp(16px, 4vw, 20px);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  color: #2c2c2c;
  position: relative;
  padding-bottom: 12px;
}

.hm-tips-title::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background: rgba(var(--hm-accent), 1.0);
  opacity: 0.7;
}

.hm-tips-list{
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.hm-tips-item{
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 14px 16px;
}

/* 左の番号丸 */
.hm-tips-no{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(var(--hm-accent), 1.0);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.1em;
}

.hm-tips-combo{
  font-size: clamp(16px, 4vw, 24px);
  letter-spacing: 0.18em;
  color: #2c2c2c;
  line-height: 1.2;
}

.hm-tips-type{
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 0.18em;
  color: rgba(var(--hm-accent), 1.0);
  margin-top: 6px;
}

.hm-tips-side{
  text-align: right;
  min-width: 120px;
}

.hm-tips-yen{
  font-size: clamp(16px, 4vw, 24px);
  letter-spacing: 0.14em;
  color: rgba(var(--hm-accent), 1.0);
  line-height: 1.2;
  font-weight: 600;
}

.hm-tips-rate{
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 0.14em;
  color: rgba(var(--hm-accent), 1.0);
  margin-top: 4px;
}

.hm-tips-total{
  margin-top: 18px;
  border: 1px solid rgba(var(--hm-accent), 1.0);
  background: rgba(var(--hm-accent), 0.15);
  padding: 18px 14px;
  text-align: center;
}

.hm-tips-total-label{
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.18em;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.hm-tips-total-label2{
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: 0.18em;
  color: #2c2c2c;
  margin: 10px 0 0;
}

.hm-tips-total-yen{
  font-size: clamp(28px, 7.2vw, 44px);
  letter-spacing: 0.18em;
  color: rgba(var(--hm-accent), 1.0);
  line-height: 1;
  font-weight: 600;
}

.hm-race-lead{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 16px;
}

.hm-race-lead-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: rgba(var(--hm-accent), 1.0);
  color: #fff;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  font-size: clamp(12px, 3.2vw, 14px);
  box-shadow: 0 2px 10px rgba(var(--hm-accent), 0.5);
}

.hm-race-lead-text{
  margin: 0;
  color: #2c2c2c;
  letter-spacing: 0.12em;
  font-size: clamp(13px, 3.4vw, 15px);
}

/* ============================
   舟券購入 CTA
============================ */
.hm-boat-cta{
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 10px;
}

.hm-boat-cta a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 24px;
  background: #1568c3; /* 固定 */
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(21,104,195,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hm-boat-cta a:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21,104,195,0.45);
}

.hm-boat-cta img{
  width: 48px;
  height: auto;
  display: block;
}

.hm-boat-cta-text{
  text-align: left;
}

.hm-boat-cta-text strong{
  display: block;
  font-size: clamp(16px, 4vw, 20px);
  letter-spacing: .15em;
}

.hm-boat-cta-text span{
  display: block;
  margin-top: 4px;
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: .12em;
  opacity: .9;
}

/* ============================
   注意文ブロック
============================ */
.hm-boat-note{
  max-width: 880px;
  margin: 0 auto 60px;
  padding: 22px 12px;
  border: 2px solid #c9a961;
  background: #faf7f2;
}

.hm-boat-note ul{
  margin: 0;
  padding-left: 1.2em;
}

.hm-boat-note li{
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.8;
  color: #444;
  margin-bottom: 6px;
}

.hm-message-ma{
	padding: 10px;
}
.hm-message-detail{
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 32px;
  background: rgba(255,255,255,0.85);
  border: 2px solid #c9a961;
}

.hm-message-detail-head{
  margin-bottom: 24px;
}

.hm-message-title{
  font-size: clamp(18px, 4vw, 24px);
  margin-bottom: 8px;
}

.hm-message-meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 3vw, 14px);
  color: #666;
}

.hm-message-status{
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: .1em;
}

.hm-message-status.is-unread{
  background: #c94542;
  color: #fff;
}

.hm-message-status.is-read{
  background: #aaa;
  color: #fff;
}

.hm-message-body{
  padding: 24px 0;
  line-height: 1.9;
  font-size: clamp(14px, 3.6vw, 16px);
  border-top: 1px solid #e2d3ad;
  border-bottom: 1px solid #e2d3ad;
}

.hm-message-actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.hm-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.hm-btn-main{
  background: #2a2a2a;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.hm-btn-main:hover{
  color: #fff;
  background: #c9a961;
  transform: translateY(-1px);
}

.hm-btn-main{
  background: #2a2a2a;
  color: #fff;
}

.hm-btn-sub{
  background: transparent;
  border: 1px solid #999;
  color: #444;
}
