@charset "UTF-8";
html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  counter-reset: number 0;
}

/*
----------------------rayout */
#all {
  overflow: hidden;
}

.inner {
  max-width: 680px;
  margin: auto;
}

/*
----------------------font */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.7rem;
  line-height: 1.8;
}

h1 {
  font-size: calc(2.4rem + (1vw - 0.56rem) * 3);
  /* 24px~36pxで可変*/
  line-height: 1.3;
}

h2 {
  font-size: calc(2rem + (1vw - 0.56rem) * 1);
  /* 20px~24pxで可変*/
  line-height: 1.3;
}

.bold {
  font-weight: bold;
}

@media screen and (max-width: 560px) {
  /* 560px以下*/
  body {
    font-size: 1.4rem;
    /* 14px*/
    line-height: 2;
  }
  h1 {
    font-size: 2.4rem;
    /* 24px*/
  }
  h2 {
    font-size: 2rem;
    /* 20px*/
  }
}
@media (min-width: 960px) {
  /* 960px以上*/
  body {
    font-size: 1.7rem;
  }
  h1 {
    font-size: 3.6rem;
    /* 36px*/
  }
  h2 {
    font-size: 2.4rem;
    /* 24px*/
  }
}
@media (min-width: 1400px) {
  /* 1400px以上*/
  body {
    font-size: 1.7rem;
  }
  h1 {
    font-size: 3.8rem;
    /* 36px*/
  }
  h2 {
    font-size: 2.6rem;
    /* 24px*/
  }
}
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
}
@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic");
}
@font-face {
  font-family: "MyYuMinchoM";
  font-weight: normal;
  src: local("YuMincho-Medium"), local("Yu Mincho Medium"), local("Yu Mincho-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
  font-family: "MyYuMinchoM";
  font-weight: bold;
  src: local("YuMincho-Bold"), local("Yu Mincho");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: nomal;
  color: #272727;
}

.clr-green {
  color: #62D5C7 !important;
}

/* style base
--------------------------------*/
p {
  font-size: 2rem;
  letter-spacing: 0.025em;
  text-justify: inter-ideograph;
  margin-bottom: 1.5em;
  line-height: 1.7;
}

.mincho {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.bold {
  font-weight: bold;
}

.tx-right {
  margin-left: auto;
  text-align: right !important;
}

.tx-center {
  margin: 0 auto;
  text-align: center !important;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(https://example.com/MaterialIcons-Regular.woff2) format("woff2"), url(https://example.com/MaterialIcons-Regular.woff) format("woff"), url(https://example.com/MaterialIcons-Regular.ttf) format("truetype");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  position: relative;
  top: 0.3em;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.read {
  font-size: 0.8em;
}

/*
----------------------layout */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-sb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.clm3 li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc 100%/s3;
}

/*
----------------------color */
.bg-1 {
  background-color: rgba(174, 232, 253, 0.1);
}

.grd-clr {
  background: #AEE8FD;
  background: -webkit-gradient(linear, left bottom, right top, from(#82E6DC), to(#AEE8FD));
  background: linear-gradient(to top right, #82E6DC 0%, #AEE8FD 100%);
}

.grd-clr2 {
  background: #96E3FF;
  background: -webkit-gradient(linear, left bottom, right top, from(#8DABFF), to(#96E3FF));
  background: linear-gradient(to top right, #8DABFF 0%, #96E3FF 100%);
}

/*
----------------------common */
section {
  padding: 2vw 0;
}
@media (min-width: 960px) {
  section {
    padding: 1em 0;
  }
}

h1 {
  margin-top: 0;
}
h1.ttl {
  text-align: center;
  margin-bottom: 2em;
}
h1.ttl span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.6em;
  color: #6D8BDD;
  margin-bottom: 1em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.8rem;
  letter-spacing: 0.6em;
  color: #62D5C7;
}

.ttl-b {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.6em;
  color: #6D8BDD;
  text-align: center;
}

.btn .material-symbols-outlined {
  vertical-align: sub;
}
.btn a {
  display: block;
  position: relative;
  max-width: 600px;
  margin: 0 0.5rem;
  padding: 0.5em 1em;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background-color: #00d288;
  border-radius: 3em;
  cursor: pointer;
  font-size: 1.5rem;
}
.btn a:after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  top: 24%;
  right: 1%;
  background-image: url("../images/_svg/icn-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  margin-right: 0.5em;
}
.btn a:hover {
  background-color: #608FB7;
}
.btn.btn-m {
  width: 50%;
}

/*
----------------------index header */
#mv, #page {
  position: relative;
}
#mv header, #page header {
  min-width: 60%;
  position: fixed;
  top: 1em;
  right: -1.5em;
  z-index: 9999;
}
#mv header nav, #page header nav {
  padding: 0.5em 2em;
  border-radius: 2em;
}
#mv header nav ul, #page header nav ul {
  margin-right: 4vw;
}
@media screen and (max-width: 860px) {
  #mv header nav ul, #page header nav ul {
    margin-right: 13vw;
  }
}
#mv header nav ul li, #page header nav ul li {
  margin: 0;
}
#mv header nav ul li a, #page header nav ul li a {
  color: #fff;
  padding: 0 1em;
}
#mv .lock-area .psw-read, #page .lock-area .psw-read {
  max-width: 800px;
  background-color: #f7f7f7;
  margin: auto;
  padding: 2em 0 1em;
  text-align: center;
}
#mv .lock-area form, #page .lock-area form {
  max-width: 800px;
  background-color: #f7f7f7;
  margin: auto;
  padding: 0 0 2em;
  text-align: center;
}
#mv .lock-area .pass, #page .lock-area .pass {
  font-size: 1em;
  width: 45%;
  min-width: 300px;
  border-radius: 4px;
  padding: 0.6em 0;
  border: 1px solid #ccc;
}
#mv .lock-area .submit, #page .lock-area .submit {
  font-size: 1em;
  padding: 0.5em;
  margin-left: 0.5em;
  background-color: rgb(46, 112, 255);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
}

/*
----------------------page header */
#page-header {
  width: 100%;
}

#logo {
  position: relative;
  background-color: #f1f6ff;
  padding: 1.5em 0;
}
#logo p {
  width: 18em;
  padding-top: 0.5em;
  margin: auto;
}

/*
----------------------phead ttl */
#head-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#head-ttl img {
  opacity: 0.27;
}
#head-ttl h1 {
  text-align: center;
  letter-spacing: 0.2em;
  padding: 1em 0;
}
#head-ttl h1 span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.6em;
  margin-bottom: 0.5em;
  color: #6D8BDD;
}

/*
----------------------page common */
h2.sec-ttl {
  font-size: 3rem;
  margin-bottom: 3em;
  padding-bottom: 0.5em;
  color: #6D8BDD;
  border-bottom: 2px solid #6D8BDD;
}
h2.sec-ttl span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.6em;
  margin-bottom: 0.8em;
  color: #62D5C7;
}
h2.ttl {
  font-size: 3rem;
  background-color: #6D8BDD;
  color: #fff;
  border-radius: 3em;
  padding: 0.3em;
  margin-bottom: 2em;
}
h2.sp-title {
  margin-bottom: 0 !important;
  color: #1870e0 !important;
  background-color: #e2f2ff !important;
}
h2.sp-title-yellow {
  margin-bottom: 0 !important;
  color: #8e8200 !important;
  background-color: #fbf290 !important;
}
h2.sp-title-green {
  margin-bottom: 0 !important;
  color: #3b9540 !important;
  background-color: #c6f5c9 !important;
}

/*
----------------------customer page */
#news .inner {
  border: 1px solid #ccc;
}
#news .inner h2 {
  margin-bottom: 0;
}
#news dl {
  padding: 3% 3% 0 3%;
  overflow: hidden;
  font-size: 1em;
}
#news dl p {
  font-size: 1.5rem;
}
#news dl dt {
  float: left;
  width: 10%;
  clear: both;
  font-weight: bold;
}
#news dl dd {
  float: right;
  width: 75%;
}
@media screen and (max-width: 560px) {
  #news dl dt, #news dl dd {
    float: none;
  }
}

.customer {
  position: relative;
}
.customer h2 {
  text-align: center;
  color: #1870e0;
  padding: 0.5em;
  margin-bottom: 2em;
  background-color: #e2f2ff;
}
.customer .movie-list ul {
  /*border-top: 1px solid #ccc;*/
}
.customer .movie-list ul li {
  border-bottom: 1px solid #ccc;
  padding: 1em;
}
.customer .movie-list ul li:last-child {
  border-bottom: none;
}
.customer .movie-list ul li .time {
  font-size: 0.8em;
  color: rgb(60, 75, 211);
}
.customer .movie-list ul li .thumb {
  width: 28%;
}
.customer .movie-list ul li .read {
  width: 70%;
}
.customer .movie-list ul li .read .ttl {
  font-weight: bold;
  color: rgb(43, 43, 43);
  margin-bottom: 0.6em;
}
.customer .movie-list ul li .read .txt p {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: rgb(43, 43, 43);
}
.customer .movie-list ul li.dl-list-item {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.customer .movie-list ul li.dl-list-item .ttl {
  display: block;
  padding: 0.5em 0 0 2.5em;
  position: relative;
  padding-left: 30px;
  padding: 0.5em 0.5em 0.5em 30px;
}
.customer .movie-list ul li.dl-list-item .ttl, .customer .movie-list ul li.dl-list-item .ttl:link, .customer .movie-list ul li.dl-list-item .ttl:visited, .customer .movie-list ul li.dl-list-item .ttl:active, .customer .movie-list ul li.dl-list-item .ttl:focus {
  color: rgb(43, 43, 43);
}
.customer .movie-list ul li.dl-list-item .ttl::before {
  position: absolute;
  display: inline-block;
  top: 28%;
  left: 0;
  content: counter(number);
  counter-increment: number;
  padding: 0 0.2em 0 0.2em;
  background: #6e8bdd;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.customer .movie-list ul li.dl-list-item .ttl .select ul li {
  font-size: 0.8em;
  background-color: #ffe6db;
  text-align: center;
  display: inline-block;
  padding: 0 1em;
  border-radius: 1em;
}
.customer .movie-list ul li.dl-list-item .dl-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em;
  background-color: rgb(46, 112, 255);
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
}
.customer .dl-list ol {
  list-style: none;
  counter-reset: number;
}
.customer .dl-list ol li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.customer .dl-list ol li .ttl {
  padding: 0.5em 0 0 2.5em;
  position: relative;
  padding-left: 30px;
  padding: 0.5em 0.5em 0.5em 30px;
}
.customer .dl-list ol li .ttl::before {
  position: absolute;
  display: inline-block;
  top: 28%;
  left: 0;
  content: counter(number);
  counter-increment: number;
  padding: 0 0.2em 0 0.2em;
  background: #6e8bdd;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.customer .dl-list ol li .ttl .select ul li {
  font-size: 0.8em;
  background-color: #ffe6db;
  text-align: center;
  display: inline-block;
  padding: 0 1em;
  border-radius: 1em;
}
.customer .dl-list ol li .btn-area a {
  display: inline-block;
  padding: 0.5em;
  margin-left: 0.5em;
  background-color: rgb(46, 112, 255);
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
}
.customer #fixed {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .customer #fixed.flex-center {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .customer #fixed.flex-center li {
    width: 48%;
  }
  .customer #fixed.flex-center li.btn a {
    width: 100%;
    padding: 0;
  }
}
.customer.light h4 {
  text-align: center;
  color: #605359;
  padding: 0.5em;
  margin-bottom: 0.5em;
  background-color: #f4f4f4;
}
.customer.advance h2 {
  text-align: center;
  color: #e0187e;
  padding: 0.5em;
  margin-bottom: 2em;
  background-color: #ffe2ee;
}
.customer.advance h4 {
  text-align: center;
  color: #605359;
  padding: 0.5em;
  margin-bottom: 0.5em;
  background-color: #f4f4f4;
}
.customer.advance #logo {
  background-color: #fff1f7 !important;
}

/*
----------------------lesson */
#page.lesson .read p {
  width: 80%;
  margin: auto;
}
#page.lesson .detail {
  padding: 5% 8%;
  background-color: #fff;
  border-radius: 1em;
}
#page.lesson .detail dt {
  font-size: 2.5rem;
  border-bottom: 1px solid #62D5C7;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  font-weight: bold;
}
#page.lesson .detail dt:before {
  display: inline-block;
  counter-increment: number 1;
  content: counter(number) " ";
  background: #62D5C7;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  padding: 0 1.7rem;
  margin-right: 0.5em;
  color: #fff;
}
#page.lesson .detail dd {
  margin-bottom: 4em;
}
#page.lesson .detail dd:last-child {
  margin-bottom: 0;
}
#page.lesson .special {
  padding: 5% 8%;
  background-color: #fff;
  border-radius: 1em;
}
#page.lesson .special li {
  font-size: 2rem;
}
#page.lesson .special li:before {
  content: "●";
  margin-right: 0.5em;
  color: #6D8BDD;
}
#page.lesson .request-area {
  position: relative;
  background-color: #6D8BDD;
  color: #fff;
  font-size: 2rem;
  border-radius: 1em;
}
#page.lesson .request-area .ttl {
  font-size: 3rem;
  padding-top: 1.5em;
}
#page.lesson .request-area .ttl span {
  display: block;
  margin-bottom: 0.3em;
  color: #EBFE00;
  font-size: 2rem;
}
#page.lesson .request-area ul {
  width: 70%;
  margin: auto;
  font-size: 2.5rem;
}
#page.lesson .request-area ul li {
  padding: 0.5em 1em;
}
#page.lesson .request-area ul li span {
  display: inline-block;
  background-color: #fff;
  color: #6D8BDD;
  font-size: 2rem;
  padding: 0 1em;
  border-radius: 2em;
  margin-right: 1em;
}
#page.lesson .request-area .request-icn {
  position: absolute;
  display: block;
  width: 13%;
  top: -10%;
  right: 8%;
}
#page.lesson .request-area .request-btn a {
  display: block;
  background-color: #62D5C7;
  color: #fff;
  font-size: 2.5rem;
  padding: 0.5em 0;
  border-bottom-left-radius: 0.8em;
  border-bottom-right-radius: 0.8em;
}
#page.lesson .request-area .request-btn a:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("../images/_svg/icn-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  vertical-align: text-top;
  margin-left: 0.5em;
}

/*
----------------------footer */
footer {
  position: sticky;
  top: 100vh;
  width: 100%;
  padding-top: 3em;
}
footer .ttl-b {
  margin-bottom: 2em;
}
footer .company {
  background-color: #F5F5F5;
  padding: 4vw;
  margin-top: 4vw;
}

#copy {
  padding: 1em;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

/*
----------------------accordion */
dl, dt, dd {
  margin: 0;
  list-style: none;
}

.accordion h2 {
  margin-bottom: 0 !important;
}
.accordion h4 {
  margin-bottom: 0.5em;
}
.accordion .accordion-title.open h2,
.accordion .accordion-title.open h4 {
  margin-bottom: 1.5em !important;
}

/* アコーディオン共通指定 */
.accordion-title,
.accordion-content {
  position: relative;
}

/* アコーディオン見出し */
.accordion-title {
  cursor: pointer;
}

.accordion-title::before {
  font-size: 1.5em;
  font-weight: bold;
  content: "+";
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion-title.open::before {
  font-size: 1.5em;
  font-weight: bold;
  content: "−";
}

/* アコーディオンコンテンツ */
.accordion-content {
  display: none;
}

/* アコーディオン共通指定 */
.accordion-title,
.accordion-content {
  position: relative;
}

/* アコーディオン見出し */
.accordion-title {
  cursor: pointer;
}

.accordion-title::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion-title.open::before {
  content: "−";
}

/* アコーディオンコンテンツ */
.accordion-content {
  display: none;
}

/*
----------------------modal */
/*モーダルを開くボタン*/
.modal-open {
  display: block;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 50px;
  font-weight: bold;
  color: #fff;
  background: #2F2F2F;
  margin: auto;
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  /*max-width: 500px;*/
  width: 90%;
  z-index: 1000;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -9%;
  right: 0%;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  background: #000;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
}

/*
----------------------pankuzu */
@media screen and (max-width: 860px) {
  #pankuzu {
    padding: 0 15px;
  }
}
#pankuzu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*
----------------------single page content */
#content .inner .movie {
  margin-top: 30px;
}
#content .inner .article {
  margin-top: 60px;
}
@media screen and (max-width: 860px) {
  #content .inner .article {
    padding: 0 15px;
  }
}
#content .inner .article h2 {
  margin-top: 4em;
}
@media screen and (max-width: 860px) {
  #content .inner .article p {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.6;
  }
}