@charset "UTF-8";

/* -------------------------------------
Header
------------------------------------- */
.i-icon{
  width: 26px;
  margin: 0 auto;
  padding: 18px;
}
@media screen and (min-width:768px) {
  .i-icon{
    width: 20px;
    margin: 0 auto;
    padding: 0px;
  }
  .i-icon:hover {
    fill: #008EC7;
  }
}

/* ---nav--- */
.nav-wrap {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 9;
  opacity: 0;
}
.open .nav-wrap {
  left: 0;
  opacity: 999;
  height: 100%;

}
.nav-inner {
  padding: 70px 20px 20px;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.nav-link{
  position: relative;
  overflow: hidden;
}
.nav-link a {
  display: block;
  color: #008EC7;
  font-size: 2.0rem;
  line-height: 1;
  padding: 25px 0;
  text-decoration: none;
  transition-duration: 0.2s;
}
.hitotokinote-icon{
  display: none;
}

@media screen and (min-width:768px) {
  .hitotokinote-icon{
    display: block;
    width: 280px;
    margin-right: 13%;
  }
  .nav-wrap {
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: auto;
    background: #fff;
    overflow :visible;
    transition: all .5s;
    opacity: 1;
  }
  .nav-inner {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 40px;
  }
  .nav-list {
    margin: 0;
    text-align: center;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 62%;
  }
  .nav-link{
    position: relative;
    overflow: visible;
  }
  .nav-list .nav-link:last-child::before {
    display: none;
  }
  .nav-link a {
    display: block;
    color: #008EC7;
    font-size: 1.6rem;
    line-height: 1;
    padding: 0;
    text-decoration: none;
    transition-duration: 0.2s;
    white-space: nowrap;
  }
  .nav-link a:hover {
    color: #505050;
    transition: all .3s ease;
  }
  .nav-link .i-icon:hover {
    opacity: 0.5;
    transition: all .3s ease;
  }
}

/* ---btn--- */
.link-btn{
  width: 100%;
  border: 1px solid #008EC7;
  background: #fff;
  border-radius: 25px;
  margin: 0 auto;
  position: relative;
}
.link-btn.-gray{
  border: 1px solid #707070;
}
.link-btn::after{
  content: "";
  display: block;
  border: 1px solid;
  border-color: #008EC7 #008EC7 transparent transparent;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
}
.more-btn.link-btn::after{
  transform: translateY(-80%) rotate(135deg);
  -webkit-transform: translateY(-80%) rotate(135deg);
  -ms-transform: translateY(-80%) rotate(135deg);
}
.link-btn.-gray::after{
  border-color: #707070 #707070 transparent transparent;
}
.link-txt.f-roboto{
  padding: 13.5px 0 11.5px;
}
.link-txt{
  text-align: center;
  padding: 12.5px 0;
  display: block;
  line-height: 1;
  color: #008EC7;
}
.link-txt.f-roboto{
  font-weight: 500;
}
.-gray .link-txt{
  color: #707070;
}
.link-btn__area{
  cursor: pointer;
  transition : 1s;
}
@media screen and (min-width:768px) {
  .link-btn{
    width: 25%;
    min-width: 300px;
    border-radius: 25px;
    transition : .5s;
  }
  .link-btn::after{
    content: "";
    display: block;
    border: 1px solid;
    border-color: #008EC7 #008EC7 transparent transparent;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
  }
  .link-btn.-gray::after{
    border-color: #707070 #707070 transparent transparent;
  }
  .link-txt{
    text-align: center;
    padding: 12.5px 0;
    display: block;
    line-height: 1;
    color: #008EC7;
  }
  .-gray .link-txt{
    color: #707070;
  }
  .link-txt:hover{
    color: #fff;
  }
  .link-btn:hover {
    background:#008EC7;
    transition : 1s;
  }
  .-gray.link-btn:hover {
    background:#707070;
  }
  .link-btn:hover::after{
    border-color: #fff #fff transparent transparent;
  }
  .link-btn__area:hover .link-txt{
    color: #fff;
  }
  .link-btn__area:hover .link-btn{
    background:#008EC7;
    color:#fff;
    transition : 1s;
  }
  .link-btn__area:hover .link-btn::after{
    border-color: #fff #fff transparent transparent;
  }
}

/* --modal--*/
.iziModal-navigate {
  z-index: 10000 !important;
}
.iziModal-navigate > button {
  opacity: 1 !important;
}
.iziModal-navigate-prev {
  background: url(../img/arrow_modal.png) no-repeat 50% 50% !important;
  transform: scale(-1,1);
  left: calc(50% + 84px) !important;
}
.iziModal-navigate-next {
  background: url(../img/arrow_modal.png) no-repeat 50% 50% !important;
  right: calc(50% + 84px) !important;

}
@media screen and (max-width:767px) {
  .iziModal-navigate > button {
    width: 40px !important;
    height: 40px !important;
    top: auto !important;
    bottom: 20px !important;
  }
}
@media screen and (min-width:768px) {
  .iziModal-navigate-prev {
    left: 50% !important;
  }
  .iziModal-navigate-next {
    right: 50% !important;
  }
}



/* -------------------------------------
mv
------------------------------------- */
#mv {
  position: relative;
  z-index: 1;
}
.mv-img {
  display: block;
  padding-top: 92px;
}
@media screen and (min-width:1000px) {
  .mv-img {
    padding-top: 0;
  }
}

/* -------------------------------------
Main
------------------------------------- */
.lineup{
  position: relative;
  padding-top: 40px;
}

/* --anchor--*/
.anchor {
  padding-bottom: 50px;
}
.anchor-list {
  display: block;
  width: 250px;
  margin: 0 auto;
}
.anchor-list__item {
  display: flex;
}
.anchor-list__item + .anchor-list__item {
  margin-top: 16px;
}
.anchor-list__ttl {
  background-color: #008BD1;
  width: 70px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.anchor-list__box {
  width: calc(100% - 85px);
}
.anchor-list__link {
  display: block;
  font-size: 1.2rem;
  padding: 5px 20px 5px 30px;
  position: relative;
}
.anchor-list__link:before,
.anchor-list__link:after {
  display: inline-block;
  position: absolute;
  top: 50%;
}
.anchor-list__link.-new:before {
  content: "NEW";
  left: 0;
  font-size: 1.0rem;
  color: #008BD1;
  transform: translateY(-50%);
}
.anchor-list__link:after {
  content: "";
  width: 8px;
  height: 8px;
  right: 4px;
  border-bottom: 1px solid #212529;
  border-right: 1px solid #212529;
  transform: translateY(-75%) rotate(45deg);
}
@media screen and (min-width:768px) {
  .anchor-list {
    width: 780px;
  }
  .anchor-list__ttl {
    font-size: 1.6rem;
    width: 180px;
    padding: 5px 0;
  }
  .item--soft .anchor-list__ttl {
    padding-top: 5px;
  }
  .anchor-list__item {
    padding: 5px 0;
    align-items: center;
  }
  .anchor-list__item + .anchor-list__item {
    margin-top: 0;
    border-top: 1px solid #008BD1;
  }
  .anchor-list__box {
    width: calc(100% - 180px);
    display: flex;
    justify-content: space-between;
  }
  .anchor-list__link {
    width: 7em;
    font-size: 1.6rem;
    padding: 5px 20px 5px 50px;
    transition: all .3s ease;
  }
  .anchor-list__link.-passport {
    width: 8em;
  }
  .anchor-list__link.-new:before {
    font-size: 1.4rem;
    left: 12px;
  }
  .anchor-list__link:after {
    width:12px;
    height:12px;
  }
  .anchor-list__link.-nolink {
    text-align: center;
  }
  .anchor-list__link.-nolink:after {
    display: none;
  }
  .anchor-list__link:hover {
    color: #008BD1;
  }
  .anchor-list__link:hover:after {
    border-color: #008BD1;
  }
}

/* --product--*/
.product-inner {
  padding: 0 40px;
}
.product-sttl {
  text-align: center;
}
.product-new {
  margin: 0 auto 5px;
  text-align: center;
}
.product-new img {
  display: inline;
  width: 68px;
  vertical-align: middle;
}
.product-new__date {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width:374px) {
  .product-inner {
    padding: 0 20px;
  }
}
@media screen and (min-width:768px) {
  .product-inner {
    max-width:1200px;
    margin: 0 auto;
    padding: 0 80px;
  }
  .product-sttl {
    font-size: 1.6rem;
  }
}

.product-type {
  padding: 80px 0 20px;
}
.product-ttl {
  color: #212529;
  padding-bottom: 25px;
}
.product-type.-ring,
.product-type.-zip {
  background-color: #F5FAFD;
}
@media screen and (min-width:768px) {
  .product-txt {
    text-align: center;
  }
  .product-type {
    padding: 110px 0 40px;
  }
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 0;
}
.-passport .product-list,
.-comic .product-list {
  width: 82.7%;
}
.product-list__item {
  display: block;
  width: calc((100% - 30px) / 2);
  margin-bottom: 26px;
}
.product-list__button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
}
.product-list__item-img {
  width: 100%;
  margin: 0 auto 12px;
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
}
#ring-passport .product-list__item-img {
  width: 75%;
}
#ring-comic .product-list__item-img {
  width: 93.5%;
}
#soft-passport .product-list__item-img {
  width: 63.5%;
}
#soft-comic .product-list__item-img {
  width: 79.5%;
}
#zip-passport .product-list__item-img {
  width: 89%;
}
.product-list__item:nth-of-type(2n) {
  margin-left: 30px;
}
.product-list__item-model,
.product-list__item-name {
  color: #505050;
  text-align: center;
  line-height: 1.5;
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'Hiragino Kaku Gothic Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', HelveticaNeue, Roboto, Verdana, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.little-stock.product-list__item-model:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 48%;
  left: calc(50% - 3em);
  background-color: #F79581;
  border-radius:50%;
  transform: translate(-50%, -50%);
}
.product-list__item-name:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: -5px;
  left: calc(50% + 3.25em);
  border-right: 1px solid #505050;
  border-bottom: 1px solid #505050;
  transform: translateX(-50%) rotate(-45deg);
}
.product-list__item-name.-chr6:after {
  left: calc(50% + 3.5em);
}
.product-list__item-name.-chr7:after {
  left: calc(50% + 4em);
}
@media screen and (min-width:768px) {
  .product-list {
    margin-top: 30px;
  }
  .-passport .product-list {
    width: 72%;
  }
  .-comic .product-list {
    width: 80%;
  }
  .product-list__item {
    width: calc((100% - 12%) / 4);
    margin-left: 4%;
  }
  #zip-passport .product-list__item-img {
    width: 100%;
  }
  #soft-passport .product-list__item-img {
    width: 73%;
  }
  #soft-comic .product-list__item-img {
    width: 81.5%;
  }
  .product-list__item:nth-of-type(2n) {
    margin-left: 4%;
  }
  .product-list__item:nth-of-type(1),
  .product-list__item:nth-of-type(4n+1) {
    margin-left: 0;
  }
  .product-list__item-name {
    font-size: 1.6rem;
  }
}

.product-size {
  padding-top: 15px;
}
.product-size + .product-size {
  margin-top: 35px;
}
.product-size:last-of-type {
  margin-bottom: 60px;
}
@media screen and (min-width:768px) {
  .product-size:last-of-type {
    margin-bottom: 80px;
  }
}

.product-note {
  font-size: 1.2rem;
  padding-left: 25px;
  position: relative;
}
.product-note:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  background-color: #F79581;
  border-radius:50%;
  transform: translateY(-50%);
}

/* info */
.product-window {
  box-shadow: none;
}
.product-window__inner {
  padding: 70px 40px;
  position: relative;
}
.product-window__size {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #008BD1;
}
.product-window__type {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.product-window__img {
  display: block;
  margin: 0 auto;
}
.product-window__img.img--margin {
  margin-bottom: 30px;
}
.product-window_pager {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
}
.product-window--close {
  top: 15px;
}
@media screen and (min-width:768px) {
  .product-window__inner {
    max-width: 710px;
    padding: 31px 40px;
  }
  .product-window__type {
    margin-bottom: 10px;
  }
  .product-window__img {
    max-width: 520px;
    display: block;
  }
}

.product-info {
  position: relative;
}
.product-info__ttl {
  font-weight: 700;
}
.product-info__ttl.-new {
  display: inline;
  position: relative;
}
.product-info__ttl.-new::after {
  content: "";
  display: block;
  width: 45px;
  height: 15px;
  position: absolute;
  top: 48%;
  right: -53px;
  transform: translateY(-50%);
  background-image: url(../img/product_new_icon2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.product-info__note {
  font-size: 1.2rem;
}
.product-info__ec {
  display: flex;
  align-items: center;
}
.product-info__ec .ec-body {
  padding: 25px 0;
}
.product-info__ec .ec-head + .ec-body {
  margin-left: 20px;
}
.ec-head {
  padding: 25px 0;
}
.product-info__button > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 28px;
  box-sizing: border-box;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 9999px;
  color: #333 !important;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
}
.product-info {
  margin-bottom: 25px;
}
.product-info:last-of-type {
  margin-bottom: 0;
}
.artist-link{
  word-break: break-all;
  text-decoration-line: underline;
  padding-left: 1em;
}
@media screen and (min-width:768px) {
  .product-info {
    width: 490px;
    margin: 30px auto 0;
  }
  .product-info__pocket{
    width: 150px;
    top: -5px;
    right: 0;
    float: right;
  }
  .product-info__button > a {
    width: 86px;
    height: 38px;
    font-size: 1.4rem;
  }
  .product-info__button > a:hover {
    background-color: #fff;
    border-color: #333;
  }
}

/* refill */
.product-img {
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
  margin-bottom: 26px;
}
.product-info__img {
  display: none;
}
.-refill .ec-head {
  padding: 15px 0;
}
@media screen and (min-width:768px) {
  .-refill .product-info__wrap {
    display: flex;
    max-width: 960px;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 auto;
  }
  .-refill .product-info {
    width: calc(87% / 3);
    margin-bottom: 0;
  }
  .product-info__img {
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
  }
  .product-info__img.-passport {
    width: 48.75%;
  }
  .product-info__img.-comic {
    width: 60%;
  }
  .product-info__img.-square {
    width: 92.75%;
  }
  .product-img {
    display: none;
  }
}

/* -------------------------------------
footer
------------------------------------- */
#footer{
  padding-bottom: 16px;
}
#hitotoki {
  padding: 50px 40px;
  background-color: rgba(0, 142, 199, 0.1);
}
.hitotoki-catch {
  text-align: center;
  color: #008EC7;
  line-height: 1.6;
  margin-bottom: 20px;
}
.hitotoki-link-txt{
  width: 106px;
  margin: 0 auto;
  padding: 7.5px 0;
  position: relative;
}
#page-top-btn {
  right: 40px;
  bottom: 0px;
}
#page-top-btn .arrow-link{
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid;
  border-color: #008EC7 #008EC7 transparent transparent;
  transform: rotate(-45deg);
  transition:all 0.3s;
}
#page-top-btn {
  position: fixed;
  width: 44px;
  height: 44px;
  right: 0px;
  bottom:0px;
  z-index: 1000;
}
.caution-list{
  padding: 50px 40px;
}
.caution-list-item{
  position: relative;
  padding-left: 1.2em;
  font-size: 1.2rem;
}
.caution-list-item > .list_mark {
  position: absolute;
  top: 0;
  left: 0;
}
#copyright{
  font-size: 1.0rem;
  text-align: center;
}
@media screen and (min-width:768px) {
  #footer{
    padding-bottom: 10px;
  }
  #hitotoki {
    padding: 70px 0;
  }
  .hitotoki-catch {
    line-height: 1;
    margin-bottom: 30px;
  }
  .caution-list{
    padding: 50px 100px;
    width: 470px;
  }
  #copyright{
    font-size: 1.2rem;
  }
}
/* 第二弾の際消す ここから　*/
.lineup-new__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
}
.lineup-new__txt img {
  width: 50px;
}

/*.lineup-list-item.-passport::before {
  content: "";
  display: block;
  width: 56px;
  height: 17px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/sp/english/hitotoki/hitotokinote/img/lineup_new_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}*/
.lineup-info__ttl.-new {
  display: inline;
  position: relative;
}
.lineup-info__ttl.-new::after {
  content: "";
  display: block;
  width: 45px;
  height: 15px;
  position: absolute;
  top: 40%;
  right: -53px;
  transform: translateY(-50%);
  background-image: url(../img/lineup_new_icon2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width:768px) {
  /*.lineup-list-item.-passport::before {
    top: 0;
  }*/
  .-passport .lineup-choice-btn {
    padding-bottom: 68.5px;
  }
}
/* 第二弾の際消す　END */