@charset "utf-8";

:root {
  --outfit: "Murecho", sans-serif;
  --main-black: #2c2b38;
  --main-pink: #ed9dc6;
  --main-pale-blue: #d6d9dd;
}

* {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
/*Google Chrome、Safariへの対応*/
*::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 10px;
}
body {
  background-color: var(--main-pale-blue);
  color: #2c2b38;
  font-family: "Murecho", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}

p {
  line-height: 1.76;
}
a {
  color: var(--main-pink);
  font-weight: 500;
  word-break: break-all;
}
a:hover {
  text-decoration: none;
}

header,
.b-global-nav {
  margin-left: 0.5rem;
}
.b-global-nav {
  margin-bottom: 2rem;
}
.b-global-nav .-list {
  display: flex;
  list-style: none;
  margin: 0 auto;
}
.b-global-nav .-list a {
  color: #2c2b38;
  display: block;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: 0.4s;
}
.b-global-nav .-list a:hover {
  background-color: var(--main-pink);
  border-radius: 6px;
}

.b-whiteBox {
  background-color: #fff;
  border-radius: 1rem;
  margin: 30px auto 0;
  padding: 2.5rem 3rem 3rem;
}
.b-whiteBox h2 {
  margin-bottom: 0.5em;
}

.b-topVisual {
}

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

  info

------------------------*/
.b-main {
  margin: 0 auto;
  max-width: 600px;
  width: 90vw;
}

.b-aboutList dt {
  font-weight: 500;
  line-height: 1.5;
  margin: 1em 0 0.5em;
  word-break: break-word;
}
.b-aboutList dt span {
  font-size: 80%;
  opacity: 0.75;
  margin-left: 0.5em;
}

.b-doneList {
  padding-left: 1em;
}
.b-doneList li {
  line-height: 2;
  padding-left: 0.25em;
}
.b-doneList li::marker {
  font-size: 0.6em;
}

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

  works

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

.b-aboutList.m-works dt {
  border-top: 1px dotted #2c2b38;
  margin-top: 0;
  padding-top: 1.5em;
}
.b-aboutList.m-works dt:first-child {
  border-top: none;
}
.b-aboutList.m-works dd {
  padding-bottom: 1.5em;
}

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

  memo

------------------------*/
.memo .b-whiteBox p {
  margin-bottom: 0.75em;
}
.memo .b-whiteBox p:last-child {
  margin-bottom: 0;
}

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

  footer

------------------------*/
footer {
  margin-top: 3rem;
  padding-bottom: 1rem;
  text-align: center;
}
