@charset "utf-8";

/* Base */
:root {
  --white: #fff;
  --paper: #f7f6f3;
  --ink: #171717;
  --text: #333;
  --muted: #707070;
  --line: #e8e4dd;
  --accent: #0e7c7b;
  --accent-dark: #075756;
  --gold: #c8a85a;
  --charcoal: #202124;
  --shadow: 0 18px 45px rgba(12, 18, 24, .10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.sp{
	display: none;
	
}
.pc{
	display: block;
}
body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  line-height: 1.85;
  background: var(--white);
  letter-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

button,
input,
select,
textarea {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.material-icons {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

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

.section {
  padding: 86px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;	text-align: center
}

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

h2 {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);

  line-height: 1.25;
	text-align: center
}

h3 {
  color: var(--ink);
  line-height: 1.35;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 14px 20px;
  pointer-events: none;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: min(1120px, 100%);
  margin: 0 auto;
  pointer-events: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(20, 20, 20, .28);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.site-nav .nav-entry {
  border-color: transparent;
  background: var(--accent);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 172px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.floating-cta__mail {
  background: var(--accent);
}

.floating-cta__tel {
  background: var(--charcoal);
}

.floating-cta__text--sp {
  display: none;
}

/* MV */
.mv {
  position: relative;

  overflow: hidden;
  background: var(--charcoal);
}

.mv__image {
  width: 100%;

}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.25;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 13px 30px rgba(14, 124, 123, .28);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.btn--dark {
  background: var(--charcoal);
  color: #fff;
}

/* Lead */
.lead-section {
  background: linear-gradient(180deg, #fff, var(--paper));
}

.lead-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.lead-text {
  color: var(--muted);
  font-size: 16px;
}

.manga {
  grid-column: 1 / -1;
}

.manga img {
  display: block;
  width: 100%;
}

/* Points */
.points {
  background: #181a1c;
  color: rgba(255, 255, 255, .82);
}

.points h2,
.points h3 {
  color: #fff;
}

.point-grid,
.number-grid,
.requirements-grid {
  display: grid;
  gap: 20px;
}

.point-grid {
  grid-template-columns: repeat(3, 1fr);
}

.point-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #222528;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.point-card .material-icons {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(14, 124, 123, .18);
  color: var(--accent);
  font-size: 25px;
}

.point-card {
  text-align: center;
}

.point-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  text-align: left;
}

/* CTA Band */
.cta-band {
  padding: 42px 0;
  background: var(--charcoal);
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  margin: 0;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
}

/* Work */
.work {
  background: var(--paper);
}

.work-swiper {
  overflow: hidden;
  width: 100%;
}

.work-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  transform: none !important;
}

.work-swiper .swiper-slide {
  width: auto !important;
  margin-right: 0 !important;
  min-width: 0;
}

.work-card {
  height: auto;
  min-height: 310px;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
  word-break: normal;
}

.work-card__image {
  overflow: hidden;
  margin: -34px -34px 28px;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card h3,
.work-card p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.work-card__num {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.work-card h3 {
  text-align: center;
}

.swiper-pagination {
  position: static;
  margin-top: 24px;
}

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

.work-swiper .swiper-pagination {
  display: none;
}

/* Style Gallery */
.style {
  background: #fff;
}

.style-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
}

.style-swiper {
  overflow: visible;
  width: 100%;
}

.style-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.style-card {
  position: relative;
  overflow: hidden;
  width: 260px;
  margin: 0;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  background: var(--charcoal);
}

.style-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, .34);
  pointer-events: none;
}

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.style-card:hover img {
  transform: scale(1.05);
}

/* Full Width Movie */
.movie-full {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 72svh;
  background: var(--charcoal);
}

.movie-full::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .18) 58%, rgba(0, 0, 0, .52));
  pointer-events: none;
}

.movie-full__body {
  position: absolute;
  top: 50%;
  left: max(20px, calc((100vw - 1120px) / 2));
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  transform: translateY(-50%);
  color: #fff;
}

.movie-full h2 {
  margin-bottom: 0;
  color: #fff;
}

.movie-full__embed {
  position: absolute;
  inset: 0;
}

.movie-full__embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Numbers */
.number-grid {
  grid-template-columns: repeat(4, 1fr);
}

.number-card {
  padding: 26px 18px;
  border-bottom: 3px solid var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.number-card img {
  display: block;
  width: 100%;
  height: auto;
  margin: -26px 0 18px;
  background: #FFF;
  object-fit: contain;
}

.number-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}

.number-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* Message */
.message {
  background: #000;
  color: #fff;
}

.message h2,
.message h3 {
  color: #fff;
}

.message-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.message-box__visual {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  aspect-ratio: 4 / 5;
}

.message-box__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-box__body {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.message-sign {
  margin-top: 28px;
  color: #fff;
  font-weight: 900;
}

/* Requirements */
.requirements {
  background: #fff;
}

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

.requirements-grid--single {
  grid-template-columns: 1fr;
}

.req-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.req-card h3 {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.req-card dl,
.company-table dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.req-card dt,
.req-card dd,
.company-table dt,
.company-table dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.req-card dt,
.company-table dt {
  color: var(--ink);
  font-weight: 900;
}

.req-card dd,
.company-table dd {
  color: var(--muted);
}

/* FAQ */
.faq {
  background: var(--paper);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.embed-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.embed-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Access */
.access-map {
  padding-top: 0;
  background: #fff;
}

.access-map__address {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.embed-box--map {
  box-shadow: var(--shadow);
}

/* Company */
.company-table {
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
}

.company-table dl {
  grid-template-columns: 240px 1fr;
  border-top: 0;
}

.company-table dt,
.company-table dd {
  padding: 18px 22px;
}

.company-table dt {
  background: #f7faf9;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, #fff, var(--paper));
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.phone-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 12px;
  align-items: center;
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.phone-card .material-icons {
  grid-row: span 2;
  color: var(--gold);
  font-size: 32px;
}

.phone-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.phone-card small {
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.entry-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.entry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.entry-form input,
.entry-form select,
.entry-form textarea {
  width: 100%;
  border: 1px solid #d8d4ce;
  border-radius: 4px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font-weight: 500;
}

.entry-form input:focus,
.entry-form select:focus,
.entry-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(14, 124, 123, .14);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.entry-form .hp-field,
.entry-form .hp-field input {
  display: none !important;
}

.form-error {
  margin-top: -10px;
  color: #b3261e;
  font-size: 13px;
  font-weight: 700;
}

.lower-main {
  display: grid;
  min-height: calc(100vh - 176px);
  padding: 80px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 124, 123, .12), transparent 30%),
    linear-gradient(180deg, #fff, var(--paper));
}

.lower-section {
  display: grid;
  align-items: center;
  width: 100%;
}

.lower-panel {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  padding: 54px 48px;
  border: 1px solid rgba(14, 124, 123, .16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.lower-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.lower-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  text-align: center;
}

.lower-lead {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
  text-align: center;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.confirm-table th,
.confirm-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.confirm-table th {
  width: 210px;
  color: var(--ink);
  font-weight: 900;
}

.confirm-table td {
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.form-actions .btn {
  border: 0;
  cursor: pointer;
  min-width: 190px;
}

.lower-back {
  border: 1px solid var(--line) !important;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

/* Footer */
.footer {
  position: relative;
  padding: 38px 20px 96px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 12px;
}

.footer-top {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .lead-grid,
  .message-box,
  .contact-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .point-grid,
  .number-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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





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

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    flex-direction: row;
    max-width: calc(100vw - 20px);
  }

  .floating-cta a {
    flex: 1 1 0;
    min-width: 0;
    gap: 5px;
    font-size: 11px;
    padding: 10px 6px;
    white-space: nowrap;
  }

  .floating-cta .material-icons {
    font-size: 18px;
  }

  .floating-cta__text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .floating-cta__text--pc {
    display: none;
  }

  .floating-cta__text--sp {
    display: inline;
  }

  .lead-grid {
    gap: 22px;
  }

  .point-grid,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .style-swiper {
    overflow: hidden;
  }

  .style-card {
    width: 45vw;
    min-width: 150px;
  }

  .point-card,
  .work-card,
  .req-card,
  .entry-form {
    padding: 22px;
  }

  .work-card__image {
    margin: -22px -22px 22px;
  }

  .work {
    overflow: hidden;
  }

  .work-swiper {
    overflow: hidden;
  }

  .work-swiper .swiper-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
  }

  .movie-full {
    min-height: 64svh;
  }

  .movie-full__body {
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .message-box__visual {
    aspect-ratio: auto;
    background: transparent;
  }

  .message-box__visual img {
    height: auto;
    object-fit: contain;
  }

  .cta-band__inner {
    display: grid;
  }

  .req-card dl,
  .company-table dl {
    grid-template-columns: 1fr;
  }

  .req-card dt,
  .req-card dd,
  .company-table dt,
  .company-table dd {
    padding: 11px 0;
  }

  .company-table {
    padding: 8px 16px;
  }

  .company-table dt {
    background: transparent;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .phone-card strong {
    font-size: 26px;
  }

  .lower-main {
    min-height: calc(100vh - 154px);
    padding: 42px 0;
  }

  .lower-panel {
    padding: 36px 20px;
  }

  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }

  .confirm-table th {
    border-bottom: 0;
  }
.sp{
	display:block;
	
}
.pc{
	display: none;
}
}
