@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ==========================================================================
  Reset
========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section, main {
  display: block;
}

ul, li, ol {
  list-style: none;
}

input, select {
  vertical-align: middle;
}

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

em {
  font-style: normal;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
　Base
========================================================================== */
* {
  box-sizing: border-box;
  font-size: 100%;
  position: relative;
}

html {
  font-size: 62.5%;
  height: 100%;
}
@media (max-width: 600px) {
  html {
    font-size: 58%;
  }
}
@media (max-width: 425px) {
  html {
    font-size: 53%;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  background: #fefefe;
  color: #9f9f9f;
  font-weight: normal;
  line-height: 1;
  font-size: 1.6rem;
  letter-spacing: 0;
  background: url(../images/bg.jpg) top center/cover no-repeat;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0, 0, 0);
}
a::after {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover_nomove:hover {
  transform: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

/* ------------------------------------------------------------------
  layout
------------------------------------------------------------------ */
.layout {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1248px) {
  .layout {
    width: calc(100% - (1rem + 1rem));
  }
}

/* ------------------------------------------------------------------
container
------------------------------------------------------------------ */
/* ------------------------------------------------------------------
　header
------------------------------------------------------------------ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 0 1px rgba(187, 187, 187, 0.8);
  z-index: 999;
  background: #fff;
  height: 7rem;
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .header__inner {
    justify-content: flex-end;
  }
}
.header__nav {
  display: flex;
  gap: 3.84rem;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .header__nav {
    gap: 3.84rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 13rem 4.8rem 6rem;
    transition: left 0.3s;
    flex-direction: column;
    z-index: 999;
  }
}
.header__nav.is-active {
  right: 0;
}
.header__nav-link {
  transition: 0.3s ease;
}
.header__nav-link:hover {
  color: #e28b2c;
}
@media (max-width: 768px) {
  .header__nav-link {
    text-align: center;
  }
}
.header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .header__hamburger {
    width: 4rem;
    height: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
  }
  .header__hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #9f9f9f;
    transition: 0.3s;
  }
  .header__hamburger.is-active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ------------------------------------------------------------------
footer
------------------------------------------------------------------ */
.footer {
  box-shadow: 0 0 1px 0 rgba(88, 90, 91, 0.3);
  color: #585a5b;
}
.footer__inner {
  padding: 2.4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__text {
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer__copy {
  font-size: 1.4rem;
}

/* ------------------------------------------------------------------
title
------------------------------------------------------------------ */
.c-title {
  display: flex;
  justify-content: center;
}
.c-title__image {
  width: 40rem;
}
@media (max-width: 768px) {
  .c-title__image {
    width: 30rem;
  }
}

/* ------------------------------------------------------------------
button
------------------------------------------------------------------ */
.c-btn {
  border: solid 1px #bbb;
  border-radius: 5px;
  padding: 0.6rem 4.8rem;
  display: block;
  width: max-content;
}
.c-btn--hover {
  position: relative;
}
.c-btn--hover:hover .c-btn__img:first-of-type {
  opacity: 0;
}
.c-btn--hover:hover .c-btn__img:last-of-type {
  opacity: 1;
}
.c-btn__text {
  font-weight: bold;
  text-align: center;
}
.c-btn__img {
  height: auto;
  width: 100%;
  display: block;
  transition: opacity 0.7s;
}
.c-btn__img:first-of-type {
  position: relative;
}
.c-btn__img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* ------------------------------------------------------------------
c-wyswig
------------------------------------------------------------------ */
.c-wyswig p {
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

/* ------------------------------------------------------------------
p-top
------------------------------------------------------------------ */
.p-top__inner {
  padding: 7rem 0 10rem;
}
.p-top__logo, .p-top__utagoe {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}
.p-top__logo-image {
  max-width: 45rem;
}
.p-top__utagoe-image {
  max-width: 25rem;
}
.p-top__bnr {
  max-width: 80rem;
  width: 100%;
  margin: 2.4rem auto 0;
}

/* ------------------------------------------------------------------
p-news
------------------------------------------------------------------ */
.p-news {
  padding-top: 7rem;
  color: #585a5b;
}
.p-news__inner {
  padding: 6rem 0;
}
.p-news__title {
  width: 30rem;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.p-news__category {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  margin-top: 10rem;
}
.p-news__category-item:hover {
  text-decoration: underline;
}
.p-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.84rem;
  margin-top: 4.8rem;
}
@media (max-width: 768px) {
  .p-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media (max-width: 425px) {
  .p-news__grid {
    grid-template-columns: 1fr;
  }
}
.p-news__box {
  box-shadow: 0 0 0 1px rgba(187, 187, 187, 0.8);
}
.p-news__box-image {
  object-fit: cover;
  aspect-ratio: 30/17;
}
.p-news__box-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem 1rem;
}
.p-news__box-date {
  font-size: 1.4rem;
}
.p-news__box-title {
  font-size: 1.6rem;
  line-height: 1.3;
}
.p-news__pager {
  margin-top: 6rem;
}
.p-news__pager-list {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
}
.p-news__pager-btn, .p-news__pager-btn--next, .p-news__pager-btn--prev {
  cursor: pointer;
}
.p-news__pager-btn:hover, .p-news__pager-btn--next:hover, .p-news__pager-btn--prev:hover {
  border-bottom: 1px solid #9f9f9f;
}
.p-news__pager-num {
  cursor: pointer;
}
.p-news__pager-num.is-active, .p-news__pager-num:hover {
  border-bottom: 1px solid #9f9f9f;
}
.p-news__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.p-news__header-date {
  font-size: 1.4rem;
}
.p-news__header-title {
  font-size: 2.6rem;
  line-height: 1.4;
}
.p-news__thumnail {
  margin-top: 6rem;
}
.p-news__post {
  margin-top: 6rem;
}
.p-news__post-pager {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
}
.p-news__post-arrow {
  display: flex;
  justify-content: space-between;
  font-size: 3rem;
  width: 100%;
}

/* ------------------------------------------------------------------
p-about
------------------------------------------------------------------ */
.p-about {
  padding-top: 7rem;
}
.p-about__inner {
  padding: 6rem 0;
}
.p-about__title {
  display: flex;
  justify-content: center;
}
.p-about__title-image--about, .p-about__title-image--song {
  width: 40rem;
}
@media (max-width: 768px) {
  .p-about__title-image--about, .p-about__title-image--song {
    width: 30rem;
  }
}
.p-about__box {
  margin-top: -4.8rem;
}
@media (max-width: 768px) {
  .p-about__box {
    margin-top: -1.6rem;
  }
}
.p-about__btn {
  margin: 6rem auto 0;
  width: 27rem;
}
@media (max-width: 768px) {
  .p-about__btn {
    width: 20rem;
  }
}
.p-about__btn-image {
  width: 30rem;
  margin-top: 9.6rem;
}
.p-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .p-about__grid {
    grid-template-columns: 1fr;
    gap: 3.84rem;
  }
}
.p-about__song {
  padding-top: 15rem;
}
@media (max-width: 768px) {
  .p-about__song {
    padding-top: 10rem;
  }
}
@media (max-width: 768px) {
  .p-about__song-movie {
    text-align: center;
  }
}
.p-about__song-movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}

/* ------------------------------------------------------------------
p-material
------------------------------------------------------------------ */
.p-material {
  padding-top: 7rem;
}
.p-material a {
  text-decoration: underline;
}
.p-material a:hover {
  text-decoration: none;
}
.p-material__inner {
  padding: 10rem 0;
}
.p-material__info {
  text-align: center;
  margin-top: 4.8rem;
  color: #585a5b;
  line-height: 1.6;
}
.p-material__faq {
  box-shadow: 0 0 0 1px rgba(187, 187, 187, 0.8);
  margin-top: 8rem;
  padding: 4.8rem 3.84rem;
  background: #fff;
}
.p-material__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.p-material__text {
  font-size: 1.6rem;
  line-height: 2;
}
.p-material__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.84rem;
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .p-material__grid {
    grid-template-columns: 1fr;
  }
}
.p-material__box-title {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
.p-material__box-image {
  padding: 2.4rem;
}
.p-material__box-image--small {
  padding: 2.4rem 0.625rem 0.625rem 2.4rem;
}
.p-material__btn {
  margin: 4.8rem auto 0;
  width: 22rem;
  margin-top: 2.4rem;
}

/* ------------------------------------------------------------------
p-product
------------------------------------------------------------------ */
.p-product {
  padding-top: 7rem;
}
.p-product__inner {
  padding: 10rem 0;
}
.p-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.84rem;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .p-product__grid {
    grid-template-columns: 1fr;
  }
}
.p-product__text {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #585a5b;
}
.p-product__box {
  margin-top: 6rem;
}
.p-product__box-title {
  width: 23rem;
}
.p-product__box-title--small {
  width: 13rem;
}
.p-product__site-box {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.p-product__site, .p-product__site--border {
  transition: 0.3s ease;
  max-width: 22rem;
}
.p-product__site--border {
  box-shadow: 0 0 0 1px rgba(187, 187, 187, 0.8);
}
.p-product__site:hover, .p-product__site--border:hover {
  opacity: 0.8;
}
.p-product__note {
  box-shadow: 0 0 0 1px rgba(187, 187, 187, 0.8);
  padding: 4.8rem;
  margin-top: 9.6rem;
  color: #585a5b;
  background: #fff;
}
@media (max-width: 768px) {
  .p-product__note {
    padding: 3.84rem 2.4rem;
  }
}
.p-product__note-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-product__note-text {
  line-height: 1.8;
}
.p-product__hikaku {
  max-width: 70rem;
  width: 100%;
  margin: 9.6rem auto 0;
}

/* ------------------------------------------------------------------
p-guideline
------------------------------------------------------------------ */
.p-guideline {
  padding-top: 7rem;
}
.p-guideline__inner {
  padding: 10rem 0;
  color: #585a5b;
}
.p-guideline__info {
  max-width: 80rem;
  margin: 4.8rem auto 0;
  line-height: 1.8;
}
.p-guideline__info a {
  text-decoration: underline;
}
.p-guideline__info a:hover {
  text-decoration: none;
}
.p-guideline__text {
  font-size: 1.6rem;
  line-height: 2;
}
.p-guideline__index {
  margin-top: 6rem;
}
.p-guideline__title {
  width: 9rem;
  margin: 0 auto;
}
.p-guideline__index-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 4.8rem;
}
.p-guideline__index-link {
  width: 29rem;
}
.p-guideline__contents {
  margin: 6rem auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-guideline__contents-title {
  color: #e28b2c;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1rem;
  border: solid 2px #e28b2c;
  padding: 1rem;
  cursor: pointer;
}
.p-guideline__contents-title:hover {
  background: #000;
}
.p-guideline__contents-title-image {
  max-width: 28rem;
}
.p-guideline__contents-target {
  display: none;
}

/* ----------------------------------------------------------------
 * display none
------------------------------------------------------------------ */
.u-disp-none {
  display: none;
}
.u-disp-none--TLO {
  display: none;
}
@media (max-width: 1024px) {
  .u-disp-none--TLO {
    display: block;
  }
}
.u-disp-none--TLU {
  display: block;
}
@media (max-width: 1024px) {
  .u-disp-none--TLU {
    display: none;
  }
}
.u-disp-none--TSO {
  display: none;
}
@media (max-width: 768px) {
  .u-disp-none--TSO {
    display: block;
  }
}
.u-disp-none--TSU {
  display: block;
}
@media (max-width: 768px) {
  .u-disp-none--TSU {
    display: none;
  }
}

/* ----------------------------------------------------------------
Text
------------------------------------------------------------------ */
.u-text--center {
  text-align: center;
}
.u-text--bold {
  font-weight: bold;
}
.u-text--ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.u-text--link{
	text-decoration:underline;
}

.u-text--link:hover {
	text-decoration:none;
}

/* ----------------------------------------------------------------
 * margin
------------------------------------------------------------------ */
.u-margin-top--narrow {
  margin-top: 1rem;
}
.u-margin-top--small {
  margin-top: 1.6rem;
}
.u-margin-top--normal {
  margin-top: 2.4rem;
}
.u-margin-top--wide {
  margin-top: 4.8rem;
}
.u-margin-top--widest {
  margin-top: 6rem;
}/*# sourceMappingURL=style.css.map */