/*
RESET CSS
-------------------------------------------------------------------
* @acab/reset.css
* Nov 29, 2024
* https://github.com/mayank99/reset.css/blob/main/package/index.css
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

/* SETTING 
====================================================== */
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
  background: #fff;
  line-height: 1.5;
  text-align: left;
}

.pc {
  display: block !important;
}

.tb,
.sp {
  display: none !important;
}

@media (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tb {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* LAYOUT 
====================================================== */
:root {
  --theme-color: #9e54a3;
  --theme-color-bg: #d8badb;
  --theme-gradient: linear-gradient(to right, #fadce9, #e5ddf8, #dce6fa);
}

.teikyo {
  background-color: var(--theme-color);
}
.teikyo__text {
  width: min(980px, 96%);
  margin: 0 auto;
  padding: 10px 0;
  font-size: min(0.875em, 3.25vw);
  line-height: 1;
  text-align: right;
  color: #fff;
}

.hero {
  background: var(--theme-gradient);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 30px;
}
@media (min-width: 1024px) {
  .hero {
    padding: 20px 0 40px;
  }
}
.hero__image {
  margin: 0 auto;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
  aspect-ratio: 1/0.8;
}
@media (min-width: 1024px) {
  .hero__image {
    max-width: 1100px;
    aspect-ratio: 1100/600;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 30px 2% 0;
}
@media (min-width: 1024px) {
  .hero__content {
    padding: 50px 2% 0;
  }
}
.hero__catch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero__catch {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.hero__catch img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero__catch img {
    max-width: 460px;
  }
}
.hero__subtitle {
  width: 100%;
  font-size: min(2.1875em, 5.5vw);
  font-weight: 900;
  line-height: 1.4;
  color: var(--theme-color);
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    line-height: 1.25;
    text-align: left;
  }
}
.hero__title {
  width: 100%;
  font-size: min(4.375em, 11vw);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  margin: 5px auto 0;
}
@media (min-width: 1024px) {
  .hero__title {
    line-height: 1.25;
    text-align: left;
    text-decoration: none;
  }
}
.hero__brand {
  width: 100%;
  background-color: var(--theme-color-bg);
  padding: 5px 0.4em;
  margin: 20px auto 0;
  font-size: min(2.1875em, 4.875vw);
  font-weight: 900;
  font-feature-settings: "palt";
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__brand {
    line-height: 1.25;
    text-align: left;
  }
}

.content {
  width: 100%;
  padding: 30px 0 40px;
}
.content__body {
  width: 94%;
  max-width: 820px;
  margin: 0 auto;
}
.content__lead {
  width: 94%;
  max-width: 820px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  font-weight: 600;
  color: var(--theme-color);
  margin: 0 auto 20px;
}
@media (min-width: 1024px) {
  .content__lead {
    font-size: 1.25em;
    margin: 0 auto 30px;
  }
}
.content__body {
  text-align: center;
}
.content__body p {
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 0 20px;
}
.content__body .content__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-size: min(2.5em, 7vw);
  font-weight: 900;
  color: var(--theme-color);
  line-height: 1.5;
  margin: 30px auto;
  text-align: center;
  gap: 5px;
}
@media (min-width: 1024px) {
  .content__body .content__heading {
    flex-direction: row;
    background: var(--theme-gradient);
    padding: 0 0.5em;
    gap: 0;
  }
}
.content__body .content__heading .u-linebg {
  display: block;
  background: var(--theme-gradient);
  padding: 0 0.5em;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}
.content__body .content__heading .u-linebg:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .content__body .content__heading .u-linebg {
    background: transparent;
    width: auto;
    padding: 0;
  }
}
.content__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .content__unit {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .content__unit__text {
    width: 65%;
  }
}
.content__unit__photo {
  width: 80%;
  max-width: 300px;
  margin: 30px auto;
  position: relative;
}
@media (min-width: 1024px) {
  .content__unit__photo {
    width: 35%;
    right: -60px;
    padding-top: 0.5em;
    margin: 5px auto;
  }
}
.content__unit__photo__image {
  position: relative;
}
.content__unit__photo__image img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
.content__unit__photo__image::after {
  content: "";
  width: 100%;
  aspect-ratio: 600/760;
  position: absolute;
  background: var(--theme-gradient);
  left: -20px;
  top: 20px;
  z-index: -1;
}
.content__unit__photo__image.interview__photo-bg::after {
  background: var(--theme-color-bg);
}
.content__unit__photo__caption {
  color: var(--theme-color);
  font-weight: 600;
  text-align: left;
  margin-top: 25px;
}
.content__unit__photo__caption span {
  font-weight: 900;
}
.content__unit__photo__caption span span {
  font-size: 1.25em;
}
.content__pic1 {
  width: 100%;
  margin: 30px auto 40px;
}
.content__pic2 {
  width: 100%;
  max-width: 600px;
  margin: 30px auto 40px;
}

.interview {
  position: relative;
  background: var(--theme-gradient);
  z-index: -2;
}
@media (min-width: 1024px) {
  .interview {
    padding: 60px 0;
  }
}
.interview__heading {
  font-size: min(2em, 6vw);
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  margin: 0 auto 20px;
}

.inquiry {
  width: 100%;
  background: var(--theme-color);
  padding: 80px 0;
}
.inquiry__body {
  width: 94%;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.inquiry__title {
  display: inline-block;
  background: #fff;
  padding: 5px 1em;
  border-radius: 9999px;
  color: var(--theme-color);
  font-size: min(1.125em, 3.5vw);
  font-weight: 600;
  margin: 0 auto 20px;
}
.inquiry__company {
  color: #fff;
  font-size: min(1.75em, 5vw);
  font-weight: 600;
  margin: 0 auto 10px;
}
.inquiry__url {
  font-size: min(1.5em, 4vw);
  font-weight: 600;
  margin: 0 auto;
}
.inquiry__url a {
  color: #fff;
  transition: 0.3s;
}
.inquiry__url a:hover {
  color: #d4ff00;
}/*# sourceMappingURL=style.css.map */