:root {
  --blue: #0f6fb6;
  --blue-dark: #073d72;
  --blue-soft: #e9f5ff;
  --orange: #f28a22;
  --orange-dark: #d86f08;
  --text: #1d2c3a;
  --muted: #617286;
  --line: #d9e7f2;
  --white: #fff;
  --shadow: 0 18px 48px rgba(7, 61, 114, 0.12);
}

* {
  box-sizing: border-box;
}
.pc{
	display: block
}
.sp{
	display:none
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 66px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 111, 182, 0.14);
  backdrop-filter: blur(14px);
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--white);
  font-weight: 800;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(242, 138, 34, 0.24);
}

.header-tel .material-icons {
  font-size: 18px;
}

.fv {
  background: linear-gradient(180deg, var(--blue-soft), #fff);
}

.fv-link {
  display: block;
  cursor: pointer;
}

.fv-img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.section {
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.28;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: clamp(26px, 3.3vw, 40px);
  line-height: 1.35;
  font-weight: 900;
}

h3 {
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.45;
}

.intro {
  padding-top: 64px;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 36px;
  align-items: center;
}

.intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.point-panel {
  padding: 28px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-title {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
}

.point-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.point-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--blue-dark);
  font-weight: 800;
  background: var(--white);
  border-radius: 8px;
}

.point-panel .material-icons,
.worry-list .material-icons,
.benefit-card .material-icons {
  color: var(--orange);
}

.manga-section {
  background: linear-gradient(180deg, #fff, var(--blue-soft));
}

.manga-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
  gap: 38px;
  align-items: center;
}

.manga-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.manga-copy code {
  padding: 2px 6px;
  color: var(--blue-dark);
  background: #fff;
  border-radius: 4px;
}

.manga-frame {
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.manga-frame img {
  width: 100%;
  aspect-ratio: 210 / 297;
  object-fit: cover;
  border-radius: 4px;
}

.intro-grid .manga {
  grid-column: 1 / -1;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-grid .manga img {
  width: 100%;
  aspect-ratio: 210 / 297;
  object-fit: cover;
  border-radius: 4px;
}

.cta-band {
  margin-top: 52px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-kicker,
.cta-title {
  margin: 0;
}

.cta-kicker {
  color: #ffd29f;
  font-weight: 900;
}

.cta-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 22px;
  font-weight: 900;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(242, 138, 34, 0.25);
}

.btn-secondary {
  color: var(--blue-dark);
  background: var(--white);
}

.worries {
  background: linear-gradient(180deg, #fff, var(--blue-soft));
}

.worry-list,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.worry-list article,
.benefit-card,
.work-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.worry-list article {
  padding: 28px;
  text-align: center;
}

.worry-list .material-icons,
.benefit-card .material-icons {
  display: block;
  margin-bottom: 14px;
  font-size: 38px;
  text-align: center;
}

.worry-list p,
.benefit-card p,
.work-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.work-grid article {
  overflow: hidden;
}

.work-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.work-grid article div {
  padding: 24px;
}

.benefits {
  background: var(--blue-soft);
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  padding: 26px;
  text-align: center;
}

.benefit-card.primary {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.benefit-card.primary h3,
.benefit-card.primary p {
  color: var(--white);
}

.seasons {
  overflow: hidden;
}

.movie-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 10px auto 0;
  background: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.movie-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.season-swiper {
  padding-bottom: 46px;
}

.swiper-slide {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.swiper-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.swiper-slide p {
  min-height: 94px;
  padding: 18px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.swiper-pagination-bullet-active {
  background: var(--orange);
}

.photo-gallery {
  overflow: hidden;
  background: var(--blue-soft);
}

.photo-swiper {
  padding-bottom: 46px;
}

.photo-slide {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.requirements {
  background: linear-gradient(180deg, var(--blue-soft), #fff);
}

.table-wrap {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 220px;
  color: var(--blue-dark);
  background: #f5fbff;
  font-weight: 900;
}

td {
  color: var(--text);
}

.company {
  background: #fff;
}

.company-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.company-card,
.map-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-table th {
  width: 150px;
}

.company-table a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.flow-faq {
  background: linear-gradient(180deg, var(--blue-soft), #fff);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
}

.flow-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--blue-soft);
  border-radius: 8px;
}

.flow-list span {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
}

.flow-list p {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 61, 114, 0.08);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-dark);
  font-weight: 900;
}

details p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
}

.contact {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #0b5b9b);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: start;
}

.contact h2,
.contact .eyebrow {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.direct-contact {
  padding: 22px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd29f;
  font-size: 28px;
  font-weight: 900;
}

.direct-contact p {
  margin: 8px 0 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--text);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--blue-dark);
  font-weight: 900;
}

label span {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  color: var(--white);
  font-size: 12px;
  background: var(--orange);
  border-radius: 999px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(242, 138, 34, 0.25);
}

.footer {
  padding: 40px 0 94px;
  color: rgba(255, 255, 255, 0.84);
  background: #062a4c;
  text-align: center;
}

.footer-name {
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 900;
}

.footer p {
  margin-bottom: 6px;
}

.fixed-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fixed-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 132px;
  min-height: 52px;
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(6, 42, 76, 0.22);
}

.fixed-tel {
  background: var(--blue);
}

.fixed-form {
  background: var(--orange);
}

.thanks-page {
  min-height: 100vh;
  background: var(--blue-soft);
}

.thanks {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.thanks-card {
  width: min(620px, 100%);
  padding: 46px 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card > .material-icons {
  color: var(--orange);
  font-size: 58px;
}

.back-link {
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 960px) {
  .site-header {
    justify-content: space-between;
  }

  .header-nav {
    gap: 14px;
    justify-content: flex-start;
  }

  .intro-grid,
  .manga-layout,
  .contact-grid,
  .company-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .worry-list,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    min-height: 56px;
    padding: 8px 12px;
  }

  .header-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    padding-bottom: 2px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-tel {
    display: none;
  }

  .fv-img {
    min-height: auto;
  }

  .section {
    padding: 58px 0;
  }

  .intro {
    padding-top: 44px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .point-panel,
  .worry-list article,
  .benefit-card,
  .contact-form {
    padding: 22px;
  }

  .worry-list,
  .benefit-grid,
  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 15px 16px;
  }

  th {
    border-bottom: 0;
  }

  td {
    padding-top: 0;
  }

  .direct-contact a {
    font-size: 24px;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .fixed-cta {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .fixed-cta a {
    min-width: 0;
    min-height: 58px;
    border-radius: 0;
  }
	
.pc{
	display: none
}
.sp{
	display:block
}
}

@media (max-width: 380px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }
}
