@charset "utf-8";

/* soles official
   StyleSheet
============================== */

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body {
  font-family: YakuHanJP_Noto, 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: justify;
  word-break: break-all;
  overflow-wrap: break-word;
  background-color: #36a4c5;
  background-image: linear-gradient(155deg,#36a4c5 2%,#f8f5e3 6%);
  color: #2c2c2c;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 900;
  line-height: 2.0;
}
h2 {
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 2.0rem;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
hr {
  height: auto;
  border: none;
}
hr::before {
  content: "・・・・・";
  display: block;
  text-align: center;
  padding: 0.3em;
}
.photo {
  text-align: center;
}

.poyopoyo {
  animation: poyopoyo 3s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}


.inner {
  padding: 0 2.0rem;
}

.contentsWrap {
  background-color: #f8f5e3;
}

h1 {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 0.5em;
}

header {
  position: relative;
  margin-bottom: 4.0rem;
  text-align: center;
}
header .introductionLink {
  position: absolute;
  bottom: 0px;
}
header .introductionLink a {
  display: grid;
  align-items: center;
  background-color: rgba(30, 70, 40, 0.9);
  color: #fcf6ea;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
  margin-left: 0.5em;
}

main  {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.0rem;
  margin-bottom: 4.0rem;
}

.release {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.2;
}
.release span {
  font-size: 1.4rem;
  display: block;
}

.leadText {
  border: 2px solid #2c2c2c;
  padding: 20px;
  background-color: #fff;
}
.leadText h2 {
  font-size: 2.0rem;
  background-color: #fff;
  border: 2px solid #2c2c2c;
  box-shadow: 4px 4px 0 #2c2c2c;
  text-align: center;
  width: 14em;
  padding-bottom: 0.3rem;
  margin: -45px auto 0 auto;
  margin-bottom: 1.6rem;
}

#comment p {
  font-family: 'Noto Serif JP', serif;
}
#comment .inner article {
  border-top: 2px solid #2c2c2c;
  border-bottom: 2px solid #2c2c2c;
  margin-top: 4.0rem;
  padding: 2.0rem 0;
}

#album div {
  display: grid;
  gap: 20px;
}
#album ol {
  list-style: decimal-leading-zero;
  padding-left: 4.0em;
}


#introduction {
  background-color: #2f0f02;
  color: #fcf6ea;
  padding-top: 6.0rem;
  padding-bottom: 6.0rem;
}
#introduction ol {
  list-style: decimal-leading-zero;
  list-style-position: inside;
  font-size: 1.8rem;
}
#introduction ol li::marker {
  font-weight:bold;
}
#introduction ol li h3 {
  display: inline;
}
#introduction ol li + * {
  margin-top: 1.0em;
  padding-top: 1.0em;
  border-top: 1px solid #fcf6ea;
}
#introduction ol li p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
}

.youTube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youTube iframe {
  width: 100%;
  height: 100%;
}

.button {
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1.0em;
  border: none;
}

footer {
  padding: 3.0rem 0;
  background-color: #000;
  color: #fff;
  text-align: center;
}

nav {
  padding: 2.0rem 0;
}
nav ul {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

/* ============================== */
@media (min-width:800px) {
  .contentsWrap,nav {
    width: 800px;
    margin: auto;
  }
  header .introductionLink a {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    font-size: 1.6rem;
    margin-bottom: 1.5em;
    margin-left: 1.5em;
  }
  .pc2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
  }
  .pc2col hr {
    display: none;
  }
  .pc2col span {
    display: block;
    text-align: right;
    padding-top: 1.0em;
  }
  #introduction li {
    text-align: center;
  }
  #introduction li p {
    text-align: justify;
    padding-top: 0.5em;
  }
}