@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
/* fontサイズ・バリエーション */
div,
footer,
img,
li,
nav,
p,
section,
table,
table tr td,
table tr th,
ul {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  word-break: break-word;
  color: #333;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  background: #f5f5f5;
  opacity: 0;
}

/* スマホ画像保存禁止 */
img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: bottom;
}

#img_wrap {
  position: relative;
}

#img_wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/toumei.png);
  background-position: top left;
  background-size: 100% 100%;
}

#img_wrap img {
  display: block;
  margin: auto;
}

/* ここまで */
a {
  color: #333;
  text-decoration: underline;
  transition: all 0.2s;
}
a:active, a:hover {
  color: #333;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* fontサイズ・カラーバリエーション */
.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
  font-weight: 800;
}

.red {
  color: #e3065f;
}

/* 基本id、横幅指定など */
#wrapper {
  margin: 0 auto;
}

#wrapper img {
  max-width: 100%;
}

article {
  margin: 0 auto;
  padding: 5% 3%;
  max-width: 1280px;
}

/* ふわっと表示させる用 */
/* 下から */
.js-load_effect {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 1s;
}
.js-load_effect.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* 左から */
.js-load_effect_x {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  transition: all 1s;
}
.js-load_effect_x.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition-delay: 0.4s;
}

#top_area {
  background: url("../img/top_bg.png") no-repeat 40% 60%, linear-gradient(45deg, #ffbb00 0%, #ffd54d 50%, #ffdb4d 100%);
  background-size: cover, cover;
}

#secondary_area {
  background: linear-gradient(45deg, #ffbb00 0%, #ffd54d 50%, #ffdb4d 100%);
}

h2 {
  color: #333;
  font-size: 2.4rem;
}

#section-nav {
  width: 100%;
  margin: 0 auto;
}
#section-nav li {
  display: inline-block;
  width: 33.333333%;
  text-align: center;
}
#section-nav li a {
  display: inline-block;
  text-decoration: none;
  background: #FFF;
  border-radius: 10px;
  line-height: 1;
  vertical-align: bottom;
}

h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  color: #333;
}

a.link_Playlist {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  background: #FFF;
  border-radius: 100px;
  text-decoration: none;
}
a.link_Playlist:hover {
  background: #ffa200;
}
a.link_Playlist::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.5em;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #333;
  color: #fff;
  padding: 10px 11px;
  border: 3px solid #333;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  display: none; /* 初期は非表示 */
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #FFF;
}

.back-to-top::before {
  content: "";
  font-size: 16px;
}

footer {
  background: #f5f5f5;
}
footer .credit {
  padding: 10px 5%;
}
footer .credit p {
  width: 100%;
  font-size: 0.5rem;
  text-align: center;
  color: #777;
}
footer #footer_logo {
  background: #FFF;
}
footer #footer_logo img {
  display: block;
  margin: 0 auto;
  max-width: 200px;
}/*# sourceMappingURL=common.css.map */