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

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(1em, 3.8647vw);
  color: #111;
  background-color: #fff;
  line-height: 1.5;
  text-align: left;
}

.sp,
.tb,
.pc {
  display: none;
}

@media (max-width: 575px) {
  .sp {
    display: block !important;
  }
  br.sp {
    display: inline !important;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {
  .tb {
    display: block !important;
  }
  br.tb {
    display: inline !important;
  }
}
@media (min-width: 1024px) {
  .pc {
    display: block !important;
  }
  br.pc {
    display: inline !important;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

:root {
  --color-primary: #030f65;
  --color-primary-dark: #0062b2;
  --color-text: #222222;
  --color-bg: #dae1ff;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 12/10;
  background: #030f65;
}
@media (min-width: 1024px) {
  .hero {
    aspect-ratio: auto;
    height: 500px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(./hero-bg.webp) center/cover no-repeat;
  opacity: 0.75;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.credit {
  padding: 12px 3%;
}
@media (min-width: 1024px) {
  .credit {
    padding: 15px 5%;
  }
}
.credit-text {
  max-width: 945px;
  font-size: 3vw;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  color: #fff;
  text-align: right;
  margin: auto;
  filter: drop-shadow(-1px -1px 0 #030f65) drop-shadow(1px -1px 0 #030f65) drop-shadow(-1px 1px 0 #030f65) drop-shadow(1px 1px 0 #030f65) drop-shadow(0px -1px 0 #030f65) drop-shadow(0px 1px 0 #030f65) drop-shadow(-1px 0px 0 #030f65) drop-shadow(1px 0px 0 #030f65);
}
@media (min-width: 1024px) {
  .credit-text {
    font-size: 0.875em;
  }
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 30px - 0.875em);
  color: #fff;
  margin: auto;
}
.title__unit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title__unit-shoulder {
  width: 100%;
  margin-bottom: 6vw;
}
@media (min-width: 1024px) {
  .title__unit-shoulder {
    width: auto;
    margin-bottom: 20px;
  }
}
.title__unit-sub {
  width: 70%;
}
@media (min-width: 1024px) {
  .title__unit-sub {
    width: auto;
  }
}
.title__unit-title {
  width: 100%;
  margin-bottom: 6vw;
}
@media (min-width: 1024px) {
  .title__unit-title {
    width: auto;
    margin-bottom: 20px;
  }
}

.lead {
  width: 100%;
  background: #dae1ff;
  padding: 20px 0 25px;
}
@media (min-width: 1024px) {
  .lead {
    padding: 30px 0 40px;
  }
}
.lead__body {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
}
.lead p {
  width: 100%;
  color: var(--color-primary);
  font-size: 1em;
  font-weight: 700;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .lead p {
    font-size: 1.125em;
  }
}

.content {
  width: 100%;
  padding: 0;
}
.content__body {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
}
.content p {
  width: 100%;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin: 0 auto 1em;
}
.content .sup {
  font-size: 0.875em;
  vertical-align: top;
  margin-right: 0.25em;
}
.content .content__unit {
  width: 92%;
  max-width: 850px;
  min-height: 417px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  position: relative;
}
.content .content__unit.unit--m > .content__unit__text {
  display: contents;
}
.content .content__unit.unit--m .content__unit__p1 {
  order: 1;
}
.content .content__unit.unit--m > .content__unit__photo {
  order: 2;
}
.content .content__unit.unit--m .content__unit__p2 {
  order: 3;
}
@media (min-width: 1284px) {
  .content .content__unit {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 40px;
  }
  .content .content__unit > .content__unit__photo {
    order: 0;
  }
  .content .content__unit > .content__unit__text {
    order: 1;
  }
  .content .content__unit.unit--m {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
  .content .content__unit.unit--m > .content__unit__text {
    display: block;
  }
  .content .content__unit.unit--m > .content__unit__photo {
    left: 0;
    right: auto;
    transform: translateX(-46%);
  }
  .content .content__unit > .content__unit__text {
    display: block;
    width: 66%;
  }
  .content .content__unit > .content__unit__photo {
    flex: 0 0 460px;
    width: 460px;
    margin: 0.5em 0;
    position: absolute;
    right: 0;
    transform: translateX(46%);
  }
}
.content .content__unit__photo {
  width: 100%;
  max-width: 460px;
  margin: 10px auto 30px;
  border-radius: 20px;
  overflow: hidden;
}
.content .content__unit__photo__image img {
  display: block;
  width: 100%;
  height: auto;
}
.content .content__unit__photo__caption {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  line-height: 1.75;
  padding: 1em;
}
.content .content__unit__photo__caption span {
  font-weight: 700;
  font-size: 1.25em;
}
.content .content__h2 {
  margin: 60px auto 30px;
  text-align: center;
}
@media (min-width: 1024px) {
  .content .content__h2 {
    margin: 70px auto 30px;
  }
}
.content .content__h2 h2 {
  display: inline;
  color: var(--color-primary);
  font-size: clamp(1em, 5.6vw, 2em);
  line-height: 1.5;
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  text-align: center;
  background: linear-gradient(to right, #faf0ba 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 1em;
  background-position: 0% 0.9em;
  padding-bottom: 0.1em;
}
.content .figure__unit {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px auto;
}
.content .figure__unit img {
  width: 100%;
  max-width: 850px;
  padding: 0;
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .content .figure__unit img {
    border: 1px solid #ccc;
    padding: 24px;
    margin-bottom: 0.25em;
  }
}
.content .figure__unit-caption {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.content .figure__unit-text p {
  width: 100%;
}

.content__split {
  display: flex;
  flex-direction: column;
}

.content__split::after {
  content: "";
  display: block;
  clear: both;
}

.content__split-text {
  margin: 0;
}

.content__split-text--first {
  order: 1;
}

.content__split-text--second {
  order: 3;
}

.content__profile {
  order: 2;
  margin: 24px auto 40px;
}
.content__profile-image img {
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .content__split {
    display: block;
  }
  .content__profile {
    float: right;
    width: 400px;
    padding-left: 30px;
    margin: 0.5em auto;
  }
  .content__split-text {
    margin: 0;
  }
  .content__split-text--second {
    margin-top: 1.5em;
  }
}
.content__profile {
  max-width: 400px;
}
.content__profile-image {
  width: 100%;
  margin: 0 auto 0.5em;
}
.content__profile-caption {
  color: var(--color-primary);
  text-align: center;
}
.content__profile-caption span {
  font-size: 1.2em;
  font-weight: 700;
}

.kakomi {
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  padding: 4vw;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .kakomi {
    border: 2px solid var(--color-primary);
    padding: 2em;
  }
}
.kakomi__h3 {
  color: var(--color-primary);
  font-size: clamp(1em, 5vw, 1.5em);
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .kakomi__h3 {
    text-align: left;
    margin-top: 0;
  }
}

.download {
  width: 100%;
  text-align: center;
  margin: 50px 0;
}
@media (min-width: 1024px) {
  .download {
    margin: 60px 0;
  }
}
.download__link {
  display: inline-block;
  margin: 0 auto 1em;
  color: var(--color-primary);
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 0.3s;
}
.download__inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px 2px;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.3s;
}
@media (min-width: 1024px) {
  .download__inner {
    box-shadow: inset 0 -1px 0 currentColor;
  }
}
.download__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background-color: var(--color-primary);
  transition: width 0.3s;
  pointer-events: none;
  z-index: 0;
}
.download__text {
  position: relative;
  z-index: 1;
  color: currentColor;
  text-decoration: underline;
  transition: color 0.3s;
}
@media (min-width: 1024px) {
  .download__text {
    text-decoration: none;
  }
}
.download__arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 10px;
  flex: 0 0 auto;
  z-index: 1;
  color: currentColor;
  transition: color 0.3s;
}
.download__arrow::before, .download__arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  transition: left 0.2s, border-color 0.3s;
}
.download__arrow::before {
  left: 0;
}
.download__arrow::after {
  left: 7px;
}
.download__link:hover {
  color: #fff;
}
.download__link:hover .download__inner {
  box-shadow: inset 0 -2px 0 #fff;
}
.download__link:hover .download__inner::before {
  width: 100%;
}

.inquiry {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .inquiry {
    padding: 80px 0 100px;
  }
}
.inquiry__h2 {
  font-size: clamp(1em, 3.8vw, 1.125em);
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  margin: 0 auto 20px;
}
.inquiry__co {
  font-size: 1.75em;
  font-size: clamp(1em, 5vw, 1.75em);
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  margin: 0 auto 20px;
}
.inquiry__url {
  font-size: clamp(1em, 3.8vw, 1.125em);
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease;
}
.inquiry__url:hover {
  transform: translateY(6px);
}
.inquiry__icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.fadein {
  will-change: opacity, transform, filter;
}

.fadein {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadein.is-animated {
  opacity: 1;
}

.fadein.fadeinUp {
  transform: translateY(20px);
}

.fadein.fadeinUp.is-animated {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */