@import url("./reset.css");
html{
  scroll-behavior: smooth;
}
body{
  font-size:16px;
  line-height:1.4;
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap : break-word;
  width:100%;
  margin:0;
  padding:0;
  position:relative;

  text-align: left; /* override */
  background: none; /* override */
}

#wrapper{
  margin:0;
  padding:0;
  overflow-x: hidden;
}

/* GENERAL USE ------------------------------------------------*/

pre{
  font-feature-settings: initial; /* 等幅で表示　*/
}

.narrow{
  margin:0 auto;
  width:92%;
  max-width:1150px;
  position:relative;
}

.narrower{
    margin:0 auto;
    width:92%;
    max-width:730px;
    position:relative;
}

a{
  color:#222;
  text-decoration:none;
  transition:all 0.2s ease 0s;
}
a:visited {
  color:#222; /* override */
}

a:hover{
  color:#f0037f;
}

/* BUTTON */

.button{
    margin:0 auto;
    display: block;
    padding:18px 28px;
    font-size:16px;
    line-height:1;
    border-radius:28px;
    text-align:center;
    position:relative;
    box-sizing: border-box;
    width:240px;
    text-indent: -0.5em;
}

.button:after{ /* 矢印の設定 */
  position: absolute;
  content:"";
  width:11px;
  height:19px;
  overflow:hidden;
  background-size: contain;
  background-repeat: no-repeat;
  top:calc(50% - 5px);
  right:8%;
  transition:all 0.2s ease 0s;
}


.button.x-large{ /* for large login button */
  width:300px;
  height:70px!important;
  line-height:70px!important;
  border-radius: 36px;
  padding:0;
  font-size:20px;
}

.button.x-large:after{
  width:14px;
  height:22px;
  top:calc(50% - 7px);
  right:10%;
}

/* ベタがピンク色のボタン */
.button.pink{
  color:#fff;
  background-color:#f0037f;
  border:2px solid #f0037f;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  font-weight:700;
}
.button.pink:after{
  background-image:url("/images/button_arrow_white.svg");
}

a:hover.button.pink{
  background-color:#fee0ef;
  color:#f0037f;
}

a:hover.button.pink:after{
  background-image:url("/images/button_arrow_hover.svg");
}

/* 白ベタにピンクのラインのボタン */
.button.pinkline{
  border:2px solid #f0037f;
  background-color: transparent;
  color:#f0037f;
  font-weight:700;
}

a:hover.button.pinkline{
  border:2px solid #f0037f;
  color:#fff;
  background-color:#f0037f;
}

a:hover.button.pinkline:after{
  background-image:url("/images/button_arrow_white.svg");
}

.button.pinkline:after{
  background-image:url("/images/button_arrow_hover.svg");
}

/* 白い枠、白文字のボタン　（主にグラデーション背景などに使用) */

.button.white{
    background-color:transparent;
    color:#fff;
    border:2px solid #fff;
}

a:hover.button.white{
    background-color:rgba(255,255,255,0.3);
}
.button.white:after{
  background-image:url("/images/button_arrow_white.svg");
}

/* 薄いグレーの枠、グレー文字のボタン (主張の薄いボタン)*/

.button.gray{
  background-color:transparent;
  color:#aaa;
  border:2px solid #ccc;
}
.button.gray:after{
  background-image:url("/images/button_arrow_gray.svg");
}

/* 黒(#222)の枠、黒文字のボタン　*/

.button.black{
  background-color:transparent;
  color:#222;
  border:2px solid #222;
  font-weight:700;
}

.button.black:after{
  background-image:url("/images/button_arrow_black.svg");
}

/* 黒枠ボタン、グレー枠ボタンのホバー設定(共通)　*/
a:hover.button.black,
a:hover.button.gray{
  color:#f0037f;
  border:2px solid #f0037f;
}

a:hover.button.gray:after,
a:hover.button.black:after{
  background-image:url("/images/button_arrow_hover.svg");
}


/* BANNER */
ul#banners{
  padding:0;
  margin:0 auto 25px;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -js-display: flex;
  display: -ms-flexbox;
  -ms-flex-pack:justify;
  -ms-flex-wrap: wrap;
}

#banners li{
  margin-top:25px;
  width:240px;
}

#banners a{
  margin:0 auto;
  display:block;
  width:240px;
  box-sizing:border-box;
  border:2px solid #eee;
  border-radius: 2px;
  text-align:center;
  padding-top:15%;
  padding-left:5px;
  padding-right:5px;
  height:135px;
  font-size:20px;
  font-weight:700;
}

#banners a span{
  display: block;
  font-size:14px;
  font-weight:400;
}

#banners a:hover{
    color:#222;
    border:2px solid #222;
}

#banners a.followme{
  padding-top:0;
  border:2px solid #f4f4f4;
  font-weight: 700;
  color:#55acee;
  font-size:16px;
}

#banners a.followme img{
  display: block;
  width:80px;
  margin:20px auto 0;
}

#banners a:hover.followme{
    border:2px solid #55acee;
}

#banners a.help{
  padding-top:0;
  border:2px solid #fee0ef;
  background-color: #fee0ef;
  font-size:20px;
  font-weight: 700;
  color:#f0037f;
  line-height: 1.2;
}

#banners a:hover.help{
    border:2px solid #f0037f;
}

#banners a.help img{
  display: block;
  width:46px;
  margin:20px auto 12px;
}

#banners a.help span{
  display: block;
  font-size:14px;
}

#banners a.as{
  padding-top:0;
  border:2px solid #f4f4f4;
  font-size:18px;
  font-weight: 700;
  color:#222222;
  line-height: 1.1;
}

#banners a:hover.as{
    border:2px solid #222;
}

#banners a.as img{
  display: block;
  width:44px;
  margin:6px auto 3px;
}

#banners a.as span{
  margin-top:4px;
  display: block;
  font-size:14px;
  font-weight: 400;
}

a.nobutton{
  position:relative;
}

a.nobutton:before{
  position: absolute;
  content:"";
  background-image:url("/images/nobutton_arrow.svg");
  width:9px;
  height:16px;
  overflow:hidden;
  background-size: contain;
  background-repeat: no-repeat;
  top:calc(50% - 4px);
  left:-12px;
}

a:hover.nobutton{
  text-decoration: underline;
}
a:hover.nobutton:before{
  background-image:url("/images/nobutton_arrow_hover.svg");
}

/* SNS buttons */

ul.sns{
  display:flex;
  justify-content: center;
  -js-display: flex;
  display: -ms-flexbox;
  -ms-flex-pack:center;
}

ul.sns img{
  width:40px;
  height:40px;
}
ul.sns img.circle{
  border-radius:50%;
}

ul.sns li + li{
  margin-left:15px;
}

ul.sns a:hover img{
  opacity:0.7;
}

/* message */
.message_block {
  margin: 20px auto;
}

/* module */
#authors{
    padding-top:40px;
    padding-bottom:40px;
}

#authors ul{
  margin:0 auto;
}

#authors ul li a{
    display: block;
    padding:25px 0 25px 90px;
    border-bottom:1px solid #ddd;
    position:relative;
}

#authors ul h2{
  font-size:18px;
  font-weight:700;
}

#authors ul a > p{
  font-size:14px;
  margin-top:4px;
}
#authors ul p.free{
  display: inline-block;
  font-size:14px;
  line-height:1;
  background-color: #f0037f;
  color:#fff;
  padding:4px 0.75em;
}

#authors ul .description p{
  font-size:16px;
}

#authors ul .description{
  margin-top:1.5em;
  margin-bottom:1.5em;
}

#authors ul img{
  position:absolute;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  top:20px;
  left:0;
  overflow: hidden;
  background-color: #f4f4f4;
}

/* HEADER ------------------------------------------------*/
header#top{
  height:95px;
  padding-top:25px;
  box-sizing: border-box;
}

header#top h1{
  display:block;
  float:left;
}

#top h1 img{
  width:148px;
}

h1 a:hover img{
  opacity:0.7;
}

#top nav ul{
  display: flex;
  justify-content: flex-start;
  flex-direction :row-reverse;
  -js-display: flex;
  display: -ms-flexbox;
  -ms-flex-pack:start;
  -ms-flex-direction : row-reverse;
}

#top nav li {
  margin-left:25px;
}

#top nav ul a{
  font-weight:700;
  display:block;
  padding-top:15px;
}

#top nav a.emphasize{
  padding:15px 20px;
  border-radius:24px;
  margin:0 auto;
  display: block;
  line-height:1;
  text-align:center;
  box-sizing: border-box;
  color:#fff;
  background-color:#f0037f;
  border:2px solid #f0037f;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  font-weight:700;
}

#top nav a:hover.emphasize{
  border:2px solid #f0037f;
  background-color:#fee0ef;
  color:#f0037f;
}


.slicknav_menu { /* for MOBILE MENU */
  display: none;
}

/* GENRE LIST ------------------------------------------------*/

div.genre{
  clear:both;
  width:100%;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.genre a:hover{
  color:#f0037f;
}

.genre ul{
  display:flex;
  justify-content: space-between;
  -js-display: flex;
  display: -ms-flexbox;
  -ms-flex-pack:justify;
  font-weight:700;
}

.genre ul li a{
  display:block;
  line-height:1;
  padding-top:20px;
  padding-bottom:20px;
  text-align:center;
}

.genre a.list{
  padding-left:21px;
  position:relative;
}

.genre a.list:before{
  position:absolute;
  top:8px;
  left:0;
  content:"";
  background-image:url("/images/ink.svg");
  width:30px;
  height:32px;
  overflow:hidden;
  background-size: contain;
  background-repeat: no-repeat;
}

.genre a:hover.list:before{
  background-image:url("/images/ink_hover.svg");
}


@media screen and (min-width:768px) and (max-width:959px){
  .genre ul li a{
    font-size:14px;
  }
}

.free_label_a {
  display: inline-block;
  color: #FFFFFF;
  background: #87CEFA;
  padding: 0px 12px;
  margin-left: 5px;
  line-height: 18px;
  font-size: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  vertical-align: 2px;
}



/* FOOTER ------------------------------------------------*/
body > footer{
  padding-top:30px;
  padding-bottom:40px;
  position:relative;
}

a.go_top{
  position:absolute;
  top:-100px;
  right:0;
}

a:hover.go_top img{
  opacity: 0.7;
}

body > footer ul.sns{
  float:right;
}

body > footer ul#documents{
  display:flex;
  -js-display: flex;
  display: -ms-flexbox;
  margin-top:8px;
  font-size:14px;
  font-weight:700;
}

body > footer ul#documents li + li{
  margin-left:2em;
}

#documents a:hover{
  color:#f0037f;
}

section h1{
  font-size:26px;
  font-weight:700;
  text-align:center;
}

section h1 div.mobile-only-break{
  display:inline;
}

.mobile-only{
  display:none;
}

/* for mobile devices -767px ----------------------------------------*/

@media screen and (max-width:767px){

  .pc-only{
    display:none!important;
  }
  .moble-only{
    display:block;
  }

  /* GENERAL USE */
  section h1{
    font-size:20px;
  }

  section h1 div.mobile-only-break{
    display:block;
  }

  .narrow,
  .narrower{
    width:92%;
    margin-left:auto;
    margin-right:auto;
  }

  a{
    color:#222;
    text-decoration:none;
    transition:all 0.2s ease 0s;
  }

  a:hover{
    color:#f0037f;
  }

  /* BUTTON */

  a.button{
        margin-left:auto;
        margin-right:auto;
        width:94%;
        min-width:290px;
        max-width:400px;
        min-height:60px;
        font-size:18px;
  }

  a.button.gray,
  a.button.black{
    font-size:16px;
  }

  /* BANNER */
  ul#banners {
    display:block;
    width:100%!important;
    border-bottom:1px solid #eee;
    margin-bottom:0;
  }

  #banners li{
    margin:0;
    width:100%;
  }

  ul#banners li + li{
    border-top:1px solid #eee;
  }

  #banners a{
    width:100%;
    border:none!important;
    border-radius: 0px;
    text-align:left;
    padding:20px 4% 20px calc(7% + 40px);
    height:auto;
    position:relative;
    min-height:60px;
  }

  #banners a:before{
    position: absolute;
    content:"";
    width:11px;
    height:19px;
    overflow:hidden;
    background-image:url("/images/button_arrow_black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    top:calc(50% - 5px);
    left:calc(4% + 14px);
  }

  #banners a.followme:before,
  #banners a.help:before,
  #banners a.as:before{
    display:none;
  }



  #banners a img{
    width:40px!important;
    position:absolute;
    left:4%;
  }


  #banners a span{
    font-weight:700;
  }

  #banners a:hover{
      background-color:#f4f4f4;
  }

  #banners a.followme{
    padding:20px 4% 20px calc(7% + 40px);
    font-size:18px;
    background-color: #e5f7fd;
  }

  #banners a.followme img{
    margin:-5px 0;
    padding:0;
  }

  #banners a:hover.followme{
    background-color: #e5f7fd;
  }

  #banners a.help{
    padding:20px 4% 20px calc(7% + 40px);
  }

  #banners a:hover.help{
    background-color: #ffcde8;
  }

  #banners a.help img{
    margin:0;
  }

  #banners a.as{
    padding:20px 4% 20px calc(7% + 40px);
    line-height: 1.2;
  }

  #banners a.as img{
    top:calc(50% - 25px);
  }

  #banners a.as span{
    margin-top:0;
  }

  a.nobutton{
    position:relative;
  }

  a.nobutton:before{
    position: absolute;
    content:"";
    background-image:url("/images/nobutton_arrow.svg");
    width:9px;
    height:16px;
    overflow:hidden;
    background-size: contain;
    background-repeat: no-repeat;
    top:calc(50% - 4px);
    left:-12px;
  }

  a:hover.nobutton{
    text-decoration: underline;
  }
  a:hover.nobutton:before{
    background-image:url("/images/nobutton_arrow_hover.svg");
  }

  /*SNS BUTTONS */
  ul.sns{
    margin-top:40px;
    float:none;
  }

  ul.sns img{
    width:50px;
    height:50px;
  }

  ul.sns li + li{
    margin-left:20px;
  }

  /* NEWS HEADLINES */
  #authors{
    padding-top:20px;
    padding-bottom:20px;
  }

  #authors h1{
    margin:0 auto 15px;
  }

  #authors ul{
    line-height: 1.5;
  }
/*
  #authors ul h2,
  #authors ul p{
      padding-left: calc(3vw + 70px);
  }
*/

  #authors ul h2{
    font-size:16px;
  }

  #authors ul .description p{
    font-size:14px;
  }
    #authors ul a > p{
      margin-top:6px;
    }

  #authors ul li a{
    padding:20px 0 20px calc(3vw+70px);
  }









  /* HEADER */
  header#top{
    height:65px;
    padding-top:16px;
  }

  #top h1 img{
    width:125px;
  }

  #top nav ul {
    display: none;
    }

  .slicknav_menu {
      display: block;
  }

  /* GENRE LIST */
  div.genre{
    clear:both;
    width:100%;
    border-top:none;
    border-bottom:none;
  }

  .genre ul{
    width:100%;
    flex-wrap: wrap;
    -ms-flex-wrap:wrap;
    font-weight: 400;
  }

  .genre ul li {
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    width:50%;
    margin:0 0 -1px;
    box-sizing: border-box;
  }
  .genre ul li:nth-child(2n+1){
    border-right:1px solid #eee;
  }

  .genre ul li a{
    display:block;
    line-height:1;
    padding-top:20px;
    padding-bottom:20px;
    padding-left:25px;
    text-align: left;
    position:relative;
  }

  .genre ul li a:before{
    position: absolute;
    content:"";
    width:6px;
    height:9px;
    overflow:hidden;
    background-image:url("/images/button_arrow_black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    top:calc(50% - 2px);
    left:10px;
    transition:all 0.2s ease 0s;
  }

  .genre ul li a:hover:before{
    background-image:url("/images/button_arrow_hover.svg");
  }




  /* FOOTER */
  body > footer{
    padding-top:0;
    padding-bottom:30px!important;
  }

  body > footer h1{
    display:block!important;
  }

  a.go_top{
    display: block;
    position: relative;
    margin-top:0;
    top:0;
    width:100vw;
    height:60px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom:1px solid #eee;
  }

  a.go_top:hover{
    background-color: #f4f4f4;
  }

  a.go_top:after{
    position: absolute;
    display:block;
    top:10px;
    left:calc(50% - 36px);
    content:"";
    background-repeat: no-repeat;
    background-image: url("/images/up-arrow.svg");
    background-position: center;
    background-size: contain;
    width:72px;
    height:39px;
    opacity:0.7;
  }

  body > footer a.go_top img{
    display:none;
  }

  body > footer h1{
      margin-top:40px;
  }

  body > footer h1 img{
    margin-top:40px;
    display:block;
    margin:0 auto;
    width:30%;
    max-width:120px;
  }

  body > footer ul.sns{
    float:none;
  }

  body > footer ul#documents{
    margin-top:20px;
    text-align: center;
    display:block;
  }

  body > footer ul#documents li{
    margin-left:0!important;
    width:100%;
  }

  body > footer ul#documents li a{
    display: block;
    padding:5px 0;
  }

}

@media screen and (max-width:500px){
  .narrow,
  .narrower,
  a.button{
    width:94%;
  }
}
