@charset "utf-8";

/* フェード遷移
======================== */
body {
    animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
body::after {
  content:"";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}
body.fadeout::after {
  opacity: 1;
}
/*
body.fadeout #wrapper{
  transition: transform .6s ease-out;
  transform:scale(1.1);
}
*/
/* 全体
======================== */

.socialArea.top-only{
  display:none;
}

#layout1 .socialArea.top-only{
  display:block;
}

#layout1 .socialArea.cont-only{
  display:none;
}

@media screen and (max-width:767px) {
  .socialArea.top-only{
    display:none;
  }

#layout1 .socialArea.top-only{
  display:none;
}

#layout1 .socialArea.cont-only{
  display:block;
  }
}

.backToList{
  text-align:center;
  font-family: 'Noto Sans JP', sans-serif;
  line-height:1;
  font-weight:bold;
  font-size:1.6rem;
  margin: 5em 0 0 0;
}
.backToList a{
  background:#9277a2;
  color:#fff;
  display:inline-block;
  margin:0 auto;
  text-decoration:none;
  padding:0.6em 2em 0.7em;
  border-radius:2em;
}
.backToList a:hover{
  opacity:1;
  filter:drop-shadow(5px 5px 0px rgba(0,0,0,0.2));
}
.backToList a::before{
  content:"< ";  
}

.mainSection{
  transform: rotate(0.01deg);
}

#footer{
  background:#fff;
  margin: 5em 0 0 0;
}

/* NEWマーク
======================== */
.new_ic {
  display: inline-block;
}

#list_01 .new_ic>a{
  display: inline;
}

.new_ic::before {
  content:"NEW";
  display: inline-block;
  background: #da3e8c;
  color: #fafafa;
  font-weight: 400;
  font-size: 0.8em;
  padding: .1em .4em .1em;
  margin: -0.3em .2em 0em 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1em;
  vertical-align: middle;
  border-radius: 1em;
}


/* Youtube
======================== */
/*
  width = ウィンドウ幅 - 左右マージンの合計
  height = width * 9/16
  ※単位vwはスクロールバーを含めた値になるため、PCの場合は少しずれる。
  　スマホは問題ない。
*/
/*
.read iframe {
  margin: 1em 0;
  max-width: 1280px;
  max-height: calc( 1280px * 9 / 16 );
  width: calc( 100vw - 40px );
  height: calc( ( 100vw - 40px ) * 9 / 16 );
}
*/
.read.youtubeWrap{
  padding-top: 55.9%;
  position:relative;
  z-index:0;
  margin: 0 0 0 0;
}

.read iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}


/* バナーユニット
======================== */

[id^="bnu_001_"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 0;
}

[id^="bnu_001_"]>p {
  width: 100%;
  max-width: 350px;
  margin: 0 10px 10px;
}