@charset "UTF-8";
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/CT出し分け
------------------------------ */
@media (min-width: 1024px) {
  .t-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .t-pc {
    display: none !important;
  }
}
/* PC/SP出し分け
------------------------------ */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
  background: url(/enmusu/images/com_bg01.png) repeat-y;
  background-position: center top;
  background-size: 100% auto;
}

main {
  margin-top: 178px;
}
@media (max-width: 1440px) {
  main {
    margin-top: 136px;
  }
}
@media (max-width: 1023px) {
  main {
    margin-top: 64px;
  }
}

section .contents {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 100%;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* タイトル
-----------------------------------*/
.heading01 {
  padding: 24px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .heading01 {
    font-size: 28px;
  }
}

.heading02 {
  text-align: center;
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid #CCC;
  background-color: #FFF;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt:hover {
  background-color: #EEE;
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    padding: 16px 32px;
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.com-bt.prev {
  position: relative;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.com-wrap .img {
  width: 48%;
}
.com-wrap .txt {
  width: 48%;
}
.com-wrap.txt-left {
  flex-direction: row-reverse;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 {
  gap: 24px 4%;
}
.list-col2 li {
  width: 48%;
}

.list-col3 {
  gap: 16px 2%;
}
.list-col3 li {
  width: 32%;
}

.list-col4 {
  gap: 16px 1%;
}
.list-col4 li {
  width: 24%;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/*========*/
/* ヘッダ */
/*========*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
  height: 178px;
  padding: 20px 40px 20px 48px;
  background-color: #F8F8F8;
  transition: 0.4s;
  z-index: 10;
}
@media (max-width: 1440px) {
  header {
    height: 136px;
  }
}
@media (max-width: 1023px) {
  header {
    width: 100%;
    height: 64px;
    padding: 8px 24px;
  }
}
@media (max-width: 1440px) {
  header .h-logo {
    max-width: 240px;
  }
}
@media (max-width: 1023px) {
  header .h-logo {
    max-width: 120px;
  }
}
header .h-logo img {
  display: block;
}

@media (max-width: 1023px) {
  header .menu {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 8px;
    right: 8px;
    padding: 0;
    background-color: #F8F8F8;
    cursor: pointer;
    z-index: 15;
    border: none;
  }
  header .menu .menu-inner {
    position: relative;
    display: block;
    width: 24px;
    height: 20px;
    margin: 0 auto;
  }
  header .menu .menu-inner span {
    position: absolute;
    right: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #222;
    transition: all 0.5s;
  }
  header .menu .menu-inner span:first-child {
    top: 0;
  }
  header .menu .menu-inner span:nth-child(2) {
    top: 9px;
  }
  header .menu .menu-inner span:last-child {
    top: 19px;
  }
  header .menu.open .menu-inner span:first-child {
    top: 9px;
    transform: rotate(45deg);
  }
  header .menu.open .menu-inner span:last-child {
    top: 9px;
    transform: rotate(-45deg);
  }
  header .menu.open .menu-inner span:nth-child(2) {
    opacity: 0;
  }
}
/* ナビゲーション
--------------------------------*/
nav.g-nv {
  position: absolute;
  top: 88px;
  right: 0;
  transition: 0.4s all;
  z-index: 11;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  nav.g-nv {
    top: 64px;
  }
}
@media (min-width: 1024px) {
  nav.g-nv {
    display: block !important;
  }
}
@media (max-width: 1023px) {
  nav.g-nv {
    position: fixed;
    width: 100%;
    height: calc(100vh - 50px);
    right: -100%;
    top: 64px;
    padding: 0 0 48px;
    background-color: rgba(204, 204, 204, 0.5);
    overflow-y: auto;
    opacity: 0;
    transition: 0.5s all;
    pointer-events: none;
    z-index: -1;
  }
  nav.g-nv.open {
    right: 0;
    pointer-events: all;
    z-index: 11;
    opacity: 1;
  }
}
nav.g-nv .menu-nav {
  display: flex;
  width: 100%;
  justify-content: right;
}
@media (max-width: 1023px) {
  nav.g-nv .menu-nav {
    display: block;
  }
}
nav.g-nv .menu-nav > li {
  position: relative;
}
@media (max-width: 1440px) {
  nav.g-nv .menu-nav > li {
    max-width: 144px;
  }
}
@media (max-width: 1023px) {
  nav.g-nv .menu-nav > li {
    max-width: initial;
    background-color: #222;
    text-align: center;
  }
}
nav.g-nv .menu-nav a, nav.g-nv .menu-nav span {
  display: block;
  padding: 8px;
}
/*========*/
/* フッタ */
/*========*/
/* ページトップへ戻る
-----------------------------------*/
.ptop {
  position: fixed;
  bottom: 80px;
  right: 64px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #333;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .ptop {
    width: 40px;
    height: 40px;
    right: 8px;
    bottom: 32px;
  }
}
.ptop:hover {
  opacity: 0.7;
}
.ptop a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.ptop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #FFF transparent;
  margin: -8px auto 0;
}

/* フッタ
-----------------------------------*/
footer .contents {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  footer .contents {
    width: 100%;
  }
}
footer .contents .company-logo {
  background-color: #F8F8F8;
  text-align: center;
  padding: 64px 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  footer .contents .company-logo {
    padding: 24px 16px;
  }
}
@media (max-width: 767px) {
  footer .contents .company-logo .logo {
    max-width: 280px;
    margin: 0 auto;
  }
}
footer .row {
  display: flex;
}
footer .row .col {
  width: 33.3333%;
}
footer .list-link {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}
footer .list-link li {
  margin: 0 16px;
}
footer .copyright {
  padding: 24px 24px 16px;
  background-color: #CCC;
  font-size: 14px;
  color: #FFF;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  footer .copyright {
    font-size: 12px;
    padding: 16px 24px;
  }
}

/*=======*/
/* index */
/*=======*/
.index {
  /* メイン
  -----------------------------------*/
  /* movie
  -----------------------------------*/
  /* topics
  -----------------------------------*/
  /* character
  -----------------------------------*/
  /* goods
  -----------------------------------*/
  /* line
  -----------------------------------*/
  /* sns
  -----------------------------------*/
  /* contact
  -----------------------------------*/
}
.index .main-sec {
  position: relative;
  overflow: hidden;
}
.index .main-sec .main-txt {
  position: absolute;
  top: 12.5%;
  left: 0;
  right: 0;
  width: 45.416%;
  max-width: 545px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1440px) {
  .index .main-sec .main-txt {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .index .main-sec .main-txt {
    width: 45.416%;
  }
}
.index .movie-sec {
  position: relative;
  text-align: center;
}
.index .movie-sec .bg-col {
  background-color: #FFD6E8;
  padding: 0 16px 40px;
}
.index .movie-sec .bg-col .bg-img {
  position: absolute;
  top: -2%;
  left: 0;
  right: 0;
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .index .movie-sec .bg-col .bg-img {
    top: -1.5%;
  }
}
@media (max-width: 767px) {
  .index .movie-sec .bg-col .bg-img {
    width: 100%;
  }
}
.index .movie-sec .bg-col .heading01 {
  padding: 80px 0 40px;
}
@media (max-width: 767px) {
  .index .movie-sec .bg-col .heading01 {
    padding: 40px 0 24px;
  }
}
.index .movie-sec .bg-col .heading02 {
  padding-bottom: 32px;
}
.index .movie-sec .bg-col .heading03 {
  padding: 32px 0 12px;
}
@media (max-width: 767px) {
  .index .movie-sec .bg-col .heading03 {
    max-width: 120px;
    margin: 0 auto;
  }
}
.index .movie-sec .bg-col .movie-wrap {
  max-width: 960px;
  border-radius: 40px;
  margin: 0 auto;
}
.index .movie-sec .bg-col .movie-wrap .iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 40px;
}
@media (max-width: 767px) {
  .index .movie-sec .bg-col .movie-wrap .iframe-wrap {
    border-radius: 16px;
  }
}
.index .movie-sec .bg-col .movie-wrap .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index .movie-sec .bg-col .btn {
  padding-top: 40px;
  margin-bottom: 0;
}
.index .topics-sec .bg-col {
  background-color: #698B4D;
  overflow: hidden;
  padding: 0 16px 32px;
}
.index .topics-sec .bg-col .heading02 {
  margin: 64px auto 80px;
}
@media (max-width: 767px) {
  .index .topics-sec .bg-col .heading02 {
    max-width: 240px;
    margin: 24px auto;
  }
}
.index .topics-sec .bg-col .img {
  position: relative;
  max-width: 520px;
  margin: 0 auto 24px;
}
@media (max-width: 1440px) {
  .index .topics-sec .bg-col .img {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .index .topics-sec .bg-col .img {
    max-width: 320px;
    padding: 0 32px;
  }
}
.index .topics-sec .bg-col .img img {
  border-radius: 24px;
}
@media (max-width: 767px) {
  .index .topics-sec .bg-col .img img {
    border-radius: 16px;
  }
}
.index .topics-sec .bg-col .img::before, .index .topics-sec .bg-col .img::after {
  position: absolute;
  content: "";
  bottom: 0;
  background: url(/enmusu/images/topics_img01.png) no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
  width: 118px;
  height: 147px;
}
@media (max-width: 767px) {
  .index .topics-sec .bg-col .img::before, .index .topics-sec .bg-col .img::after {
    width: 64px;
    bottom: -32px;
  }
}
.index .topics-sec .bg-col .img::before {
  left: -160px;
}
@media (max-width: 1023px) {
  .index .topics-sec .bg-col .img::before {
    left: -96px;
  }
}
@media (max-width: 767px) {
  .index .topics-sec .bg-col .img::before {
    left: -12px;
  }
}
.index .topics-sec .bg-col .img::after {
  right: -160px;
  background: url(/enmusu/images/topics_img02.png) no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
  width: 107px;
  height: 151px;
}
@media (max-width: 1023px) {
  .index .topics-sec .bg-col .img::after {
    right: -96px;
  }
}
@media (max-width: 767px) {
  .index .topics-sec .bg-col .img::after {
    width: 56px;
    right: -12px;
  }
}
.index .character-sec .bg-col {
  background-color: #EFE8D8;
  overflow: hidden;
  padding: 0 16px 32px;
}
.index .character-sec .com-wrap {
  max-width: 1080px;
  justify-content: space-around;
  gap: 16px 2%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .index .character-sec .com-wrap {
    flex-wrap: wrap;
  }
}
.index .character-sec .com-wrap p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .index .character-sec .com-wrap p {
    width: 100%;
    text-align: center;
  }
}
.index .goods-sec .bg-col {
  background-color: #E6196B;
  padding: 0 16px 40px;
}
.index .goods-sec .bg-col .box {
  max-width: 1080px;
  background: url(/enmusu/images/goods_bg01.png) no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding: 40px 24px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .index .goods-sec .bg-col .box .heading02 {
    max-width: 400px;
    margin: 0 auto;
  }
}
.index .goods-sec .bg-col .box .img {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.index .goods-sec .bg-col .box .img::before, .index .goods-sec .bg-col .box .img::after {
  position: absolute;
  content: "";
  top: 0;
  background: url(/enmusu/images/goods_img01.png) no-repeat;
  background-position: left top;
  background-size: 100% auto;
  width: 315px;
  height: 352px;
}
@media (max-width: 1440px) {
  .index .goods-sec .bg-col .box .img::before, .index .goods-sec .bg-col .box .img::after {
    width: 200px;
    height: 224px;
    top: 40px;
  }
}
@media (max-width: 1023px) {
  .index .goods-sec .bg-col .box .img::before, .index .goods-sec .bg-col .box .img::after {
    width: 160px;
    height: 179px;
    top: 104px;
  }
}
@media (max-width: 767px) {
  .index .goods-sec .bg-col .box .img::before, .index .goods-sec .bg-col .box .img::after {
    width: 96px;
    height: 108px;
    top: initial;
    bottom: 0;
  }
}
@media (max-width: 414px) {
  .index .goods-sec .bg-col .box .img::before, .index .goods-sec .bg-col .box .img::after {
    width: 72px;
    height: 81px;
    bottom: -12%;
  }
}
.index .goods-sec .bg-col .box .img::before {
  left: 12px;
}
@media (max-width: 1440px) {
  .index .goods-sec .bg-col .box .img::before {
    left: 0;
  }
}
.index .goods-sec .bg-col .box .img::after {
  right: 0;
  background: url(/enmusu/images/goods_img02.png) no-repeat;
  background-position: right top;
  background-size: 100% auto;
  width: 272px;
  height: 349px;
}
@media (max-width: 1440px) {
  .index .goods-sec .bg-col .box .img::after {
    width: 176px;
    height: 226px;
  }
}
@media (max-width: 1023px) {
  .index .goods-sec .bg-col .box .img::after {
    width: 136px;
    height: 175px;
  }
}
@media (max-width: 767px) {
  .index .goods-sec .bg-col .box .img::after {
    width: 88px;
    height: 113px;
  }
}
@media (max-width: 414px) {
  .index .goods-sec .bg-col .box .img::after {
    width: 64px;
    height: 83px;
  }
}
.index .goods-sec .bg-col .box .btn {
  position: relative;
  max-width: 424px;
  margin: 16px auto 0;
}
@media (max-width: 1440px) {
  .index .goods-sec .bg-col .box .btn {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .index .goods-sec .bg-col .box .btn {
    max-width: 280px;
  }
}
.index .goods-sec .bg-col .box .btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: -56%;
  background: url(/enmusu/images/goods_tx01.svg) no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  width: 230px;
  height: 38px;
}
@media (max-width: 1440px) {
  .index .goods-sec .bg-col .box .btn::before {
    top: -48px;
    left: -18%;
  }
}
@media (max-width: 414px) {
  .index .goods-sec .bg-col .box .btn::before {
    top: -32px;
    left: -8%;
    width: 160px;
    height: 24px;
  }
}
.index .line-sec .bg-col {
  background-color: #06C554;
  padding: 0 16px 48px;
}
.index .line-sec .bg-col .box {
  max-width: 1080px;
  background: url(/enmusu/images/line_bg01.png) no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding: 40px 24px;
  margin: 0 auto;
}
.index .line-sec .bg-col .box .com-wrap {
  gap: 16px 2%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .index .line-sec .bg-col .box .com-wrap {
    flex-wrap: wrap;
  }
}
.index .line-sec .bg-col .box .com-wrap .img {
  width: 56%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .index .line-sec .bg-col .box .com-wrap .img {
    width: 100%;
    text-align: center;
  }
}
.index .line-sec .bg-col .box .com-wrap .txt {
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .index .line-sec .bg-col .box .com-wrap .txt {
    width: 100%;
  }
}
.index .line-sec .bg-col .box .btn {
  text-align: center;
  margin: 32px auto 0;
}
@media (max-width: 767px) {
  .index .line-sec .bg-col .box .btn {
    max-width: 280px;
  }
}
.index .sns-sec .bg-col {
  position: relative;
  background: url(/enmusu/images/sns_bg01.png) no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding: 20px 16px 152px;
}
@media (max-width: 767px) {
  .index .sns-sec .bg-col {
    padding: 16px 16px 80px;
  }
}
.index .sns-sec .bg-col .heading02 {
  margin: 64px auto 80px;
}
@media (max-width: 767px) {
  .index .sns-sec .bg-col .heading02 {
    max-width: 240px;
    margin: 24px auto;
  }
}
.index .sns-sec .bg-col .list-col3 {
  max-width: 1080px;
  justify-content: center;
  gap: 0 8%;
  margin: 0 auto;
}
.index .sns-sec .bg-col .list-col3 li {
  max-width: 88px;
}
@media (max-width: 767px) {
  .index .sns-sec .bg-col .list-col3 li {
    max-width: 40px;
  }
}
.index .sns-sec .bg-col::before, .index .sns-sec .bg-col::after {
  position: absolute;
  content: "";
  bottom: -1px;
  background: url(/enmusu/images/sns_img01.png) no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
  width: 230px;
  height: 250px;
}
@media (max-width: 1023px) {
  .index .sns-sec .bg-col::before, .index .sns-sec .bg-col::after {
    width: 120px;
  }
}
@media (max-width: 414px) {
  .index .sns-sec .bg-col::before, .index .sns-sec .bg-col::after {
    width: 80px;
  }
}
.index .sns-sec .bg-col::before {
  left: 0;
}
.index .sns-sec .bg-col::after {
  right: 0;
  background: url(/enmusu/images/sns_img02.png) no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
}
.index .contact-sec .bg-col {
  background-color: #6694CC;
  padding: 48px 16px 40px;
}
.index .contact-sec .bg-col .box {
  max-width: 1080px;
  background: url(/enmusu/images/contact_bg01.png) no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  text-align: center;
  padding: 40px 24px;
  margin: 0 auto;
}
.index .contact-sec .bg-col .box .btn {
  text-align: center;
  margin: 20px auto 0;
}
@media (max-width: 767px) {
  .index .contact-sec .bg-col .box .btn {
    max-width: 280px;
  }
}
/*# sourceMappingURL=style.css.map */