@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&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: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

table {
  border-collapse: collapse;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 16px;
}

input[type=button],
input[type=text],
input[type=submit] {
  border-radius: 0;
}

textarea {
  resize: none;
  border-radius: 0;
}

th,
td {
  border-collapse: collapse;
}

ul,
ol {
  list-style-type: none;
}

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width: auto;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background-color: #ccc;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.faq {
  padding: 80px 0 40%;
  position: relative;
  height: 100%;
}
.faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.faq__title {
  color: #373535;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 425px) {
  .faq__title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.faq__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq__list {
  display: grid;
  gap: 20px;
}
.faq__item {
  margin-bottom: 0;
}
.faq__item.jr-is-open .faq__toggle::before {
  transform: rotate(90deg);
  opacity: 0;
}
.faq__item.jr-is-open .faq__toggle::after {
  transform: rotate(0deg);
  opacity: 1;
}
.faq__item.jr-is-open .faq__answer {
  max-height: 500px;
  transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}
.faq__button {
  width: 100%;
  height: 100px;
  padding: 0 33px 0 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
@media (max-width: 425px) {
  .faq__button {
    gap: 20px;
  }
}
.faq__q-mark {
  font-size: 42px;
  font-weight: 700;
  color: #405FB6;
  font-family: Inter;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  line-height: 100%;
  transform: translateY(-2px);
}
@media (max-width: 425px) {
  .faq__q-mark {
    font-size: 32px;
  }
}
.faq__question {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #373535;
  letter-spacing: 0.02em;
  line-height: 1.42;
}
@media (max-width: 425px) {
  .faq__question {
    font-size: 14px;
  }
}
.faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  background-color: #ababab;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq__toggle::before {
  width: 3px;
  height: 21px;
  transform: rotate(0deg);
}
.faq__toggle::after {
  width: 21px;
  height: 3px;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq__answer-inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
  max-width: 840px;
  margin: 0 auto;
  padding: 27px 33px 17px 20px;
}
@media (max-width: 425px) {
  .faq__answer-inner {
    gap: 20px;
  }
}
.faq__a-mark {
  font-size: 42px;
  font-weight: 700;
  color: #e60012;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
@media (max-width: 425px) {
  .faq__a-mark {
    font-size: 32px;
  }
}
.faq__answer-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: 0.02em;
  color: #373535;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 425px) {
  .faq__answer-text {
    font-size: 14px;
  }
}
.faq__answer-text p {
  margin: 0;
}
.faq__answer-text--strong {
  font-weight: 700;
}

.footer {
  width: 100%;
  max-width: 768px;
  margin: 0 auto 168px;
}
.footer img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background-color: #ffffff;
  border-bottom: #405FB6;
}
.header__title {
  color: #373535;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 425px) {
  .header__title {
    font-size: 24px;
  }
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__contact-img {
  width: 55px;
  height: 55px;
}
@media (max-width: 425px) {
  .header__contact-img {
    width: 30px;
    height: 30px;
  }
}
.header__contact-tel {
  color: #373535;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
@media (max-width: 425px) {
  .header__contact-tel {
    font-size: 16px;
  }
}

.jr-p-header {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}

.jr-p-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 97px;
  max-width: 1366px;
  padding: 0 25px;
}

.jr-p-header__brand-lead {
  font-size: 17px;
  margin: 0;
  letter-spacing: 0.01em;
}

.jr-p-header__brand-name {
  display: inline-block;
  margin-top: 4px;
  padding: 0 12px;
  background-color: #426579;
}

.jr-p-header__brand-text {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.jr-p-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* フローティングバナー（デスクトップ表示では非表示） */
.floating-contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 768px;
  padding: 12px 16px;
  background: #3E5DB5;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow: hidden;
}

.floating-contact.min {
  max-width: 425px;
}

.jr-p-header__inner {
  height: 60px;
  padding: 0 12px;
}

.jr-p-header__brand-lead {
  font-size: 12px;
}

.jr-p-header__brand-text {
  font-size: 15px;
}

/* ヘッダー内のactionsを非表示 */
.jr-p-header__actions {
  display: none;
}

/* フローティングバナーを表示 */
/* フローティングバナー内の要素にz-indexを設定 */
.floating-contact > * {
  position: relative;
  z-index: 2;
}

.floating-contact__buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* フローティングバナー内のbadgeスタイル */
.floating-contact .floating-contact__badge {
  display: inline-flex;
  width: auto;
  flex: 0 0 auto;
  background: rgba(230, 0, 19, 0);
  color: #fff;
}

.floating-contact .floating-contact__badge-text {
  color: #ffffff;
  font-size: 21px;
}

.floating-contact .floating-contact__line {
  width: 35%;
}

.floating-contact .floating-contact__tel--block {
  flex: 1;
}

.floating-contact .floating-contact__line-link {
  width: 100%;
  height: 78px;
  padding: 6px 10px;
  font-size: 22px;
  border-radius: 0px;
  display: flex;
  gap: 0;
}
@media (max-width: 425px) {
  .floating-contact .floating-contact__line-link {
    font-size: 16px;
  }
}

.floating-contact .floating-contact__tel-link {
  width: 100%;
  height: 78px;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 0px;
  background: linear-gradient(135deg, #e60012 0%, #c81e1e 50%, #b91c1c 100%);
  text-align: center;
}

.floating-contact .floating-contact__tel-number .floating-contact__number-large {
  font-size: 22px;
}
@media (max-width: 425px) {
  .floating-contact .floating-contact__tel-number .floating-contact__number-large {
    font-size: 16px;
  }
}

.floating-contact .floating-contact__line-icon,
.floating-contact .floating-contact__tel--block .floating-contact__tel-icon {
  width: 30px;
  height: 30px;
}

.floating-contact .floating-contact__tel--block .floating-contact__tel-number {
  font-size: 14px;
}

.floating-contact__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 304px;
  padding: 7px 14px;
  background: linear-gradient(135deg, #e60012 0%, #c81e1e 50%, #b91c1c 100%);
  border-radius: 10px;
}

.floating-contact__badge-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.floating-contact__tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.floating-contact__tel-icon {
  width: 44px;
  height: 44px;
  background-image: url("./newsiteimg/ico-tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.floating-contact__tel-number {
  color: #426579;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.02em;
}

.floating-contact__tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 7px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #426579 0%, #355463 100%);
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.floating-contact__tel-link:hover {
  filter: brightness(0.95);
}

.floating-contact__tel--block {
  gap: 0;
}

.floating-contact__tel--block .floating-contact__tel-icon {
  width: 28px;
  height: 28px;
  background-image: none;
  background-color: #ffffff;
  -webkit-mask-image: url("./img/ico-tel-wh.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("./img/ico-tel-wh.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  flex: 0 0 auto;
}

.floating-contact__tel--block .floating-contact__tel-number {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.floating-contact__line {
  display: inline-flex;
  align-items: center;
}

.floating-contact__line-icon {
  width: 28px;
  height: 28px;
  background-image: url("./img/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

.floating-contact__line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 7px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #06c755 0%, #04b84f 100%);
  color: #ffffff;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.floating-contact__line-link:hover {
  filter: brightness(0.95);
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: #373535;
  background-color: #f0f3fa;
}

.header__title-link {
  color: inherit;
  text-decoration: none;
}

.header__title-link:hover {
  opacity: 0.85;
}

.page {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.page-hero {
  background: linear-gradient(135deg, #3E5DB5 0%, #405FB6 100%);
  padding: 48px 24px 56px;
  text-align: center;
}

.page-hero__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-hero__title {
  color: #ffffff;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
@media (max-width: 425px) {
  .page-hero__title {
    font-size: 24px;
  }
}

.page__inner {
  max-width: 768px;
  margin: -28px auto 0;
  padding: 0 16px 24px;
}

.page__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 28px 24px;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .page__card {
    padding: 22px 16px;
  }
}

.page__card-title {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #405FB6;
  color: #373535;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}
@media (max-width: 425px) {
  .page__card-title {
    font-size: 18px;
  }
}

.info-table {
  width: 100%;
}

.info-table__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e8ebf3;
}
@media (max-width: 425px) {
  .info-table__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
}

.info-table__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-table__row:first-child {
  padding-top: 0;
}

.info-table__head {
  color: #405FB6;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 425px) {
  .info-table__head {
    font-size: 14px;
  }
}

.info-table__body {
  font-size: 15px;
  line-height: 1.75;
  color: #373535;
}
@media (max-width: 425px) {
  .info-table__body {
    font-size: 14px;
  }
}

.info-table__body a {
  color: #405FB6;
  font-weight: 700;
  text-decoration: underline;
}

.legal-section {
  margin-bottom: 28px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section__title {
  margin-bottom: 10px;
  color: #405FB6;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}
@media (max-width: 425px) {
  .legal-section__title {
    font-size: 16px;
  }
}

.legal-section__text {
  font-size: 15px;
  line-height: 1.85;
  color: #373535;
}
@media (max-width: 425px) {
  .legal-section__text {
    font-size: 14px;
  }
}

.legal-section__list {
  margin-top: 8px;
  padding-left: 1.2em;
  list-style-type: disc;
}

.legal-section__list li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 425px) {
  .legal-section__list li {
    font-size: 14px;
  }
}

.page__note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
}

.page__back {
  text-align: center;
  padding: 8px 0 24px;
}

.page__back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3E5DB5 0%, #405FB6 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 4px 4px 15px rgba(64, 95, 182, 0.25);
}

.page__back-link:hover {
  filter: brightness(0.95);
}

.site-footer {
  width: 100%;
  max-width: 768px;
  margin: 0 auto 168px;
}

.site-footer__image img {
  width: 100%;
  object-fit: cover;
}

.site-footer__nav {
  background: linear-gradient(135deg, #3E5DB5 0%, #405FB6 100%);
  padding: 24px 16px 20px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.site-footer__link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer__link:hover {
  text-decoration: underline;
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 1.6;
}/*# sourceMappingURL=main.css.map */