*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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;
}*/

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

picture {
  display: block;
  max-width: 100%;
}

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-primary: #4178BB;
  --color-secondary: #EA5520;
  --color-btn-gradient: linear-gradient(90deg,#27A85D 0%,#4FD16C 100%);
  --color-content-gradient: linear-gradient(90deg,#EEF5FF 0%,#FFFFFF 100%);
  --color-black-2: #222222;
  --color-black-3: #333333;
  --color-white-2: #EEF5FF;
  --color-blue-1: #5692DB;
  --color-blue-2: #1F3A60;
  --color-lgt-blue-1: #D7E9FF;
  --color-lgt-blue-2: #B1D4FF;
  --color-lgt-orange-1: #FFDC98;
  --color-lgt-orange-2: #FFC444;
  --color-lgt-orange-3: #FFF8E7;
  --color-gray-1: #707070;
  --color-gray-2: #D5D5D5;
}

html {
  font-size: 10px;
}

body {
  background-color: var(--color-white);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-display: swap;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black-2);
  line-height: 1.2;
}

.container {
  display: block;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 1070px;
  }
}

.section {
  padding: 100px 0;
}

.heading__primary {
  color: var(--color-blue-2);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.heading__primary::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='25' viewBox='0 0 36 25' fill='none'%3E%3Cg clip-path='url(%23clip0_381_2952)'%3E%3Cpath d='M15.7799 25L18.8575 24.2317L18.9912 0.863592L11.0505 0L15.7799 25Z' fill='%231F3A60'/%3E%3Cpath d='M22.7898 23.3251L24.7202 24.9453L36 8.77652L28.9589 7.6084L22.7898 23.3251Z' fill='%231F3A60'/%3E%3Cpath d='M0 12.3427L8.73422 24.8677L9.12929 23.6136L4.35271 10.626L0 12.3427Z' fill='%231F3A60'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_381_2952'%3E%3Crect width='36' height='25' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  width: 36px;
  height: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .heading__primary::before {
    width: 28px;
    height: 19px;
    aspect-ratio: 28/19;
  }
}
.d-none {
  display: none !important;
}



.footer-simple {
  background: #fff;
  border-top: 1px solid #e9eef5; /* 薄い線 */
  padding: 28px 0;              /* 高さ（お好みで調整OK） */
}

.footer-simple__copy {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;            /* 10px基準なら12px */
  font-weight: 500;
  color: #1f3a60;               /* 濃いネイビー */
  letter-spacing: 0.02em;
}

.cta {
  background-color: var(--color-lgt-orange-3);
  padding: 40px 0;
}

.cta__top-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-blue-2);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 12px;
}

.cta__top-title::before, .cta__top-title::after {
  content: "";
  width: 16px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}

.cta__top-title::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M17 17L1 1' stroke='%23222222' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.cta__top-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M1 17L17 1' stroke='%23222222' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* 下CTAだけ：＼／を白にする */
.cta_under .cta__top-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M17 17L1 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* 下CTA：見出しテキストを白に */
.cta_under .cta__top-title {
  color: #fff;
}

.cta_under .cta__top-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M1 17L17 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.cta__top-btn {
  max-width: 428px;
  margin: 0 auto 19px;
}

.cta_under {
  background-color: var(--color-primary);
  padding: 40px 0;
}

.btn__primary {
  background-color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 100%;
  border-radius: 40px;
  -webkit-box-shadow: 0 6px 0 0 #247A26;
  box-shadow: 0 6px 0 0 #247A26;
  width: 100%;
  color: var(--color-secondary);
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: 2px solid var(--color-secondary);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.btn__primary::after {
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='19' viewBox='0 0 11 19' fill='none'%3E%3Cpath d='M10.0047 10.2466C10.0047 10.2466 10.0047 10.2466 10.0047 10.2466C10.3687 9.87115 10.3687 9.26236 10.0047 8.88688L2.53544 1.1817C2.17145 0.806215 1.58132 0.806215 1.21733 1.1817C0.853349 1.55718 0.853348 2.16595 1.21733 2.54143L8.02753 9.56675L1.21732 16.5921C0.85334 16.9676 0.85334 17.5763 1.21732 17.9518C1.58131 18.3273 2.17144 18.3273 2.53543 17.9518L10.0047 10.2466Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='19' viewBox='0 0 11 19' fill='none'%3E%3Cpath d='M10.0047 10.2466C10.0047 10.2466 10.0047 10.2466 10.0047 10.2466C10.3687 9.87115 10.3687 9.26236 10.0047 8.88688L2.53544 1.1817C2.17145 0.806215 1.58132 0.806215 1.21733 1.1817C0.853349 1.55718 0.853348 2.16595 1.21733 2.54143L8.02753 9.56675L1.21732 16.5921C0.85334 16.9676 0.85334 17.5763 1.21732 17.9518C1.58131 18.3273 2.17144 18.3273 2.53543 17.9518L10.0047 10.2466Z' fill='white'/%3E%3C/svg%3E");
  background-color: var(--color-secondary);
  width: 11px;
  height: 19px;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn__primary.-orange {
  background: var(--color-btn-gradient);
  color: var(--color-white);
  border: 1px solid transparent;
}
.btn__primary.-orange::after {
  background-color: var(--color-white);
}

/* hoverできるPCだけ hover を効かせる（安全） */
@media (hover:hover) and (pointer:fine){
  .btn__primary:hover{
    transform: translateY(6px);
    box-shadow: none;
  }
}

/* スマホは押した時に沈む（体感良くなる） */
.btn__primary:active{
  transform: translateY(6px);
  box-shadow: none;
}

.hero {
  background:none
}

.hero-mv picture {
  display: block;
}
.hero-mv picture img {
  width: 100%;
}

.section-details__text {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
}

.section-faq__block:not(:last-of-type) {
  margin-bottom: 24px;
}
.section-faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  padding: 0 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--color-gray-2);
}

.section-faq-question .plus {
  margin-top: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
}
.section-faq-question .plus::before, .section-faq-question .plus::after {
  content: "";
  display: block;
  background-color: var(--color-black-2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.section-faq-question .plus::before {
  width: 20px;
  height: 1px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.section-faq-question .plus::after {
  height: 20px;
  width: 1px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.section-faq-question__wrap {
  padding: 3px 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.section-faq-question__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 32px;
  display: inline-block;
  margin-top: 5px;
}

.section-faq-question__icon::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #D5D5D5;
  position: absolute;
  top: 54%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-faq-question__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  padding-left: 20px;
}

.section-faq-answer {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.section-faq-answer__wrap {
  padding: 16px 20px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-faq-answer__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 32px;
  display: inline-block;
}

.section-faq-answer__icon::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: var(--color-gray-2);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-faq-answer__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 20px;
}

/*# source/* ===== 新年キャンペーン：詳細セクション（置き換え用） ===== */

.details-cards__title,
.details-table__title{
  text-align:center;
  font-size:3.2rem;
  font-weight:700;
  color: var(--color-primary);
  margin: 48px 0 24px;
}

.details-table{
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(65,120,187,0.08);
  padding: 24px 28px;
}

.details-table__row{
  display:flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-2);
}

.details-table__row:last-child{
  border-bottom:none;
}

.details-table__head{
  width: 160px;
  flex-shrink:0;
  font-size:1.4rem;
  font-weight:700;
  color: var(--color-blue-2);
}

.details-table__body{
  flex:1;
  font-size:1.4rem;
  font-weight:700;
  color: var(--color-black-2);
  line-height:1.6;
}

.details-table__list{
  margin-left: 18px;
  list-style: disc;
}

.section-points {
  padding: 80px 0;
  background: var(--color-content-gradient);
}

.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


.point {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(65, 120, 187, 0.08);
  padding: 24px;
  text-align: center;
}

.point__icon {
  width: 230px;     /* ←ここでアイコン表示サイズを統一 */
  height: 100px;    /* ←ここでアイコン表示サイズを統一 */
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}

.point__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ←縦横比を崩さず枠に収める */
  display: block;
}

.point__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-blue-2);
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .points{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .point{
    padding: 18px;
    border-radius: 12px;
  }

  .point__icon{
    width: 200px;
    height: 90px;
    margin-bottom: 12px;
  }

  .point__title{
    font-size: 2.2rem;
  }
}

/* SP時の見出しサイズ調整 */
@media only screen and (max-width: 767px) {
  .heading__primary {
    font-size: 3.2rem; /* h2 */
  }

  h3.details-cards__title {
    font-size: 2.6rem; /* h3 */
  }
}

/* SPでは改行（デフォルトで <br> は表示される） */
.d-md-none { display: inline; }

/* md以上（768px〜）では改行を消す */
@media (min-width: 768px){
  .d-md-none { display: none; }
}
