@charset "utf-8";

/*===============================
 
	SP（767px以下）
 
================================*/

/* 全体フォント管理 */
html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  width: 100%;
}

.cc-midashi-go {
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.font-bd {
  font-weight: bold
}
/* ここまで全体フォント管理 */

/* 全体カラー管理 */
body {
  color: #333;
}

a {
  color: #333;
}
.font-color-white {
  color:#fff;
}
.font-color-gray {
  color:#b3b3b3;
}
/* ここまで全体カラー管理 */

/* フレックス設定 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex.around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex.align-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
}
.flex.align-start {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.flex.wrap {
  flex-wrap:wrap;
}
.flex.end {
  justify-content: flex-end;
}
.flex.start {
  justify-content: flex-start;
}
.flex.column {
  flex-direction: column;
}
/* ここまでフレックス設定 */

/* fontawesome */
.fa-icon::before,.fa-icon::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
/* ここまでfontawesome */

/* チェックボックス設定 */
.checkbox {
  display: none;
}
.checkbox + .checkbox-icon {
  position: relative;
  vertical-align: middle;
  margin-right: 2px;
}
.checkbox + .checkbox-icon:before {
  content: "\f0c8";
  font-weight: 400;
  color: #707070;
  font-size: 24px;
}
.checkbox:checked + .checkbox-icon:before {
  content: "\f14a";
  color: #0071BC;
}
/* ここまでチェックボックス設定 */

/* スクロールバー */
.swiper-scrollbar{
  position:relative;
  height: 7px;
  width: 125px;
  margin:0 5px;
  background-color: #BEBEBE !important;
}
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: -50px; /*bottomの数値をマイナスに*/
}
.swiper-scrollbar-drag {
  background: rgba(0,0,0, 0);
}
.swiper-scrollbar-drag:before {
  content:'';
  width: 26px;
  height: 26px;
  background: white;
  border: 1px solid black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
/* ここまでスクロールバー */

/* ページネーション */
.swiper-pagination {
  position: relative !important;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: 50px !important;
  bottom: 0px !important;
}
/* ここまでページネーション */

/* ボタン */
.swiper-button-next, .swiper-button-prev {
  position: relative !important;
  top:0 !important;
  margin:0 !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  right: auto !important;
  left: auto !important;
}
.swiper-button-prev::before {
  content:'\f191';
  font-size: 46px;
  color: #0071BC;
}
.swiper-button-next::before {
  content:'\f152';
  font-size: 46px;
  color: #0071BC;
  margin-left: 5px;
}
/* ここまでボタン */

/* ログイン画面 */
.login-container-wrap {
  background: #f2f2f2;
}
.login-container {
  background-image: url(../img/login-bg.png);
  background-repeat: no-repeat;
  background-position: -220px 50px;
  background-size: cover;
  height: 100vh; /* 変数をサポートしていないブラウザのフォールバック */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.logo-login {
  padding: 40px 0 20px;
  width: 300px;
}
.login-form {
  max-width: 80%;
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
  padding: 30px 30px 10px;
}
.form-box {
  margin-bottom: 50px;
}
.form-item {
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 30px;
}
.btn {
  display: block;
  max-width: 200px;
  margin: auto;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}
.btn-login {
  background: #0071BC;
}
.btn-signup {
  background: #B3B3B3;
}
.btn-login, .btn-signup {
  margin-bottom: 20px;
}
.login-bottom-txt {
  margin-top: 50px;
  text-align: center;
  font-size: 12px;
  line-height: 2;
}
.login-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top:0;
  left:0;
  background-color:#858585;
  z-index: 99;
}
.policy, .act, .terms, .payment {
  display: inline;
  cursor: pointer;
}
.policy-modal, .act-modal, .terms-modal {
  display: none;
}
.login-modal p {
  line-height: 2;
  /* margin-bottom: 1rem; */
}
.modal-sentence p {
  margin-bottom:1rem;
}
.modal-sentence p:last-child {
  margin-bottom:2rem;
}
.login-modal ul {
  margin-bottom:2rem;
}
.login-modal ul li {
  line-height: 2;
  margin-bottom:1rem;
}
.login-modal ul ul {
  padding-left:1rem;
}
.login-modal-ttl {
  font-size: 22px;
}
.login-modal-content-ttl {
  font-size: 20px;
  margin-bottom:.5rem;
}
.login-modal-content {
  overflow-y: scroll;
  height: 70vh;
}
.login-modal-txt-end {
  text-align: right;
}
.login-modal-table {
  margin-bottom:2rem;
}
.login-modal-table-ttl {
  color: #858585;
  padding: 7px 5px;
  background: #fff;
  border-left: 8px solid #DEDEDE;
}
.login-modal-table-txt {
  padding: 10px 8px;
  line-height: 2;
}
/* ここまでログイン画面 */

/* ヘッダー */
.header {
  height: 80px;
  width: 100%;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 98;
  padding: 12px 15px;
}
.header-title {
  max-width: 120px;
  /* padding-top: 10px; */
}
.header.hide {
  transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
}
/* .header-menu-icon {
  width: 42px;
  padding-top: 10px;
  cursor: pointer;
} */
.nav_toggle {
    display: block;
    position: absolute;
    right: 25px;
    top: 18px;
    width: 42px;
    height: 48px;
    cursor: pointer;
    z-index: 99;
    text-align: center;
}
.nav_toggle span {
    display: block;
    position: absolute;
    width: 48px;
    border-bottom: solid 4px #333;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0px;
}
.nav_toggle span:nth-child(1){top:0px;}
.nav_toggle span:nth-child(2){top:14px;}
.nav_toggle span:nth-child(3){top:28px;}
.nav_toggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
.nav_toggle.active span:nth-child(1) {
    top: 14px;
    left: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav_toggle.active span:nth-child(2),
.nav_toggle.active span:nth-child(3) {
    top: 14px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav_toggle::after {
  position: absolute;
  left: 1px;
  bottom: -7px;
  content: 'menu';
  width: 100%;
  color: #333;
  font-size: 17px;
  font-weight: bold;
}
.nav_toggle.active::after {
  content: 'close';
  bottom: -7px;
  left: 2px;
}
/* ここまでヘッダー */

/* 一覧ページタブメニュー */
.header-tab-menu-wrap {
  background-color: #fff;
  position: sticky;
  top: 80px;
  z-index: 97;
}
.header-tab-menu-wrap.top {
  top: 0;
}
.header-tab-menu {
  height: 60px;
  width: 100%;
  padding: 0 5px;
}
.header-tab-menu ul {
  width: 100%;
}
.header-tab-menu li {
  width: calc(100% / 2);
  height: 60px;
}
.header-tab-menu a {
  height: 100%;
}
.tab-document,.tab-movie,.tab-favorite {
  border-bottom:6px solid transparent;
}
.tab-document.tab-active {
  border-bottom:6px solid #0071bc;
}
.tab-movie.tab-active {
  border-bottom:6px solid #ed1e79;
}
.tab-favorite.tab-active {
  border-bottom:6px solid #fbb03b;
}
.icon-document::before {
  margin-right: 10px;
}
.icon-tab {
  margin-right: 5px;
  width: 30px;
}
.icon-tab-color {
  fill: #b3b3b3;
}
.tab-document.tab-active,.tab-movie.tab-active,.tab-favorite.tab-active {
  color:#333;
}
.tab-document.tab-active .icon-tab-color {
  fill: #0071bc;
}
.tab-movie.tab-active .icon-tab-color {
  fill: #ed1e79;
}
.tab-favorite.tab-active .icon-tab-color {
  fill: #fbb03b;
}
/* ここまで一覧ページタブメニュー */

/* ナビメニュー */
.global-navigation {
  width: 100%;
  height: 100vh;
  position: fixed;
  top:0;
  right:0;
  display: none;
  z-index: 98;
  overflow: visible;
  background-color: #fff;
}
.modal-top-pd {
  margin-top: 20px;
}
.global-navigation li {
  font-size: 16px;
  margin-bottom: 20px;
}
.global-navigation .fa-icon::before {
  font-size: 28px;
  margin-right: 10px;
  width: 40px;
}
.global-navigation .icon-doc::before {
  content: "\f15c";
}
.global-navigation .icon-movie::before {
  content: "\f03d";
}
.global-navigation .icon-schedule::before {
  content: "\f073";
}
.global-navigation .icon-shopping::before {
  content: "\f07a";
}
.global-navigation .icon-login::before {
  content: "\f2f6";
}
.global-navigation .icon-logout::before {
  content: "\f2f5";
}
/* ここまでナビメニュー */

/* コンテンツ幅共通 */
.contents-pd-top {
  padding-top: 60px;
}
.contents-pd-side {
  padding:0 20px;
}
.content-mg-in {
  margin-bottom:60px !important;
}
.content-mg-in-min {
  margin-bottom:30px !important;
}
.content-pd-in {
  padding-bottom:60px !important;
}
/* ここまでコンテンツ幅共通 */

/* 一覧ページ */
.contents-document,.contents-movie,.contents-favorite {
  position: relative;
}
.contents-document::after {
  content: '';
  background-image: url(../img/document-txt.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  opacity: .5;
}
.contents-movie::after {
  content: '';
  background-image: url(../img/movie-txt.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  opacity: .5;
}
.contents-favorite::after {
  content: '';
  background-image: url(../img/favorite-txt.svg);
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 40px;
  opacity: .5;
}
.document-bg {
  background: #bbd8ec;
}
.movie-bg {
  background: #fadce2;
}
.favorite-bg {
  background: #fde0a5;
}
.thum-img {
  width: 47%;
  background: white;
  padding: 10px;
  margin-bottom:20px;
}
.img-area {
  width: 100%;
  padding-top: 105%;
  background: #231815;
  position: relative;
  overflow: hidden;
}
.thum-img img {
  max-width: 100%;
  height: auto;
  margin-bottom:1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
.ttl-content {
  font-size: 16px;
  margin: 10px 0;
  padding-left: 5px;
}
/* .thum-img p {
  line-height: 1.5rem;
} */
.icon-favorite {
  width: 20px;
  display: block;
  margin-left: auto;
}
.icon-favorite-color {
  fill:none;
  stroke:#333;
  stroke-miterlimit:10;
  stroke-width:1.62px;
}
.favorite-active .icon-favorite-color {
  fill:#fbb03b;
  stroke:none;
}
.thum-movie {
  width: 100%;
  background: white;
  padding: 10px;
  margin-bottom:20px;
}
.movie {
  width:100%;              /*横幅いっぱいにwidthを指定*/
  padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
  height:0px;              /*高さはpaddingで指定するためheightは0に*/
  position: relative;
  margin-bottom: 1rem;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ここまで一覧ページ */

/* ビューアー */
.viewer-bottom {
  height: 60px;
}
.btn-back-lsit {
  font-size: 12px;
  padding: 12px 5px;
  border: 2px solid #0071BC;
  border-radius: 5px;
}
/* ここまでビューアー */

/* フッター */
/* .footer-area {
  width: 100%;
  text-align: center;
  padding-bottom: 40px;
}
.btn-page-top {
  width: 170px;
  margin:auto;
  padding: 7px 14px;
  background: #0071BC;
  border-radius: 5px;
}
.btn-page-top::before {
  content: "\f3bf";
  font-size: 24px;
  margin-right: 10px;
  transform: scale(-1, 1);
} */

/* フォーム */
.app-price {
  display: flex;
  justify-content: space-between;
  /* padding: 1rem; */
  font-size: 18px;
  letter-spacing: 1px;
  border: 1px solid #B9B9B9;
}
.app-price dt {
  padding: 1rem;
  width: 30%;
  background: #B9B9B9;
  display: flex;
  justify-content: center;
  color: #fff;
}
.app-price dd {
  padding: 1rem 1rem;
  width: 70%;
  display: flex;
  justify-content: flex-end;
  background: #F5F5F5;
}
.form-ttl {
  display: block;
}
.form-border {
  border-bottom:1px solid #707070;
  padding: 5px 10px;
  width: 100%;
  font-size: 16px;
}
.checkbox-gender-wrap label {
  display: inline;
  margin-right: 20px;
  cursor: pointer;
}
/* ここまでフォーム */

/* 会員登録 */
.back-form::before  {
  content: "\f104";
  color:#0071BC;
  font-size: 38px;
}
/* ここまで会員登録 */


.footer-nav-area {
  background: #fff;
  position: fixed;
  bottom:0;
  width: 100%;
  transition: .3s;
  z-index: 99;
}
.footer-nav-area.hide {
  transform: translateY(100%);
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
}

.footer-nav-menu {
  width: calc(100% / 3);
}


/*===============================
 
	PC（768px以上）
 
================================*/


@media screen and (min-width:768px) {
  /* flex */
  .flex.center-pc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* コンテンツ */
  .content-pc-w {
    max-width: 1040px;
    margin: auto;
  }
  .contents-pd-top {
    padding-top: 110px;
  }
  /* モーダル */
  .overlay {
  /* viewpointを相対位置にし、全画面表示にする */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1;
 }
  /* ログイン画面 */
  .login-container {
    background: #f2f2f2;
    background-image: url(../img/login-bg.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    height: 100vh; /* 変数をサポートしていないブラウザのフォールバック */
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
  }
  .logo-login {
    width: 420px;
  }
  .login-form {
    max-width: 420px;
    padding: 30px 30px 10px;
  }
  .form-box {
    margin-bottom: 50px;
  }
  .form-item {
    margin-bottom: 30px;
  }
  .btn-login, .btn-signup {
    margin-bottom: 20px;
  }
  .login-modal {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    max-width: 700px;
    height: 90vh;
    box-shadow: 0px 3px 6px #00000029;
  }
  .login-modal-content {
    height: 78vh;
  }
  .login-modal-content::-webkit-scrollbar{
    width: 7px;
  }
  .login-modal-content::-webkit-scrollbar-track{
    background: #858585;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2px #777;
  }
  .login-modal-content::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
  }
  /* ヘッダー */
  .global-navigation {
    max-width: 360px;
  }
  /* フッター */
  .pagetop {
    cursor: pointer;
  }
  .footer-nav-area {
    display: none;
  }
  /* 一覧 */
  .thum-img {
    width: 21%;
    margin-bottom:40px;
  }
  .content-list::before{
    content:"";
    display: block;
    width:21%;
    order:1;
  }
  .content-list::after{
    content:"";
    display: block;
    width:21%;
  }
  .contents-document::after {
    height: 88px;
  }
  .contents-movie::after {
    height: 88px;
  }
  .contents-favorite::after {
    height: 88px;
  }
  .thum-movie {
    width: 47%;
    margin-bottom:40px;
  }
  /* ビューアー */
  .doc-item {
    text-align: center;
  }
  .doc-item img {
    width: 100%;
  }
  .swiper-container {
    width: 500px;
    height: 100%;
    margin: 40px auto;
  }
  .btn-back-lsit {
    order: 2;
  }
  .swiper-pagination {
    order:1;
    width: 100% !important;
  }
  .swiper-scrollbar {
    order:3;
    width: 220px;
  }
  .swiper-button {
    order:4;
  }
  .swiper-btn-mg-pc {
    margin:0 3rem;
  }
  .swiper-bottom {
    position: sticky;
    background: #fff;
    z-index: 97;
    width: 100%;
  }
  /* 会員登録 */
  .bg-signup {
    background: transparent linear-gradient(151deg, #4D95C2 0%, #0071BC 100%) 0% 0% no-repeat padding-box;
    padding: 100px 0;
  }
  .form-signup-wrap {
    width: 660px;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0px 3px 6px #00000029;
  }
  .signup-step-img {
    width: 620px;
    margin: 40px auto 40px auto;
  }
  .signup-step-desc {
    text-align: center;
    margin: auto;
  }
  .consent-txt {
    text-align: center;
    font-size: 14px;
    margin: auto;
  }
  .btn-consent {
    display: block;
    width: 50%;
    margin: auto;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    background: #0071BC;
    border-radius: 5px;
  }
  .btn-no-consent {
    display: block;
    width: 30%;
    margin: auto;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    background: #B9B9B9;
    border-radius: 5px;
  }
  /* 登録内容の確認 */
  .signup-confirm {
    padding:2rem 0;
    border-top: 1px solid #707070;
  }
  .signup-confirm:last-child {
    border-bottom: 1px solid #707070;
    margin-bottom: 3rem;
  }
  .signup-confirm dt {
    min-width: 45%;
    text-align: center;
  }
  .btn-prev-step::before {
    content: '\f0d9';
    margin-right: 10px;
  }
  .btn-next-step::after {
    content: '\f0da';
    margin-left: 10px;
  }
  .payment-modal {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    max-width: 550px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    position: fixed;
    z-index: 99;
    padding:2rem;
    display: none;
  }
  .payment-modal p {
    margin-bottom:1rem;
  }
  .payment-modal-close {
    text-align: center;
    margin-bottom:1rem;
  }
  .payment-modal .close {
    border-bottom: 1px solid #333;
    display: inline-block;
    cursor: pointer;
  }
}
