@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Borel&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* Reset */
html, body, div, p, span, a, img,
h1, h2, h3, h4, h5, h6, em, small,
header, footer, main, article, section, figure, figcaption,
ul, ol, li, dl, dt, dd, table, tr, th, td {
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  box-sizing: border-box;
}
header, footer, main, article, section, figure, figcaption {
  display: block;
}
table {
  border-collapse: collapse;
}
img {
  width: 100%;
  vertical-align: bottom;
}


/* Commons */
html {
  font-size: 10px;
}
a:link,
a:visited {
  color: #ffffff;
}
a:hover,
a:active,
a:hover img,
a:active img {
  transition: .5s;
  opacity: .75;
}
.pc {
  display: block;
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* Base */
body {
  font-family: 'Kiwi Maru', serif;
  font-weight: 300;
  font-style: normal;
  background: #602788;
  background-attachment: fixed;
}
#container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 4%;
  background: rgba(112, 11, 164, 0.15);
  position: relative;
}
#container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #595cbf 5%, #986cbb 65%, #dc7db7 95%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #container {
    width: 100%;
    padding: 0;
  }
}

/* Header */
header {
  width: 100%;
  padding: 32px 0;
}
header.pages {
  padding: 32px 0 0;
}
header h1 {
  width: 400px;
  margin: 0 auto;
}
header h2 {
  display: none;
}
header ul {
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header ul li {
  width: calc((100% / 6) - 8px);
  padding: 4px 0;
}
header ul li img {
  border-radius: 50%;
}
header.pages h2 {
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 2em;
  font-family: 'Borel', sans-serif;
  text-align: center;
  margin: 16px 0 0;
  display: block;
}
header.pages h2::before,
header.pages h2::after {
  content: '-';
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 2em;
  font-family: 'Borel', sans-serif;
  padding: 0 8px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  header h1 {
    width: 72.5%;
  }
  header.pages h1 {
    width: 85%;
  }
  header ul li {
    width: calc((100% / 3) - 8px);
  }
}

/* Footer */
footer {
  width: 100%;
  padding: 64px 0;
}
footer p {
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  margin: 4px 0 0;
}

/* Navigation */
nav {
  width: 100%;
  margin: 16px auto 48px;
}
nav .sns {
  display: flex;
  justify-content: center;
}
nav .sns li {
  width: 64px;
  margin: 0 16px;
}
nav .external {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
nav .external li {
  font-size: 1.6rem;
  line-height: 2em;
  text-align: left;
  width: calc(50% - 4px);
  margin: 4px 0;
  background: rgba(112, 11, 164, 0.5);
  border-radius: 8px;
}
nav .external li a {
  font-weight: bold;
  width: 100%;
  height: 100%;
  padding: 4px 16px 8px;
  display: block;
}
nav .external li a p {
  font-size: 1.4rem;
  line-height: 1.75em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  nav {
    width: 92%;
  }
  nav .sns li {
    width: 16%;
  }
  nav .external li {
    width: 100%;
    margin: 8px auto 0;
  }
}

/* Article */
article {
  color: #5f5f5f;
  font-size: 1.5rem;
  line-height: 2em;
  width: 100%;
  margin: 0 auto;
}
article a:link,
article a:visited {
  color: #40aba6;
}
article a.btn {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 3em;
  text-align: center;
  background: rgba(112, 11, 164, 0.5);
  border-radius: 8px;
  margin: 0 auto;
  padding: 0 32px;
  display: block;
  position: relative;
}
article a.btn:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
}
article a.btn:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent rgba(112, 11, 164, 0.5);
  position: absolute;
  top: calc(50% - 4px);
  right: 22px;
}
article .p_mt_s {
margin: 8px 0 0;
}
article .p_mt_m {
margin: 16px 0 0;
}
article .p_mt_l {
margin: 24px 0 0;
}
@media screen and (max-width: 768px) {
  article {
    font-size: 1.4rem;
    width: 90%;
  }
}


article #information {
  color: #ffffff;
  margin: 0 auto 48px;
  padding: 48px 48px 64px;
  border: rgba(255, 255, 255, 0.75) 1px solid;
}
article #information a:link,
article #information a:visited {
  color: #ffffff;
}
article #information h3 {
  color: #ffffff;
  font-size: 3rem;
  line-height: 2em;
  font-family: 'Borel', sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  article #information {
  }
}


article .showcase {
  margin: 0 auto 48px;
  padding: 48px 48px 64px;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: rgba(69, 179, 179, 0.25) 16px solid;
}
article .showcase h3 {
  font-size: 1.6rem;
  line-height: 1em;
  font-weight: bold;
  text-align: center;
}
article .showcase h3 span {
  color: #aa76ca;
  font-size: 3.2rem;
  line-height: 2em;
  font-weight: normal;
  font-family: 'Borel', sans-serif;
  display: block;
}
article .showcase h3::after {
  content: '';
  width: 60px;
  height: 2px;
  margin: 40px auto 32px;
  background: rgba(112, 11, 164, 0.5);
  border-radius: 2px;
  display: block;
}
article .showcase p {
  line-height: 1.75em;
  padding: 8px 0 0;
}
article .showcase .profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
article .showcase .profile dt {
  color: #ffffff;
  width: 20%;
  margin: 2px 0 0;
  padding: 8px 16px;
  background: rgba(112, 11, 164, 0.5);
}
article .showcase .profile dd {
  width: 75%;
  margin: 2px 0 0;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  article section.showcase {
    padding: 32px 24px 48px;
  }
  article .showcase .profile dt {
    font-size: 1.6rem;
    width: 100%;
    margin: 16px 0 0;
    text-align: center;
  }
  article .showcase .profile dd {
    width: 100%;
  }
}


#order {
}
#order h3 {
  font-size: 2rem;
  line-height: 1em;
  font-weight: bold;
  text-align: center;
}
#order .entry {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#order .entry dt {
  color: #ffffff;
  width: 20%;
  margin: 2px 0 0;
  padding: 8px 16px;
  background: rgba(112, 11, 164, 0.5);
}
#order .entry dd {
  width: 75%;
  margin: 2px 0 0;
  padding: 8px 0;
}
#order .progress li {
  margin: 0 0 48px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
}
#order .progress li:last-child {
  margin: 0;
}
#order .progress li::after {
  content: '▼';
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1em;
  text-align: center;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -34px;
}
#order .progress h4 {
  color: #aa76ca;
  font-size: 1.8rem;
  line-height: 2em;
  font-weight: bold;
  text-align: center;
}
#order .progress li:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  #order .entry {
    margin: -16px 0 0;
  }
  #order .entry dt {
    font-size: 1.6rem;
    width: 100%;
    margin: 16px 0 0;
    text-align: center;
  }
  #order .entry dd {
    width: 100%;
  }
  #order .progress li {
    margin: 0 0 48px;
    padding: 24px 16px;
  }
}