/*
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;
  font-size: min(1em, 3.8647vw);
  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;
  }
}
.clearfix {
  clear: both;
}

.mb0 {
  margin-bottom: 0 !important;
}

/* LAYOUT 
====================================================== */
:root {
  --theme-color: #ab6b41;
  --theme-color-text: #765133;
  --theme-color-bg: #c4946f;
  --theme-color-lightbg: #eee1d9;
  --theme-gradient: linear-gradient(to right, #3b1906, #ab6b41);
}

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

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 30px;
}
@media (min-width: 1024px) {
  .hero {
    padding: 0 0 40px;
  }
}
.hero__image {
  width: 100%;
  background-color: var(--theme-color-bg);
  margin: 0 auto;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% top;
     object-position: 50% top;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__image img {
    max-width: 940px;
    -o-object-position: 50% top;
       object-position: 50% top;
  }
}
.hero__series {
  background: var(--theme-gradient);
  width: 100%;
  padding: 1em 3%;
}
.hero__series__inner {
  max-width: 820px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media (min-width: 1024px) {
  .hero__series__inner {
    justify-content: space-between;
  }
}
.hero__series-title {
  color: #fff;
  font-size: min(1.375em, 5vw);
  font-weight: 900;
}
.hero__series-title span {
  font-family: "Noto Serif JP", serif;
}
.hero__series-teikyo {
  color: #fff;
  font-size: 0.875em;
  font-weight: 600;
  display: none;
}
@media (min-width: 1024px) {
  .hero__series-teikyo {
    display: block;
  }
}
.hero__content {
  width: 100%;
  max-width: calc(820px + 6%);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 50px 3% 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero__content {
    padding: 40px 3% 0;
  }
}
.hero__company {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-top: 1px solid var(--theme-color-text);
  border-bottom: 1px solid var(--theme-color-text);
  padding: 1em;
  position: relative;
}
@media (min-width: 1024px) {
  .hero__company {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 0.5em;
  }
}
.hero__company-times {
  position: absolute;
  top: -20px;
  background: var(--theme-gradient);
  color: #fff;
  font-size: min(4.35vw, 1.15em);
  line-height: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  padding: 5px 1.75em;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__company-times {
    position: static;
    padding: 4px 2em;
  }
}
.hero__company-times span {
  font-size: 1.5em;
  padding: 0 0.125em;
  transform: translateY(-0.05em);
}
.hero__company-name {
  font-size: min(5.8vw, 1.625em);
  transform: translateY(0.25em);
}
@media (min-width: 1024px) {
  .hero__company-name {
    transform: translateY(0);
  }
}
.hero__title {
  width: 100%;
  font-size: min(3.125em, 7.6vw);
  font-feature-settings: "palt";
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin: 20px auto 0;
}
@media (min-width: 1024px) {
  .hero__title {
    line-height: 1.25;
    text-decoration: none;
  }
}

.content {
  width: 100%;
  padding: 0 0 40px;
}
.content__body {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
.content__lead {
  width: 94%;
  max-width: 820px;
  line-height: 2;
  text-align: justify;
  font-weight: 600;
  color: var(--theme-color-text);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .content__lead {
    font-size: 1.0625em;
  }
}
.content__lead-editor {
  width: 94%;
  max-width: 820px;
  line-height: 2;
  text-align: right;
  font-size: min(1em, 3.7vw);
  font-weight: 600;
  color: var(--theme-color-text);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .content__lead-editor {
    font-size: 1.0625em;
  }
}
.content .sup {
  font-size: 0.75em;
  vertical-align: top;
  margin: 0;
}
.content__body {
  text-align: center;
}
.content__body p {
  width: 94%;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 auto 20px;
}
.content__body p .speaker {
  color: var(--theme-color-text);
  font-weight: 600;
  margin-right: 1em;
}
.content__body .summary {
  width: 100%;
  background: var(--theme-color-lightbg);
  padding: 1em 3%;
  margin: 50px auto 50px;
}
.content__body .summary-text {
  width: 100%;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 0 0.5em;
}
.content__body p.bold {
  width: 94%;
  font-weight: 600;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 auto 20px;
}
.content__body .content__unit {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media (min-width: 1024px) {
  .content__body .content__unit {
    display: block;
  }
}
.content__body .content__unit__photo {
  width: 80%;
  max-width: 360px;
  margin: 0 auto 20px;
}
@media (min-width: 1024px) {
  .content__body .content__unit__photo {
    float: right;
    padding-top: 0.5em;
    margin: 0 0 2em 2.5em;
  }
}
.content__body .content__unit__photo__image {
  position: relative;
}
.content__body .content__unit__photo__image img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
.content__body .content__unit__photo__caption {
  background-color: var(--theme-color);
  color: #fff;
  text-align: left;
  padding: 6px 1em;
}
.content__body .content__unit__photo__caption span {
  font-weight: 600;
  font-size: 1.125em;
}
.content__body .figure__unit {
  width: 94%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2em auto;
}
.content__body .figure__unit img {
  width: 100%;
  max-width: 360px;
  margin-bottom: 0.25em;
}
@media (min-width: 1024px) {
  .content__body .figure__unit img {
    width: 100%;
  }
}
.content__body .figure__unit-caption {
  width: 100%;
  max-width: 400px;
  font-size: min(0.875em, 3.38164vw);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.content__body .figure__unit-text p {
  width: 100%;
}

.interview {
  position: relative;
  background: var(--theme-color-lightbg);
  z-index: -2;
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .interview {
    padding: 60px 0;
  }
}
.interview__heading {
  background: var(--theme-color);
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: min(1.25em, 4.831vw);
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  border-radius: 9999px;
  padding: 10px 2em;
  margin: 0 auto 30px;
}

.interview__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .interview__unit {
    display: block;
  }
}
.interview__unit__text.order1 {
  order: 1;
}
.interview__unit__text.order2 {
  order: 2;
}
.interview__unit__photo {
  order: 3;
  width: 80%;
  max-width: 360px;
  margin: 0 auto 20px;
}
@media (min-width: 1024px) {
  .interview__unit__photo {
    float: right;
    padding-top: 0.5em;
    margin: 0 0 2em 2.5em;
  }
}
.interview__unit__photo__image {
  position: relative;
}
.interview__unit__photo__image img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
.interview__unit__photo__caption {
  background-color: var(--theme-color);
  color: #fff;
  text-align: left;
  padding: 6px 1em;
}
.interview__unit__photo__caption span {
  font-weight: 600;
  font-size: 1.125em;
}

.notes {
  padding: 0 3%;
  margin: 40px auto;
}
@media (min-width: 1024px) {
  .notes {
    padding: 0;
  }
}
.notes-list {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
.notes-list li {
  font-size: min(0.875em, 3.38164vw);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: -2em;
  padding-left: 2em;
  margin-bottom: 1em;
}
.notes-list li span {
  margin-right: 0.5em;
}
.notes-list-link {
  display: inline-block;
  text-decoration: underline;
  padding-left: 2.75em;
  position: relative;
}
.notes-list-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 0.3em solid transparent;
  border-left: 0.45em solid var(--theme-color-text);
}
.notes-list-link:hover {
  text-decoration: none;
}

.inquiry {
  width: 100%;
  background: var(--theme-gradient);
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .inquiry {
    padding: 80px 0;
  }
}
.inquiry__body {
  width: 94%;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.inquiry__title {
  display: inline-block;
  background: #fff;
  border-radius: 9999px;
  color: var(--theme-color-text);
  font-size: min(1.125em, 3.5vw);
  font-weight: 600;
  padding: 5px 1em;
  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.2s;
}
.inquiry__url a:hover {
  color: #ffeb7d;
  text-decoration: none;
}

.index {
  background: var(--theme-color-lightbg);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--theme-color);
}
@media (min-width: 1024px) {
  .index {
    padding: 60px 0;
  }
}
.index-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-text);
  text-decoration: none;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .index-link {
    flex-direction: row;
    padding-left: 1.5em;
  }
}
.index-link:hover {
  color: var(--theme-color);
  text-decoration: none;
}
@media (min-width: 1024px) {
  .index-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent var(--theme-color-text);
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
}
.index-sub {
  font-size: min(4.5vw, 1.5em);
  font-weight: 900;
}
@media (min-width: 1024px) {
  .index-sub {
    margin-right: 0.75em;
  }
}
.index-title {
  position: relative;
  max-width: 770px;
  font-size: min(4.5vw, 1.25em);
  font-weight: 600;
  text-align: center;
  padding-left: 1em;
}
@media (min-width: 1024px) {
  .index-title {
    padding-left: 0;
  }
}
.index-title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--theme-color-text);
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .index-title::before {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */