@charset "UTF-8";
/*foundation---------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a,
a:visited,
button {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

html {
  font-size: 100px;
}
html.scroll-prevent {
  /*動き固定*/
  position: fixed;
  /*奥行きを管理*/
  z-index: -1;
  /*下2つで背景を元のサイズのまま表示することができる*/
  width: 100%;
  height: 100%;
}

body {
  line-height: 1;
  font-size: 0.1rem;
  color: #00113e;
  font-family: "kozuka-mincho-pro", serif;
  font-weight: 400;
  font-style: normal;
}
body.modal-open {
  overflow-y: hidden;
}


/* ヒーローセクション */
.price-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .price-hero {
    height: 220px; /* スマホでは高さを低く */
  }
}

.price-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/visual2.png'); /* 任意の背景画像に変更可能 */
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  z-index: 0;
}

.price-hero__overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.price-hero__title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .price-hero__title {
    font-size: 28px; /* フォントを小さく */
    margin: 0 auto;
  }
}


/* 価格表全体 */
.price-table {
  padding: 60px 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .price-table {
    padding: 40px 12px;
  }
}

.price-table__title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #00113e;
  font-weight: bold;
}




/* カードレイアウト */
.price-table__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.price-card {
  background: #fff;
  border: 2px solid #cb9334;
  border-radius: 16px;
  padding: 30px 40px;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

@media screen and (max-width: 767px) {
  .price-card {
    width: 100%;
    max-width: 300px;
    padding: 20px 24px;
  }
}



:root {
  --navy: #001B45;
  --gold: #E3B04B;
  --bg: #F7F8FA;
}


.priceplans {
  padding: 20px ;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  font-weight: bold;
}

.section-title {
  font-size: 26px;
  margin-bottom: 32px;
  color: var(--navy);
}

.plan-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 20px;
  margin-bottom: 20px;
}

.plan-card{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  padding: 24px 16px;
  position: relative;
  display: flex;
  flex-direction: column;

}

.plan-card.recommended {
  transform: scale(1.02);
  border: 2px solid var(--gold);
}

.badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 9999px;
}

.plan-card figure {
  margin: 0 0 16px;
  border-radius: 8px;
  overflow: hidden;
}

.plan-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.plan-card:hover img {
  transform: scale(1.04);
}

.plan-name {
  margin-top: 10px;
  font-size: 24px;
  margin: 0 0 8px;
  line-height: 2;
}

.plan-description{
  font-size: 16px;
  color: #666;
  text-align: left;
  margin-bottom: 10px;
  line-height:1.5;
  margin: 0 15px;
}

.plan-price {
  font-size: 30px;
  font-weight: 700;
  margin: 16px 0 16px;
  color: var(--navy);
}

.plan-price span {
  font-size: 16px;
  vertical-align: super;
}

.plan-price small {
  font-size: 12px;
}

.plan-features {
  list-style: none;
  margin: 15px 15px;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  min-height: 80px;
}

.plan-features .sub-note {
  color: #666; /* 少し薄いグレー系 */
  font-size: 90%; /* 文字サイズも少し小さくするなら */
  
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 15px;
}

.plan-table-wrap {
  padding: 8px 0;
}

.plan-table th,
.plan-table td {
  border: 1px solid #E3B04B;
  padding: 8px;
  text-align: left;
}

.plan-table th {
  background-color: #E3B04B;
  color: #fff;
  font-weight: bold;
}

.plan-table td {
  background-color: #f8f6f1;   /* クリーム系 */
  border: 1px solid #E3B04B;   /* ゴールドの線 */
  padding: 8px;
}

.plan-table tr:nth-child(even) td {
  background-color: #fdfcfa;   /* 交互に淡い色 */
}

.btn {
  display: flex;
  align-items: center;     /* 上下中央 */
  justify-content: center; /* 左右中央 */
  width: 100%;
  background-color: var(--navy);
  color: #fff !important;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: auto;
}

.btn:hover {
  background-color: #0f1a5c; /* ネイビーを少し暗く */
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .section-title {
    font-size: 22px;
  }
  .plan-price {
    font-size: 25px;
    text-align: center;
    margin: 0 auto;
  }
  .plan-name {
    font-size: 20px;
    margin: 0 auto;
  }
  .plan-description{
    font-size: 16px;
    color: #666;
    text-align: left;
    margin: 0;
  }
  .plan-features{
    margin: 0 ;
  }

  .plan-grid{
    margin-top: 10px;
  }

}




