/* ----------------------------------
共通
---------------------------------- */
section {
  padding: 60px 20px;
}
.wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
h2 {
  font-size: 2.3em;
  text-align: center;
  margin-bottom: 2em;
  color: #005b96;
}
.pc-br {
display: inline;
}
.sp-br {
display: none;
}
@media (max-width: 592px) {
.pc-br {
  display: none;
}
.sp-br {
  display: inline;
}
}


/* ----------------------------------
ボタン共通
---------------------------------- */
.main-visual-overlay .btn-main,.campaign-section .btn-main {
  pointer-events: auto;
  display: inline-block;
  padding: 8px 48px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 60px;
  background: linear-gradient(145deg, #013220 0%, #046d3b 100%);
  box-shadow:
  inset 0 2px 4px rgba(255, 255, 255, 0.3),
  0 6px 12px rgba(0, 0, 0, 0.3),
  0 0 0 4px rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.main-visual-overlay .btn-main::before,
.campaign-section .btn-main::before {
content: "";
position: absolute;
top: 0;
left: -80%;
width: 60%;
height: 100%;
background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.35) 60%,
    rgba(255, 255, 255, 0) 100%
  );
transform: skewX(-20deg);
transition: left 1.2s ease;
}

.main-visual-overlay .btn-main:hover,
.campaign-section .btn-main:hover {
transform: translateY(-3px);
box-shadow:
inset 0 2px 4px rgba(255, 255, 255, 0.4),
0 8px 20px rgba(0, 0, 0, 0.35),
0 0 0 4px rgba(255, 255, 255, 0.3);
}

.main-visual-overlay .btn-main:hover::before,
.campaign-section .btn-main:hover::before {
left: 120%;
}

/* 上の行 */
.btn-main .btn-line1 {
display: block;
font-size: 16px;
font-weight: 700;
margin-bottom: 5px;
text-align: center;
}

/* クーポン表示ブロック */
.btn-main .coupon-wrap {
display: inline-block;
position: relative;
line-height: 1.1;
}

/* 金額（大きい文字） */
.btn-main .coupon-big {
font-family: "Montserrat", "Noto Sans JP", sans-serif;
font-size: 40px;
font-weight: 700;
color: #F4D700;
}

/* OFF 部分 */
.btn-main .coupon-off {
font-size: 28px;
font-weight: 700;
color: #F4D700;
margin-left: 6px;
}

/* “クーポン進呈” を右上に配置（添付画像と同じ） */
.btn-main .coupon-small {
position: absolute;
top: -1px;
right: -18px;
font-size: 13px;
opacity: 0.9;
}

.btn-note .highlight-red {
font-family: "Montserrat", "Noto Sans JP", sans-serif;
color: #ff5252;
font-weight: bold; 
}

@media (max-width: 1124px) {
.main-visual-overlay .btn-main {
  white-space: nowrap;
}
}
@media (max-width: 948px) {
.btn-main .coupon-big {
  font-size: 30px;
}
.btn-main .coupon-off {
  font-size: 26px;
  margin-left: 12px;
}
.btn-main .coupon-small {
  font-size: 11px;
  top: -3px;
  right: -8px;
}
}
@media (max-width: 768px) {
.main-visual-overlay .btn-main {
  display: inline-block;
  text-align: center;
  border-radius: 90px;
  pointer-events: auto;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 20px);
  padding: clamp(8px, 2vw, 16px) clamp(20px, 5vw, 48px);
  max-width: 90%;
  white-space: nowrap;
}
.main-visual .main-visual-overlay .highlight-yellow {
  color: #fbcf04;
}
.btn-note {
  font-size: 0.8rem;
}
}
@media screen and (max-width: 510px) {
.btn-main .coupon-big {
  font-size: 26px;
}
.btn-main .coupon-off {
  font-size: 20px;
  margin-left: 12px;
}
.btn-main .coupon-small {
  right: -18px;
}
}
@media screen and (max-width: 455px) {
.main-visual-overlay .btn-main {
  padding: clamp(8px, 2vw, 16px) clamp(20px, 7vw, 48px);
}
.btn-main .btn-line1 {
  font-size: 12px;
  margin-bottom: 3px;
}
.btn-main .coupon-big {
  font-size: 24px;
}
.btn-main .coupon-small {
  top: -6px;
  right: -12px;
  font-size: 10px;
  font-weight: 500;
}
}


/* ----------------------------------
メインビジュアル
---------------------------------- */
.main-visual {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.main-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pc-img {
display: block;
}
.sp-img {
/* display: none; */
  display: none !important;
height: 0 ;
width: 0 ;
visibility: hidden;
}
.main-visual-overlay {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}



@media (max-width: 1124px) {
.main-visual {
  margin-top: 70px;
}
.main-visual-overlay {
  top: 72%;
}
}
@media (max-width: 948px) {
.main-visual {
  margin-top: 130px;
}
}
@media (max-width: 879px) {
.main-visual {
  margin-top: 0;
}
}
@media (max-width: 768px) {
.pc-img {
  display: none !important;
  height: 0;
  width: 0;
  visibility: hidden;
}
.sp-img {
  display: block !important;
  width: 100%;
  height: auto;
  visibility: visible;
}
.main-visual-overlay {
  top: 64%;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: center;
}
.pc-br {
  display: none;
}
.sp-br {
  display: inline;
}
}



/* ----------------------------------
こんな業者様に選ばれています
---------------------------------- */
.industry {
padding: 60px 0;
background-color: #f1f1f1;
}
.industry-title-wrapper {
position: relative;
text-align: center;
margin-bottom: 30px;
height: 120px;
background-color: #fff;
}
.industry-title-bg-left {
position: absolute;
top: 5px;
left: 0;
width: 45%;
height: 91%;
background-color: #f1f1f1;
clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
z-index: 0;
}
.industry-title-bg-right {
position: absolute;
top: 0;
left: 45%;
width: 55%;
height: 100%;
background-color: #fff;
clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
z-index: 0;
}
.industry-title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
gap: 20px;
z-index: 1;
white-space: nowrap;
}
.title-left {
font-size: 2rem;
font-weight: 700;
color: #016899;
padding: 0 20px;
z-index: 1;
}
.title-right {
font-size: 3.5rem;
font-weight: 900;
color: #F4D700;
-webkit-text-stroke: 1px #016899;
/* text-stroke: 1px #016899; */
padding: 0 20px;
z-index: 1;
}
.industry-box {
background: #f1f1f1;
max-width: 100%;
width: 100%;
margin: 0 auto;
box-sizing: border-box;
padding: 0;
border-radius: 8px;
}
.industry-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
max-width: 900px;
padding: 0;
margin: 0 auto;
}
.industry-card {
text-align: center;
transition: transform 0.3s ease;
}
.industry-card:first-child img {
object-fit: cover;
object-position: right bottom;
}
.industry-card img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 0;
display: block;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.industry-card p {
background: #fff;
color: #0033a0;
font-size: 1.4rem;
font-weight: 700;
margin: 0;
padding: 8px 0;
width: 100%;
box-sizing: border-box;
}
.industry-card.top-title {
display: flex;
flex-direction: column;
}
.industry-card.top-title p {
order: -1;
border-bottom: none;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.industry-card.bottom-title {
display: flex;
flex-direction: column;
}
.industry-card.bottom-title p {
border-top: none; 
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}


@media (max-width: 1024px) {
.industry-title {
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  text-align: center;
}
.industry-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 100%;
  padding: 0 10px;
}
.industry-card.top-title img {
border-radius: 0 0 6px 6px;
}
.industry-card.top-title p {
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.industry-card.bottom-title {
  flex-direction: column;
}
.industry-card.bottom-title p {
  order: 1;
  border-top: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.industry-card.bottom-title img {
  border-radius: 6px 6px 0 0;
}
}

@media (max-width: 718px) {
.industry-title-wrapper {
  height: auto;
  padding: 20px 10px;
}
.industry-title {
  position: static;
  transform: none;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 5px;
  white-space: normal;
  padding: 0;
}
.title-left {
  font-size: 1.8rem;
  padding: 0 5px;
}
.title-right {
  font-size: 2.3rem;
  padding: 0 5px;
  -webkit-text-stroke: 0.8px #016899;
}
.industry-title-bg-left {
  top: 5px;
  width: 100%;
  height: 100%;
  background-color: #f1f1f1;
  clip-path: polygon(0 0, 100% 0, 0 97%);
}
.industry-title-bg-right {
  display: none;
}
.industry-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
.industry-card img {
  height: 160px;
  object-fit: cover;
}
.industry-card p {
  font-size: 1.2rem;
  padding: 6px 0;
}
.industry-card.bottom-title {
  flex-direction: column;
}
.industry-card.bottom-title p {
  order: -1;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top: none;
  border-bottom: none;
}
.industry-card.bottom-title img {
  border-radius: 0 0 6px 6px;
}
}

@media (max-width: 480px) {
.industry {
  padding-top: 30px;
}
.industry-title {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 4px;
  text-align: center;
}
.industry-title .title-left,
.industry-title .title-right {
  display: block;
  line-height: 1.3;
}
.industry-title-wrapper {
  padding: 15px 5px;
  margin-bottom: 30px;
}
.title-left {
  font-size: 1.4rem;
}
.title-right {
  font-size: 1.8rem;
  -webkit-text-stroke: 0.6px #016899;
}
.industry-card p {
  font-size: 1rem;
  padding: 4px 0;
}
}




/* ----------------------------------
フローズンシーフーズが選ばれる理由 
---------------------------------- */
.reason {
position: relative;
padding: 80px 20px;
font-family: "Noto Sans JP", sans-serif;
overflow: hidden;
}
.reason::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("img/reason_bg.png") no-repeat center center;
background-size: cover;
opacity: 0.8;
z-index: 0;
}
.reason > * {
position: relative;
z-index: 1;
}
.reason-title-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
}
.reason-box:first-of-type::before {
content: "";
position: absolute;
top: -80px;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 100px;
background: url("img/reason.png") no-repeat center center;
background-size: contain;
}
.reason-title {
text-align: center;
line-height: 1;
padding-right: 250px;
}
.reason-sub {
font-size: 2.3rem;
font-weight: 900;
padding-bottom: 16px;
background: linear-gradient(90deg, #002f7d, #0099ff, #002f7d);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: 0.05em;
}
.reason-main {
  margin: 0;
  line-height: 1;
display: inline-flex;
flex-wrap: wrap;
justify-content: center;
}
.blue-set span {
background: #1d4ed8;
color: #fff;
border: 5px solid #1d4ed8;
font-size: 2.8rem;
font-weight: 700;
display: inline-block;
padding: 10px 10px;
margin-right: 4px;
letter-spacing: 2px;
}
.white-set span {
background: #ffffff;
color: #1d4ed8;
border: 5px solid #1d4ed8;
font-size: 2.8rem;
font-weight: 700;
display: inline-block;
padding: 10px 10px;
margin-right: 4px;
letter-spacing: 2px;
}
.reason-image {
position: absolute;
top: -20px;
right: 0;
}
.reason-image img {
max-width: 200px;
height: auto;
display: block;
}
.reason-box {
position: relative;
max-width: 800px;
display: flex;
align-items: flex-start;
gap: 20px;
margin: 50px auto;
border: 8px outset #00688c;
}
.reason-box:first-of-type::before {
content: "";
position: absolute;
top: 0px;
left: 50%;
transform: translateX(-50%);
width: 200px;
height: 100px;
background: url("img/reason.png") no-repeat center center;
background-size: contain;
}
.reason-box .text {
display: flex;
flex-direction: column;
width: 100%;
}
.reason-box .text h3 {
position: relative;
font-size: 1.4rem;
color: #ffffff;
background-color: #777777;
margin: 0;
padding: 10px 20px 10px 230px;
font-weight: 700;
line-height: 1.4;
}
.reason-box .text h3::before {
content: "";
position: absolute;
left: -80px;
top: 50%;
transform: translateY(-50%);
width: 400px;
height: auto;
aspect-ratio: 3 / 1;
background-repeat: no-repeat;
background-position: center center;
background-size: contain;
z-index: 1;
}
.reason-box:nth-of-type(2) .text h3::before {
background-image: url("img/point1.png");
}
.reason-box:nth-of-type(3) .text h3::before {
background-image: url("img/point2.png");
}
.reason-box:nth-of-type(4) .text h3::before {
background-image: url("img/point3.png");
}
.reason-box .text .content-row {
display: flex;
align-items: flex-end;
background: #fff;
gap: 20px;
box-sizing: border-box;
position: relative;
overflow: visible;
height: 180px;
}
.reason-box .text .content-row p {
font-size: 1.2rem;
margin: 0;
line-height: 1.8;
text-align: center;
position: absolute;
top: 50%;
left: 100px;
right: 216px;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
padding: 0 10px;
}
.reason-box .text .content-row img {
width: 196px;
object-fit: cover;
padding-bottom: 10px;
position: absolute;
bottom: 0;
right: 20px;
display: block;
}

@media (max-width: 1024px) {
.reason {
  padding: 60px 15px;
}
.reason-title-wrapper {
  flex-direction: row;
  gap: 20px;
  max-width: 700px;
}
.reason-title {
  padding-right: 180px;
}
.reason-sub {
  font-size: 2rem;
}
.blue-set span,
.white-set span {
  font-size: 2.4rem;
  padding: 8px 8px;
  margin-right: 3px;
}
.reason-image img {
  max-width: 160px;
}
}

@media (max-width: 718px) {
.reason {
  padding: 50px 10px;
}
.reason-title-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 100%;
}
.reason-title {
  width: 100%;
  padding-right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reason-image img {
  display: none;
}
.reason-sub {
  font-size: 2.3rem;
}
.blue-set span,
.white-set span {
  font-size: 3rem;
  padding: 6px 6px;
  margin-right: 2px;
}
.reason-box {
  transform: scale(0.85);
  transform-origin: center top;
  margin: 30px auto;
}
.reason {
  padding: 60px 10px;
}
.reason-image {
  display: none;
}
.reason-title {
  width: 100%;
  padding-right: 0;
}
.reason-box .text h3 {
  padding: 10px 20px 10px 150px;
}
.reason-box .text h3::before {
  width: 300px;
  top: 30%;
}
.reason-box .text .content-row p {
  font-size: 1rem;
  left: 30px;
}
}

@media (max-width: 592px) {
.reason-box {
  margin-bottom: 15px;
}
.reason-sub {
  font-size: 1.7rem;
}
.blue-set span,
.white-set span {
  font-size: 2.3rem;
  padding: 4px 5px;
}
.reason-box .text h3 {
  font-size: 1.3rem;
  padding-left: 130px;
}
.reason-box .text .content-row {
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 背景画像として扱う */
.reason-box .text .content-row img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ← 中央配置のポイント */
  width: 100%;
  height: 100%;
  object-fit: contain; /* 全体を表示 */
  opacity: 0.3;
  filter: brightness(110%);
  z-index: 0;
}

/* 画像の上に重ねるテキスト */
.reason-box .text .content-row p {
  position: absolute;  /* ← 相対ではなく絶対位置に */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ← 中央揃えの決め手！ */
  z-index: 2;
  margin: 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000;
  /* background: rgba(255, 255, 255, 0.6); */
  text-shadow: 
  0 2px 4px rgba(255, 255, 255, 0.8), /* 白っぽい浮き影 */
  0 0 10px rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  box-sizing: border-box;
}

/* 最初の reason-box の画像だけ小さく */
.reason > .reason-box:first-child .text .content-row img {
  width: 85%;
  margin: 0 auto;
}
}

@media (max-width: 384px) {
.white-set {
  margin-top: 2px;
}
.reason-box .text .content-row p {
  font-size: 1rem;
}
}





/* ----------------------------------
他社との比較表
---------------------------------- */
.comparison {
background: url("img/comparison_bg.png") no-repeat;
background-size: 105% 50%;
background-position: -80px 630px;
padding: 90px 0;
position: relative;
}
.comparison::before {
content: "";
position: absolute;
top: 8px;
left: 8px;
right: 8px;
bottom: 8px;
border: 2px dashed rgba(35,77,184,0.4);
border-radius: 12px;
pointer-events: none; 
}
.comparison-title {
position: relative;
text-align: center;
line-height: 1;
margin-bottom: 30px;
}
.comparison-title .title-top {
display: block;
font-size: 2rem;
font-weight: 600;
color: #fff;
position: relative;
top: 30px;
z-index: 3;
line-height: 1;
}
.comparison-title .title-bottom {
font-size: 0;
margin-top: 0;
letter-spacing: 0;
word-spacing: 0;
position: relative;
z-index: 2;
line-height: 1;
display: inline-block;
}
.comparison-title .char {
display: inline-block;
padding: 12px 12px;
margin: 0;
line-height: 1;
font-size: 6rem;
font-weight: bold;
border: 3px solid #1D3AAC;
border-right: none;
}
.comparison-title .char:last-child {
border-right: 3px solid #1D3AAC;
}
.comparison-title .white-bg {
background-color: #fff;
color: #1D3AAC;
}
.comparison-title .yellow-bg {
background-color: #FFD700;
color: #1D3AAC;
}
.title-bottom_img {
position: absolute;
left: 50%;
top: -5px;
transform: translateX(-50%);
width: 800px;
z-index: 1;
}
.comparison-table {
width: 100%;
max-width: 900px;
margin: 0 auto;
border-collapse: collapse;
text-align: center;
table-layout: fixed;
}
.comparison-table tr:nth-child(2),
.comparison-table tr:nth-child(3),
.comparison-table tr:nth-child(4) {
height: 80px;
}
.comparison-table th,
.comparison-table td {
border: 2px solid #333333;
padding: 12px;
width: 25%;
}
.comparison-table th {
background-color: #1D3AAC;
color: #fff;
font-size: 1.3rem;
vertical-align: middle;
}
.comparison-table td {
background-color: #ffffff; /* 白背景 */
font-size: 1.2rem;
vertical-align: middle;
}
.comparison-table td:last-child,
.comparison-table th:last-child {
border-right: 4px solid #d9534f;
border-left: 4px solid #d9534f;
font-weight: bold;
}
.comparison-table th:last-child {
border-top: 4px solid #d9534f;
}
.comparison-table tr:last-child td:last-child {
border-bottom: 4px solid #d9534f;
}
.comparison-table .highlight {
color: #d9534f;
font-weight: bold;
}
.comparison-table .orange {
color: #DAA520;
font-weight: bold;
}
.comparison-table .frozen-th {
background-color: #1D3AAC;
vertical-align: middle;
padding: 20px;
}
.comparison-table .frozen-logo {
max-width: 120px;
height: auto;
display: block;
margin: 0 auto;
}

@media (max-width: 1024px) {
.comparison {
  background-size: 120% 50%;
  background-position: center bottom;
  padding: 70px 0;
}
.comparison-title .title-top {
  font-size: 1.8rem;
  top: 20px;
}
.comparison-title .char {
  font-size: 4.8rem;
  padding: 10px 10px;
}
.title-bottom_img {
  width: 600px;
  top: 0;
}
.comparison-table {
  max-width: 100%;
  font-size: 1.1rem;
}
.comparison-table th,
.comparison-table td {
  padding: 10px;
}
.comparison-table .frozen-logo {
  max-width: 100px;
}
}

@media (max-width: 768px) {
.comparison {
  background-size: 150% 50%;
  background-position: center bottom;
  padding: 60px 10px;
}
.comparison-title .title-top {
  font-size: 1.6rem;
  top: 25px;
}
.comparison-title .char {
  font-size: 3.6rem;
  padding: 8px 8px;
  border-width: 2px;
}
.title-bottom_img {
  width: 480px;
  top: 5px;
}
.comparison-table {
  font-size: 1rem;
  max-width: 100%;
  border-width: 1px;
}
.comparison-table th,
.comparison-table td {
  padding: 8px;
}
.comparison-table th {
  font-size: 1.1rem;
}
.comparison-table td {
  font-size: 1rem;
}
.comparison-table .frozen-logo {
  max-width: 90px;
}
}

@media (max-width: 592px) {
.comparison {
  background: none;
  padding: 40px 5px;
}
.comparison::before {
  border: none;
}
.comparison-title {
  margin-bottom: 20px;
}
.comparison-title .title-top {
  font-size: 1.3rem;
  top: 20px;
}
.comparison-title .char {
  font-size: 3.9rem;
  padding: 6px 6px;
  border-width: 2px;
}
.title-bottom_img {
  width: 420px;
  top: 0;
}
.comparison-table {
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  border-spacing: 0;
}
.comparison-table th,
.comparison-table td {
  padding: 6px;
  width: auto;
  min-width: 120px;
}
.comparison-table th:first-child {
  position: sticky;
  left: 0;
  background: #1D3AAC;
  z-index: 2;
}
.comparison-table .frozen-logo {
  max-width: 70px;
}
}



/* ----------------------------------
お客様の声・導入事例
---------------------------------- */
.voice-section {
position: relative;
}
.voice-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("img/voice_bg.jpg") no-repeat center center;
background-size: cover;
opacity: 0.4;
z-index: -2;
}
.voice-overlay {
width: 100%;
max-width: 950px;
margin: 0 auto;
}
.voice-title {
position: relative;
width: 60%;
margin: 50px auto 70px;
text-align: center;
font-size: 2.1rem;
font-weight: 700;
color: #fff;
padding: 19px 60px; 
background: linear-gradient(135deg, #1e4aa0, #5fa8ff);
border: 3px solid #234db8;
box-shadow: -12px -12px 24px rgba(0,0,0,0.15), -8px -8px 0 #e5e5e5;
}
.voice-title::before {
content: "";
position: absolute;
top: 8px;
left: 8px;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.1);
z-index: 1;
}
.voice-cards {
display: flex;
justify-content: center;
gap: 22px;
flex-wrap: wrap;
}
.voice-card {
width: 300px;
background: #fff;
border: 4px solid #234db8; 
box-shadow: 0 8px 20px rgba(0,0,0,0.12), 0 0 0 6px #cbe9ff;
overflow: visible;
}
.voice-header {
position: relative;
height: 120px;
overflow: visible;
padding: 16px 20px;
box-sizing: border-box;
font-size: 2rem;
}
.voice-header p {
font-size: 1.2rem;
}
.voice-header .trapezoid {
position: absolute;
top: 0;
left: 0;
width: 270px;
height: 180px;
background: #1e4aa0;
z-index: 1;
clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%);
background: linear-gradient(
  135deg,
  #0f2a70 0%,
  #1e4aa0 30%,
  #5fa8ff 60%, 
  #cbe9ff 100%
);
}
.voice-role {
position: relative;
margin: 0;
padding: 6px 0 0 8px;
font-weight: 700;
color: #fff;
z-index: 2;
line-height: 1.1;
font-size: 0.98rem;
}
.voice-img {
position: absolute;
top: 57px;
right: 20px;
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 6px solid #ffffff; 
box-shadow: 0 6px 16px rgba(0,0,0,0.12);
z-index: 3; 
background: #eee;
}
.voice-text {
position: relative;
background: #f0f6ff; 
margin: 72px 16px 24px;
padding: 40px 30px 28px; 
font-size: 1.1rem;
color: #333;
line-height: 1.75;
text-align: left;
box-sizing: border-box;
flex-grow: 1; 
box-sizing: border-box;
overflow: hidden;
}
.voice-text::before {
content: "";
position: absolute;
top: 12px;
left: 14px;
width: 50px;
height: 50px;
background: url("img/quotation_1.png") no-repeat center center;
background-size: contain;
opacity: 0.6;
}
.voice-text::after {
content: "";
position: absolute;
bottom: 12px;
right: 14px;
width: 50px;
height: 50px;
background: url("img/quotation_2.png") no-repeat center center;
background-size: contain;
opacity: 0.6;
}

@media screen and (max-width: 1024px) {
.voice-title {
  width: 80%;
  font-size: 1.8rem;
  margin: 40px auto 60px;
  padding: 16px 40px;
}
.voice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-content: center;
}
.voice-card {
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
}
.voice-img {
  right: 24px;
  width: 150px;
  height: 150px;
}
.voice-text {
  margin: 80px 14px 20px;
  padding: 30px 24px 24px;
  font-size: 1rem;
}
}

@media screen and (max-width: 768px) {
.voice-overlay {
  max-width: 90%;
}
.voice-title {
  width: 100%;
  font-size: 1.5rem;
  padding: 14px 24px;
  margin: 30px auto 40px;
  border-width: 2px;
  box-shadow: -6px -6px 12px rgba(0,0,0,0.15), -4px -4px 0 #e5e5e5;
}
.voice-cards {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.voice-card {
  width: 100%;
  max-width: 360px;
}
.voice-header {
  height: 100px;
  padding: 12px 16px;
}
.voice-header .trapezoid {
  width: 260px;
  height: 130px;
}
.voice-role {
  font-size: 0.95rem;
}
.voice-img {
  top: 38px;
  right: 24px;
  width: 125px;
  height: 125px;
  border: 4px solid #fff;
}
.voice-text {
  margin: 54px 12px 20px;
  padding: 26px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.voice-text::before,
.voice-text::after {
  width: 36px;
  height: 36px;
  opacity: 0.5;
}
}

@media screen and (max-width: 657px) {
.voice-cards {
  max-width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.voice-card {
  width: 100%;
}
  .voice-img {
  top: 38px;
  right: 24px;
  width: 125px;
  height: 125px;
}
}

@media screen and (max-width: 413px) {
.voice-cards {
  max-width: 100%;
}
}



/* ----------------------------------
商品購入
---------------------------------- */
.item {
padding: 60px 0;
}


/* ----------------------------------
よくあるご質問
---------------------------------- */
.faq {
background-color: #f5f9fc;
padding: 80px 20px;
}
.faq-item {
width: 77%;
margin: 0 auto;
margin-bottom: 1.8em;
}
.faq-question {
display: flex;
align-items: stretch;
}
.faq-label {
position: relative;
background: #333;
color: #fff;
font-weight: bold;
padding: 10px 14px;
border-radius: 3px 0 0 3px;
display: flex;
align-items: center;
}
.faq-label::after {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -10px;
border-width: 10px 8px 0 8px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
.faq-text {
font-weight: bold;
background: #fff;
border: 1px solid #d3e0eb;
padding: 10px 14px;
border-radius: 0 3px 3px 0;
flex: 1;
display: flex;
align-items: center;
}
.faq-answer {
background-color: #f5f9fc;
padding: 12px 16px;
border-radius: 3px;
line-height: 1.6;
}
@media screen and (max-width: 768px) {
.faq .wrapper {
  width: 100%;
}
.faq-item {
  width: 100%;
}
}



/* ----------------------------------
登録セクション
---------------------------------- */
/* 登録セクション全体 */
.register-section {
text-align: center;
padding: 60px 0;
background: url("img/register_bg.png") no-repeat center center;
background-size: cover; 
background-position: center;
position: relative;
}

/* 画像のフェードイン（最初に出る） */
.fadein-left {
opacity: 0;
transform: translateX(-80px);
transition: opacity 0.8s ease-out, transform 1.0s cubic-bezier(0.25, 1.5, 0.5, 1);
position: relative;
z-index: 10;
}
.fadein-left.active {
opacity: 1;
transform: translateX(0);
}

/* register-steps：後から表示されるように遅延 */
.register-steps {
counter-reset: step;
max-width: 500px;
margin: -170px auto 0;
position: relative;
z-index: 1;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.register-steps.active {
opacity: 1;
transform: translateY(0);
}

/* 各ステップのアニメーション */
.register-step {
position: relative;
color: #fff;
margin: 0;
padding: 60px 15px 20px;
display: flex;
align-items: center;
gap: 15px;
clip-path: polygon(
  0   0,
  50% 15%,
  100% 0,
  100% 85%,
  50% 100%,
  0   85% 
);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
overflow: hidden;
opacity: 0;
transform: translateY(40px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.register-step.active {
opacity: 1;
transform: translateY(0);
}

/* ステップ番号 */
.register-step::before {
counter-increment: step;
content: counter(step);
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: rgba(255,255,255,0.8);
color: #4169E1; 
font-weight: bold;
font-size: 1.8rem;
margin-right: 10px; 
flex-shrink: 0;
line-height: 1;
font-family: 'Arial', sans-serif;
position: relative;
top: -20px;
}

@keyframes sparkle {
0% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
100% { transform: scale(0.8) rotate(-15deg); opacity: 0.5; }
}
.register-step:nth-child(1) {
min-height: 240px;
padding-top: 90px;
background: linear-gradient(to bottom, #6b86ff, #4169E1);
clip-path: polygon(
  0 0, 
  100% 0, 
  100% 85%, 
  50% 100%, 
  0 85% 
);
}
.register-step:nth-child(2) {
background: linear-gradient(to bottom, #6bb4f5, #2E8AE6);
}
.register-step:nth-child(3) {
background: linear-gradient(to bottom, #5fd8d6, #1DB9C3);
}
.register-step:nth-child(4) {
background: linear-gradient(to bottom, #47e0b4, #21C79A);
}
.register-step:nth-child(5) {
background: linear-gradient(to bottom, #73de9d, #50C878);
}
.register-step img {
width: 150px;
height: 150px;
flex-shrink: 0;
}
.register-step p {
margin: 0;
padding-left: 20px;
font-size: 1.1rem;
text-align: center;
}
.register-step:not(:last-child) {
margin-bottom: -15px;
}
.register-step:hover {
transform: scale(1.03);
filter: brightness(1.1);
}

@media screen and (max-width: 1024px) {
.register-content-wrapper {
  width: 150%;
  left: -25%;
}
.register-steps {
  margin: -160px auto 0;
}
}
@media screen and (max-width: 718px) {
.register-content-wrapper {
  width: 180%;
  left: -40%;
}
.register-steps {
  margin: -150px auto 0;
  max-width: 95%;
}
.register-step {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.register-step::before {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
}
.register-step p {
  text-align: center;
  padding-left: 0;
  font-size: 1rem;
}
}

@media screen and (max-width: 510px) {
.register-steps {
  margin: -110px auto 0;
}
.register-step p {
  margin-bottom: 30px;
}
.register-step img {
  width: 25%; 
  max-width: 200px; 
  height: auto;
  margin: 0 auto; 
}
.register-step:nth-child(1) {
clip-path: polygon(
  0 0, 
  100% 0, 
  100% 88%, 
  50% 100%, 
  0 88% 
);
}
}





/* ----------------------------------
キャンペーンセクション
---------------------------------- */
.campaign-section {
position: relative;
background: url("img/footer_bg.jpg") no-repeat center center/cover;
color: #fff;
text-align: center;
padding: 80px 20px;
}
.campaign-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(86, 174, 236, 0.4);
z-index: 0; 
}
.campaign-wrapper {
position: relative;
max-width: 960px;
margin: 0 auto;
z-index: 1; 
}
.campaign-section h2 {
font-size: 2.3rem;
font-weight: bold;
margin: 40px 0 20px;
color: #fff;
text-shadow: 2px 2px 6px #274c68;
}
.campaign-section .lead {
font-size: 1.4rem;
margin-bottom: 30px;
text-shadow: 5px 5px 13px #274c68;
}
.campaign-section .campaign-overlay {
position: relative;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
z-index: 2; 
}
.campaign-section .btn-main {
padding-left: 64px;
padding-right: 64px;
}
.campaign-section .campaign-overlay .btn-note {
margin-top: 10px;
}

@media (max-width: 1024px) {
.campaign-section {
  padding: 60px 20px;
  background-position: center top;
}
.campaign-wrapper {
  max-width: 90%;
}
.campaign-section h2 {
  font-size: 2rem;
  margin: 30px 0 15px;
}
.campaign-section .lead {
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.campaign-section .btn-campaign {
  font-size: 1.2rem;
  padding: 20px 32px;
}
}

@media (max-width: 768px) {
.campaign-section {
  padding: 50px 15px;
  background: url("img/footer_bg.jpg") no-repeat center center/cover;
}
.campaign-wrapper {
  max-width: 100%;
}
.campaign-section h2 {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 25px 0 10px;
}
.campaign-section .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.campaign-section .btn-campaign {
  width: 100%;
  max-width: 320px;
  font-size: 1.1rem;
  padding: 8px 24px;
  border-radius: 90px;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.25),
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.2);
}
.campaign-section .btn-campaign .highlight-yellow {
  color: #fbcf04;
}
.campaign-section .btn-note {
  font-size: 1rem;
  line-height: 1.4;
}
.campaign-section .btn-note .highlight-red {
  font-size: 14px;
}
.campaign-section .pc-br {
  display: none;
}
.campaign-section .sp-br {
  display: inline;
}
}

@media (max-width: 768px) {
.campaign-section .btn-main {
padding-left: 44px;
padding-right: 44px;
}
}




/* ----------------------------------
追従バナー
---------------------------------- */
.floating-banner {
display: none;
}

@media (max-width: 768px) {
/* SPのみ表示 */
.floating-banner.sp-only {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  margin: 0 auto 0 auto;
  background: linear-gradient(145deg, #013220 0%, #046d3b 100%);
  text-align: center;
  padding: 5px 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    0 -3px 5px rgba(0, 0, 0, 0.2);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  z-index: 9999;
  cursor: pointer;
}

.floating-banner.sp-only a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.floating-banner.sp-only .banner-icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.floating-banner.sp-only .banner-text {
  text-align: left;
  line-height: 1.4;
  font-size: 0.9rem;
}

.floating-banner.sp-only .banner-text span.highlight-red {
  color: #ff0000;
  font-weight: bold;
  font-size: 0.8rem;
}

.floating-banner.sp-only .banner-text small,
.floating-banner.sp-only .banner-text .note {
  display: block;
  font-size: 0.65rem;
  font-weight: 300;
}

.floating-banner.sp-only::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.35) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 1.2s ease;
  pointer-events: none;
}

.floating-banner.sp-only:hover::before {
  left: 120%;
}

.floating-banner.sp-only .highlight-yellow {
  color: #fbcf04;
}

.floating-banner.sp-only .highlight-red {
  color: #ff0000;
  font-weight: bold;
  font-size: 0.8rem;
}
}



