@charset "UTF-8";
/*---------------------------------------------

Style CSS

coded by d-spica at 2025-09-22

---------------------------------------------*/
/*---------------------------------------------

Set CSS

coded by d-spica at 2025-10-22
imported to "style.scss"

---------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@500;700&display=swap");
/* Reset */
body, header, hgroup, main, section, article, aside, nav, footer, main, figure, figcaption, picture, div,
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, hr,
blockquote, pre, table, caption, th, td, address,
form, fieldset, legend, object {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, pre, table, code, kbd, samp, acronym, time, input, textarea, select {
  font-size: 100%;
}

a, ins, u {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: inherit;
}

address, em, i, b, cite, dfn, var {
  font-style: normal;
}

fieldset {
  border: none;
}

input, textarea {
  font-family: inherit;
  font-weight: normal;
}

input, button {
  margin: 0;
  vertical-align: middle;
}

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

picture, video {
  display: block;
  vertical-align: bottom;
}

mark {
  background: none;
}

a, input, button, textarea {
  outline: none;
}

[type=text], [type=email], [type=tel], [type=submit], [type=button], select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  font-size: 100%;
}

/* Setting */
ul {
  list-style-position: outside;
  list-style-type: none;
}

ol {
  list-style-position: outside;
}

table {
  border-collapse: collapse;
}

/* Set Var */
:root {
  --sans-font: "Noto Sans JP", sans-serif;
  --maru-font: "Zen Maru Gothic";
  --font-color: #221714;
  --key-color: #97724D;
  --light-key-color: #CFA96A;
  --speed: 0.35s;
  --h-margin: max(3.5vw, calc(50vw - 45rem));
  /* https://angel-rs.github.io/css-color-filter-generator/ */
}

/*---------------------------------------------

Common CSS

coded by d-spica at 2025-10-22
imported to "style.scss"

---------------------------------------------*/
html {
  background-color: #FFF;
  line-height: 1.4;
  font-family: var(--sans-font);
  font-size: 10px;
  font-weight: 400;
  color: var(--font-color);
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
}

#page {
  position: relative;
  margin: 0 auto;
  max-width: 96rem;
}

hr {
  visibility: hidden;
  height: 0;
  clear: both;
}

a {
  color: inherit;
  transition: opacity var(--speed);
}
a:hover {
  opacity: 0.6;
}

[src*=".svg"] {
  width: 100%;
}

.obp-S,
.obp-M,
.obp-L {
  display: none;
}

header.header {
  position: fixed;
  top: 0;
  left: max(0rem, 50% - 48rem);
  z-index: 8;
  background-color: #FFF;
  padding: 1.4rem;
  width: calc(100% - 2.8rem);
  max-width: 93rem;
}
header.header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2rem;
  box-sizing: border-box;
  background: url("../img/bg-header.png") no-repeat 50% 50%/100% 100%;
  padding: 0 1.4rem;
  width: 100%;
  height: 6rem;
}
header.header .logo {
  width: min(27rem, 72%);
}
header.header .logo a {
  display: block;
  transition: var(--speed);
}
header.header .description {
  display: none;
}
header.header .contact {
  display: none;
}

nav.nav dt {
  position: fixed;
  top: 3.1rem;
  right: 2.8rem;
  z-index: 9;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
}
nav.nav dt i {
  display: block;
  position: absolute;
  top: calc(50% - 0.1rem);
  left: 0;
  background-color: #FFFBE6;
  width: 100%;
  height: 0.2rem;
  transition: transform var(--speed);
}
nav.nav dt i:nth-of-type(1) {
  transform: translateY(-0.8rem);
}
nav.nav dt i:nth-of-type(2) {
  transform: translateY(0.8rem);
}
nav.nav dd {
  position: fixed;
  top: 8.8rem;
  left: 0;
  z-index: 8;
  overflow: auto;
  box-sizing: border-box;
  background-color: #FFF;
  padding: 0.5rem 1.4rem;
  width: 100%;
  height: calc(100dvh - 8.8rem);
  transform-origin: 0 0;
  transform: scaleY(0);
  transition: transform var(--speed);
}
nav.nav dd p {
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-family: var(--maru-font);
  font-size: 1.5rem;
  font-weight: 500;
}
nav.nav dd ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.4rem;
  margin: 0 auto 2.5rem;
  width: 19.6rem;
}
nav.nav dd ul li {
  width: 19.6rem;
}
nav.nav dd ul li a {
  display: block;
  background: no-repeat 50% 50%/contain;
}
nav.nav dd ul li a[href*=about] {
  background-image: url("../img/nv-about-o.png");
}
nav.nav dd ul li a[href*=cat_50062257] {
  background-image: url("../img/nv-oshirase-o.png");
}
nav.nav dd ul li a[href*=work] {
  background-image: url("../img/nv-work-o.png");
}
nav.nav dd ul li a[href*=moussika] {
  background-image: url("../img/nv-moussika-o.png");
}
nav.nav dd ul li a[href*=fumiko_matsunaga] {
  background-image: url("../img/nv-fumiko-o.png");
}
nav.nav dd ul li a[href*=atsuko_kinoshita] {
  background-image: url("../img/nv-atsuko-o.png");
}
nav.nav dd ul li a[href*=neverland] {
  background-image: url("../img/nv-neverland-o.png");
}
nav.nav dd ul li a[href$="butter_roll/"] {
  background-image: url("../img/nv-dengonban-o.png");
}
nav.nav dd ul li a[href*=butter_roll-pirop] {
  background-image: url("../img/nv-hitorigoto-o.png");
}
nav.nav dd ul li a[href*=contact] {
  background-image: url("../img/nv-contact-o.png");
}
nav.nav dd ul li a img {
  transition: var(--speed);
}
nav.nav dd ul li a:hover, nav.nav dd ul li a.current {
  opacity: 1;
}
nav.nav dd ul li a:hover img, nav.nav dd ul li a.current img {
  opacity: 0;
}
nav.nav dd ul:nth-of-type(4) em {
  display: block;
  margin-bottom: 0.5em;
  font-family: var(--maru-font);
  font-size: 1.6rem;
  font-weight: 700;
}
nav.nav dd ul:nth-of-type(4) a {
  display: block;
  position: relative;
  margin: 0.5em 0;
  padding-left: 1em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-size: 1.4rem;
  color: var(--key-color);
}
nav.nav dd ul:nth-of-type(4) a::before {
  content: "▶︎";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  font-size: 60%;
}
nav.nav dd ul:nth-of-type(4) a:hover {
  text-decoration: none;
}
nav.nav.is-opened dt i:nth-of-type(1) {
  transform: translateY(0) rotate(145deg);
}
nav.nav.is-opened dt i:nth-of-type(2) {
  transform: scaleX(0);
}
nav.nav.is-opened dt i:nth-of-type(3) {
  transform: translateY(0) rotate(-145deg);
}
nav.nav.is-opened dd {
  transform: scaleY(1);
}

main.main {
  position: relative;
  margin: 8.8rem 1.4rem 0;
  background: url("../img/bg-main-m.png") repeat-y 0 0/100% auto;
  padding: 2rem;
}
main.main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg-main-t.png") repeat-y 0 0/100% 100%;
  width: 100%;
  height: 2rem;
}
main.main::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/bg-main-b.png") repeat-y 0 0/100% 100%;
  width: 100%;
  height: 2rem;
}

footer.footer p {
  padding: 2rem 1.4rem;
  text-align: center;
  font-family: var(--maru-font);
  font-size: 1.2rem;
  font-weight: 500;
}
footer.footer button {
  position: fixed;
  bottom: 0.6rem;
  right: 0.6rem;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  opacity: 0;
  transition: var(--speed);
}

.is-scrolled footer.footer button {
  opacity: 1;
}

section:has(span[id]) {
  position: relative;
}

span[id] {
  position: absolute;
  top: -2rem;
  left: 0;
  display: block;
}

@media (min-width: 480px) {
  .obp-S {
    display: inline-block;
  }
  .ubp-S {
    display: none;
  }
  nav.nav dd ul {
    width: 40.6rem;
  }
}
@media (min-width: 640px) {
  .obp-M {
    display: inline-block;
  }
  .ubp-M {
    display: none;
  }
  nav.nav dd ul {
    width: 61.6rem;
  }
  main.main {
    padding: 3rem 4rem;
  }
}
@media (min-width: 800px) {
  .obp-L {
    display: inline-block;
  }
  .ubp-L {
    display: none;
  }
  #page {
    display: grid;
    grid-template-columns: 22.4rem 1fr;
    grid-template-rows: auto auto auto;
  }
  header.header {
    grid-column: 1/3;
    grid-row: 1/2;
    padding: 2rem 1.4rem;
  }
  header.header div {
    height: 9.6rem;
  }
  header.header .logo {
    flex: 1;
    max-width: 48rem;
  }
  header.header .description {
    display: block;
    width: 26rem;
    white-space: nowrap;
    font-family: var(--maru-font);
    font-size: 1.4rem;
    font-weight: 500;
    color: #FFF;
  }
  header.header .contact {
    display: block;
    width: 6.4rem;
  }
  nav.nav {
    grid-column: 1/2;
    grid-row: 2/3;
    margin: 0 1.4rem;
  }
  nav.nav dl {
    position: sticky;
    top: 13.6rem;
  }
  nav.nav dt {
    display: none;
  }
  nav.nav dd {
    position: static;
    top: 0;
    padding: 0;
    height: auto;
    transform: scaleY(1);
  }
  nav.nav dd p {
    display: none;
  }
  nav.nav dd ul {
    flex-direction: row;
    justify-content: end;
    padding: 0;
    width: 19.6rem;
  }
  main.main {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 13.6rem;
    margin-left: 0;
    align-self: start;
  }
  footer.footer {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}
/*---------------------------------------------

Top Page Sections CSS

coded by d-spica at 2025-10-22
imported to "style.scss"

---------------------------------------------*/
section.intro {
  font-size: 1.6rem;
}
section.intro p {
  margin-bottom: 1.75em;
  line-height: 1.75;
  font-family: var(--maru-font);
  font-weight: 500;
}

section h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  background: url("../img/bg-title.png") no-repeat 50% 50%/auto 10.1rem;
  height: 10.1rem;
  text-align: center;
  font-family: var(--maru-font);
  font-size: 2.4rem;
  font-weight: 700;
}
section .nav-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
section .nav-section li {
  width: 12rem;
}
section .nav-section li a {
  opacity: 0.7;
}
section .nav-section li a:hover {
  opacity: 1;
}

section.about {
  font-size: 1.4rem;
}
section.about section {
  margin: 3rem 0 6rem;
}
section.about section:last-child {
  margin-bottom: 0;
}
section.about h2 {
  margin-bottom: 1.2em;
  font-size: 1.8rem;
  font-weight: 800;
}
section.about p {
  margin-bottom: 1.75em;
  line-height: 1.75;
}
section.about p span {
  font-size: 92%;
  color: #666;
}
section.about figure figcaption {
  margin-bottom: 0.3em;
  font-size: 1.6rem;
  font-weight: 700;
}
section.about figure iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
section.about b {
  font-weight: 700;
}
section.about a {
  display: inline-block;
  margin-top: 0.6em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.about a:hover {
  text-decoration: none;
}

section.work section {
  margin-bottom: 5rem;
}
section.work section:last-child {
  margin-bottom: 0;
}
section.work h2 {
  margin-bottom: 2rem;
  background: url("../img/bg-hd.png") no-repeat 0 0/100% 100%;
  padding: 0.2em 0.8em;
  font-family: var(--maru-font);
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFF;
}
section.work li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 1rem;
  margin-bottom: 1rem;
  border-bottom: dotted 2px var(--key-color);
  padding-bottom: 1rem;
}
section.work li > a, section.work li > i {
  display: block;
  grid-column: 1/2;
  grid-row: 1/4;
  align-self: start;
  max-width: 20vw;
}
section.work li em {
  display: block;
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: start;
  border-radius: 0.6rem;
  background-color: #FFF;
  padding: 0.2em 0.8em;
  font-size: 1.5rem;
  font-weight: 700;
}
section.work li span {
  display: block;
  align-self: start;
  margin-top: 0.6em;
  line-height: 1.6;
  font-size: 1.2rem;
}
section.work li span:nth-of-type(1) {
  grid-column: 2/3;
  grid-row: 2/3;
}
section.work li span:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 3/4;
}
section.work li span a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.work li span a:hover {
  text-decoration: none;
}

section.profile {
  font-size: 1.4rem;
}
section.profile section {
  margin: 3rem 0 6rem;
}
section.profile section:last-child {
  margin-bottom: 0;
}
section.profile h2 {
  margin-bottom: 2rem;
  border-bottom: dotted 2px var(--light-key-color);
  padding-bottom: 0.2em;
  text-align: center;
  font-family: var(--maru-font);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--key-color);
}
section.profile .tableA, section.profile .tableB {
  line-height: 1.6;
  font-size: 1.2rem;
}
section.profile .tableA dl, section.profile .tableB dl {
  margin-bottom: 1.5em;
}
section.profile .tableA dt em, section.profile .tableB dt em {
  font-size: 1.4rem;
  font-weight: 700;
}
section.profile .tableA dd, section.profile .tableB dd {
  padding-left: 1.5em;
}
section.profile .tableA + p, section.profile .tableB + p {
  text-align: right;
  font-size: 1.2rem;
}
section.profile p, section.profile ul {
  margin-bottom: 1.75em;
  line-height: 1.75;
}
section.profile p a, section.profile ul a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
section.profile p a:hover, section.profile ul a:hover {
  text-decoration: none;
}
section.profile p a[target]::after, section.profile ul a[target]::after {
  content: "";
  display: inline-block;
  margin-left: 0.3em;
  background: url("../img/mk-newtab.svg") no-repeat 50% 50%/contain;
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.15em;
}
section.profile p span, section.profile ul span {
  font-size: 92%;
  color: #666;
}
section.profile .listA li {
  position: relative;
  margin-bottom: 0.3em;
  padding-left: 1.4em;
}
section.profile .listA li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 1rem;
  height: 1rem;
  border-radius: 0.6rem 0.6rem 0.6rem 0;
  transform: rotate(-20deg);
  background: var(--light-key-color);
  box-shadow: 0 0 0 1.5px #F9F1DE;
}
section.profile .listB li {
  position: relative;
  margin-bottom: 0.3em;
  padding-left: 1.4em;
}
section.profile .listB li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.1em;
  border-radius: 0.2rem;
  background-color: var(--light-key-color);
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(45deg);
}
section.profile picture {
  margin-bottom: 1.75em;
}
section.profile .photo img {
  margin-bottom: 0.3em;
}

section.columns {
  font-size: 1.4rem;
}
section.columns p {
  margin-bottom: 1.75em;
  line-height: 1.75;
}
section.columns dl {
  margin-bottom: 1.75em;
  margin-right: auto;
  width: 28rem;
}
section.columns dt {
  border-bottom: dotted 2px var(--light-key-color);
  font-size: 1.8rem;
  font-weight: 700;
}
section.columns dt b {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: -0.1em;
  font-size: 125%;
  color: var(--key-color);
}
section.columns dd {
  margin-top: 1rem;
  padding: 0 1.5rem;
}
section.columns dd a {
  display: inline-block;
  margin: 0 1.5rem;
  border-radius: 9999rem;
  background-color: #FFF;
  width: 1.4em;
  height: 1.6em;
  text-align: center;
  font-family: var(--maru-font);
  font-size: 2rem;
  font-weight: 700;
}
section.columns picture {
  margin-left: auto;
  width: 18rem;
}

section.column {
  font-size: 1.4rem;
}
section.column h1 {
  flex-direction: column;
  margin-bottom: 3rem;
  background: url("../img/bg-title-n.png") no-repeat 50% 40%/100% auto;
  height: 16rem;
  text-align: center;
  font-size: 2.4rem;
}
section.column h1 span {
  display: block;
  font-size: 1.6rem;
}
section.column h1 em {
  display: block;
}
section.column h1 b {
  display: block;
  margin-top: 4rem;
  border-radius: 9999rem;
  background-color: #FFF;
  width: 1.4em;
  height: 1.6em;
  text-align: center;
  font-family: var(--maru-font);
  font-size: 2rem;
  font-weight: 700;
}
section.column p {
  margin-bottom: 1.75em;
  line-height: 1.75;
}
section.column picture {
  margin-bottom: 1.75em;
  text-align: right;
}
section.column .pager {
  font-family: var(--maru-font);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-top: 2em;
}
section.column .pager .index {
  text-align: center;
}
section.column .pager .prev {
  position: absolute;
  top: 0;
  left: 0;
}
section.column .pager .prev a::before {
  content: "";
  display: inline-block;
  margin-right: 0.3em;
  background: url("../img/bt-prev.png") no-repeat 50% 50%/contain;
  width: 2.5em;
  height: 1.2em;
  vertical-align: -0.2em;
}
section.column .pager .next {
  position: absolute;
  top: 0;
  right: 0;
}
section.column .pager .next a::after {
  content: "";
  display: inline-block;
  margin-left: 0.3em;
  background: url("../img/bt-next.png") no-repeat 50% 50%/contain;
  width: 2.5em;
  height: 1.2em;
  vertical-align: -0.2em;
}

section.contact {
  font-size: 1.4rem;
}
section.contact p {
  margin-bottom: 1.75em;
  line-height: 1.75;
}
section.contact dl {
  margin-bottom: 1.75em;
}
section.contact dt {
  margin-bottom: 0.5em;
}
section.contact dt span {
  color: #C00;
}
section.contact dd span {
  display: inline-block;
  margin: 0.3em 0;
}
section.contact .error {
  margin: 0.5em 0;
  color: #C00;
}
section.contact [type=text], section.contact textarea {
  box-sizing: border-box;
  border: solid 1px #999;
  border-radius: 0.4rem;
  background-color: #FFF;
  padding: 0.3em 0.5em;
  width: min(100%, 22em);
  font-size: 1.6rem;
}
section.contact [type=submit] {
  box-sizing: border-box;
  border: solid 1px #999;
  border-radius: 0.4rem;
  background-color: #EEE;
  padding: 0.3em 0.5em;
  width: 10em;
  font-size: 1.6rem;
  cursor: pointer;
}
section.contact picture {
  margin-left: auto;
  width: 18rem;
}

@media (min-width: 560px) {
  section.columns picture {
    margin-top: -22rem;
  }
  section.column .pager {
    padding-top: 0;
  }
}
@media (min-width: 640px) {
  section.work section li em {
    font-size: 1.8rem;
  }
  section.profile .tableA, section.profile .tableB {
    display: table;
    margin-bottom: 1.5em;
    width: 100%;
  }
  section.profile .tableA dl, section.profile .tableB dl {
    display: table-row;
    margin-bottom: 0;
  }
  section.profile .tableA dt, section.profile .tableB dt {
    display: table-cell;
    padding: 0.75em;
  }
  section.profile .tableA dd, section.profile .tableB dd {
    position: relative;
    display: table-cell;
    padding: 0.75em 0.75em 0.75em 1.5em;
  }
  section.profile .tableA dd::before, section.profile .tableB dd::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    background-color: var(--light-key-color);
    width: 1px;
  }
  section.profile .tableA dt {
    white-space: nowrap;
  }
  section.profile .tableA dd::before {
    top: 0;
    height: 100%;
  }
  section.profile .tableB dt {
    border-bottom: dotted 2px var(--light-key-color);
    width: 42%;
  }
  section.profile .tableB dd {
    border-bottom: dotted 2px var(--light-key-color);
  }
  section.profile .tableB dd::before {
    top: 0.75rem;
    height: calc(100% - 1.5rem);
  }
  section.contact picture {
    margin-top: -15rem;
  }
}
@media (min-width: 800px) {
  section.intro {
    font-size: 1.8rem;
  }
  section h1 {
    font-size: 2.8rem;
  }
}/*# sourceMappingURL=style.css.map */