@charset "Shift_JIS";

/**
 * index.css
 * updatedAt: 2018.01.16
 */

/*========================================

  .header

========================================*/
.header {
  background: #000;
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-align-items: center;
}
.header__logo {
  display: block;
  padding: 15px 0;
  width: 100px;
}
.header__txt {
  margin-left: auto;
  padding: 14px 0 18px;
  width: 351px;
  line-height: 0;
}

@media(max-width: 960px) {
  .header__txt {
    width: 300px;
  }
}
@media(max-width: 640px) {
  .header__logo {
    width: 80px;
  }
  .header__txt {
    width: 52%;
  }
}


/*========================================

  .mainvisual

========================================*/
.mainvisual {
  overflow: hidden;
  position: relative;
}
.mainvisual__img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 723px;
  height: 56.485vw;
  background-image: url(../img/mainvisual.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mainvisual__inner {
  position: relative;
  z-index: 1;
  max-height: 723px;
  height: 56.485vw;
}
.mainvisual__title {
  margin: 0 0 0 2.5%;
  padding-top: 6.75%;
  width: 45.084%;
}
.mainvisual__vol {
  margin: 2.334% 0 0 7.417%;
  width: 35.25%;
}
.mainvisual__products {
  margin: 2.5% 0 0 10.25%;
  width: 29.75%;
}
.mainvisual__nav {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}

@media(max-width: 640px) {
  .mainvisual__title {
    margin: 0 0 0 1.0%;
    padding-top: 8%;
  }
  .mainvisual__vol {
    margin: 4% 0 0 6%;
    width: 34%;
  }
  .mainvisual__products {
    margin: 5% 0 0 1.5%;
    width: 44%;
  }
  .mainvisual__nav {
    position: static;
    margin: 20px 0;
  }
}


/*========================================

  .nav

========================================*/
.nav__ul {
  display: flex;
  flex-wrap: wrap;

  display: -webkit-flex;
  -webkit-flex-wrap: wrap;

  box-sizing: border-box;
  margin-bottom: 2.334%;
  padding: 2.417% 0 0;
  max-height: 141px;
  height: 11.016vw;
  background-image: url(../img/nav.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
  list-style: none;
}
.nav__item {
  position: relative;
  margin-left: 0.25%;
  font-size: 1.125rem;
  line-height: 1.34;
}
.nav__item a {
  display: flex;
  justify-content: center;
  align-items: center;

  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;

  position: absolute;
  box-sizing: border-box;
  text-align: center;
  padding-top: 10px;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.nav__item a:after {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  max-height: 9px;
  height: 0.704vw;
  background-image: url(../img/nav_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  content: '';
}
.nav__item a span {
  display: none;
}

.nav__item:nth-child(1) {
  margin-left: 0;
  width: 19.417%;
}
.nav__item:nth-child(2) {
  width: 19.75%;
}
.nav__item:nth-child(3) {
  width: 20.334%;
}
.nav__item:nth-child(4) {
  width: 19.834%;
}
.nav__item:nth-child(5) {
  width: 19.667%;
}

@media(max-width: 1280px) {
  .nav__item {
    font-size: 1.407vw;
  }
}
@media(max-width: 960px) {
  .nav__item a {
    padding-top: 5px;
  }
  .nav__item a:after {
    bottom: 8px;
  }
}
@media(max-width: 640px) {
  .nav__ul {
    display: block;
    margin: 0;
    padding: 0;
    max-height: inherit;
    height: auto;
    background: #36beb1;
    border-radius: 8px;
  }
  .nav__item {
    margin: 0 !important;
    width: auto !important;
    font-size: 1.0rem;
  }
  .nav__item a {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;

    position: relative;
    text-align: left;
    margin: 1px 0 0;
    padding: 10px 5%;
  }
  .nav__item a:after {
    position: absolute;
    left: 5%;
    top: -2px;
    width: 90%;
    height: 1px;
    background: #eee;
    content: '';
  }
  .nav__item:first-child a {
    margin: 0;
  }
  .nav__item:first-child a:after {
    display: none;
  }
  .nav__item a span {
    display: inline;
    margin-right: 10px;
    font-size: 1.25rem;
    font-style: italic;
  }
}


/*========================================

  .intro

========================================*/
.intro {
  margin-top: 80px;
}
.intro__title {
  text-align: center;
  font-size: 2.063rem;
  line-height: 1.4;
}
.intro__txt {
  text-align: center;
  margin-top: 25px;
  font-size: 1.188rem;
  line-height: 2.0;
  letter-spacing: -0.02em;
}

@media(max-width: 640px) {
  .intro {
    margin-top: 40px;
  }
  .intro__txt {
    text-align: left;
  }
}


/*========================================

  .profile

========================================*/
.profile {
  position: relative;
  box-sizing: border-box;
  margin: 110px auto 0;
  padding: 30px 45px;
  max-width: 740px;
  background: #e1eeeb;
  border-radius: 12px;
}
.profile__img {
  position: absolute;
  right: 2.973%;
  bottom: 0;
  width: 27.973%;
}
.profile__title {
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 1.4;
}
.profile__txt {
  margin-top: 12px;
  width: 70%;
  font-size: 1.0rem;
  line-height: 1.5;
}

@media(max-width: 640px) {
  .profile {
    margin-top: 10%;
    padding: 6.897%;
  }
}

/*========================================

  .comment

========================================*/
.comment {
  position: relative;
  box-sizing: border-box;
  margin: 30px auto 0;
  padding: 20px 25px;
  max-width: 840px;
  background: #e1eeeb;
  border-radius: 12px;
}
.comment__img {
  position: absolute;
  left: 2.973%;
  top:15%;
  width: 15%;
}
.comment__title {
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 1.4;
  width: 80%;
  margin-left: 20%;
}
.comment__txt {
  margin-top: 12px;
  width: 80%;
  margin-left: 20%;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media(max-width: 640px) {
  .comment {
    margin-top: 10%;
    padding: 6.897%;
  }
}

@media(max-width: 640px) {
 .comment__img {
    position: relative;
    width: 86px;
	margin: 0 auto;
	left: 0;
    top:0;
  }
  .comment__txt{
    width: 100%;
  	margin-left: 0%;
  }
}


/*========================================

  .point

========================================*/
.point {
  margin: 40px auto 0;
  padding: 30px 45px;
  background: #f4fcfa;
  border-radius: 12px;
}
.point__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  color: #6b6b6b;
}
.point__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.point__list li {
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.5;
}
.point__list li:before {
  display: inline-block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 19px;
  height: 14px;
  background-image: url(../img/point_check.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  content: '';
}

@media(max-width: 640px) {
  .point {
    margin-top: 30px;
    padding: 6.897%;
  }
}


/*========================================

  .titleBox

========================================*/
.titleBox {
  text-align: center;
  background: #e1eeeb;
}
.titleBox__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;

  max-height: 234px;
  height: 234px;
}
.titleBox__txt em {
  display: block;
  width: 50px;
  line-height: 0;
}
.titleBox__txt span {
  display: block;
  margin-top: 20px;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: #555;
}

@media(max-width: 960px) {
  .titleBox__txt {
    height: 180px;
  }
  .titleBox__txt em {
    width: 40px;
  }
}
@media(max-width: 640px) {
  .titleBox__txt {
    display: block;
    padding: 15px 0;
    height: auto;
  }
  .titleBox__txt em {
    margin: 0 auto;
    width: 30px;
  }
  .titleBox__txt span {
    margin-top: 10px;
  }
}


/*========================================

  .imgBox

========================================*/
.imgBox {
  margin: 0 auto;
  line-height: 0;
}
.imgBox img {
  width: 100%;
  height: auto;
}
.imgBox__caption {
  text-align: right;
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.imgBox__caption.vertical {
	width:270px;
	margin:10px auto;
}
.imgBox__zoom {
  display: block;
  position: relative;
  margin: 0 auto;
  line-height: 0;
  transition: opacity 0.2s !important;
}
.imgBox__zoom:hover {
  opacity: 0.75;
}
.imgBox__zoom:after {
  display: block;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 16px;
  height: 16px;
  background-image: url(../img/zoom.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: '';
}
.imgBox__frame {
  display: block;
}
.imgBox__frame:before,
.imgBox__frame:after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: '';
}
.imgBox__frame:before {
  z-index: 2;
  border: 1px solid #ececec;
  border-radius: 2px;
}
.imgBox__frame--dark:before {
  border-color: #dbdbdb;
}
.imgBox__frame:after {
  z-index: 1;
  border: 7px solid #fff;
}

@media(max-width: 640px) {
  .imgBox__caption {
    text-align: center;
  }
  .imgBox__frame:after {
    border-width: 5px;
  }
}


/*========================================

  .lensBox

========================================*/
.lensBox {
  position: relative;
  margin: 25px 0 0;
}
.lensBox__mount {
  display: inline-block;
  padding: 0 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 27px;
  border-width: 2px;
  border-style: solid;
}
.lensBox__mount--E {
  color: #00329a;
  border-color: #00329a;
}
.lensBox__ttl {
  margin-top: 20px;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 1.2;
}
.lensBox__txt {
  margin-top: 5px;
  font-size: 0.938rem;
  line-height: 1.2;
}
.lensBox__img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5%;
  line-height: 0;
}
.lensBox__img img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: auto;
}
.lensBox__img--SEL50F18 {
  width: 29.375%;
}
.lensBox__img--SEL50F18F {
  width: 17.25%;
}
.lensBox__btnBox {
  margin-top: 15px;
  font-size: 0;
}
.lensBox__btnBox .mod__btn {
  max-width: 190px;
  width: 28%;
}
.lensBox__btnBox .mod__btn + .mod__btn {
  margin-left: 10px;
}

@media(max-width: 640px) {
  .lensBox__mount {
    padding: 0 10px;
    font-size: 0.875rem;
    line-height: 24px;
  }
  .lensBox__ttl {
    margin-top: 15px;
    font-size: 1.438rem;
  }
  .lensBox__txt {
    font-size: 1.063rem;
  }
  .lensBox__img {
    position: relative;
    margin: 20px auto 0;
  }
  .lensBox__img img {
    position: static;
    margin-left: -50%;
    width: 200%;
  }
  .lensBox__btnBox .mod__btn {
    width: 49%;
  }
  .lensBox__btnBox .mod__btn + .mod__btn {
    margin-left: 2%;
  }
}


/*========================================

  article

========================================*/
.about,
.howto,
.custom {
  margin: 100px 0 0;
}
.inner-w800 {
  max-width: 800px;
}
.inner-w810 {
  max-width: 810px;
}
.inner-spt {
  position: relative;
  margin-top: 70px !important;
  padding-top: 70px;
}
.inner-spt:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 43px;
  height: 3px;
  width: 100%;
  height: 1px;
  background: #d2d2d2;
  /*border-radius: 20%;*/
  content: '';
}
.heading {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.688rem;
  font-weight: 400;
  line-height: 1.85;
  color: #000;
}

.titleBox + .inner-w800,
.titleBox + .inner-w810 {
  margin-top: 70px;
}
.inner-w800 + .inner-w800,
.inner-w810 + .inner-w810,
.inner-w800 + .inner-w810,
.inner-w810 + .inner-w800 {
  margin-top: 80px;
}

@media(max-width: 640px) {
  .about,
  .howto,
  .custom {
    margin-top: 60px;
  }
  .inner-spt {
    margin-top: 40px !important;
    padding-top: 40px;
  }
  .heading {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  .titleBox + .inner-w800,
  .titleBox + .inner-w810 {
    margin-top: 40px;
  }
}


/*========================================

  #No1 .about

========================================*/
.about__img__01 {
  margin-bottom: 35px;
}
.about__img__02 {
  margin-bottom: 35px;
  width: 56.25%;
}

@media(max-width: 640px) {
  .about__img__01 {
    margin-bottom: 25px;
  }
  .about__img__02 {
    margin-bottom: 25px;
    width: auto;
  }
  .about__img__02 a {
    width: 70%;
  }
}


/*========================================

  #No2 .howto

========================================*/
.howto__img__01 {
  margin-bottom: 35px;
}
.howto__strong {
  display: block;
  text-align: center;
  margin-bottom: 35px;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  color: #6b6b6b;
}
.howto__strong:before,
.howto__strong:after {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 55px;
  background-repeat: no-repeat;
  background-position: 0 0;
  content: '';
}
.howto__strong:before {
  background-image: url(../img/howto_strong1.png);
}
.howto__strong:after {
  background-image: url(../img/howto_strong2.png);
}
.howto__strong span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px;
}

.howto__line + .howto__line {
  margin-top: 60px;
}
.howto__imgH {
  float: left;
  margin: 0 6.173% 0 0;
  width: 49.136%;
}
.howto__line .mod__txt {
  overflow: hidden;
}

.howto__line--flex {
  display: flex;
  align-items: center;

  display: -webkit-flex;
  -webkit-align-items: center;
}
.howto__line + .howto__line--flex {
  margin-top: 30px;
}
.howto__imgV {
  text-align: center;
  margin: 0;
  width: 49.136%;
}
.howto__imgV a {
  width: 66.835%;
}
.howto__imgV .howto__img__caption {
  text-align: center;
}
.howto__line--flex .mod__txt {
  margin-left: auto;
  width: 44.692%;
}

@media(max-width: 640px) {
  .howto__img__01 {
    margin-bottom: 25px;
  }
  .howto__strong {
    margin-bottom: 25px;
  }
  .howto__line + .howto__line,
  .howto__line + .howto__line--flex {
    margin-top: 50px;
  }
  .howto__imgH {
    float: none;
    margin: 0 0 25px;
    width: auto;
  }
  .howto__line--flex {
    display: block;
  }
  .howto__imgV {
    width: auto;
  }
  .howto__imgV a {
    width: 70%;
  }
  .howto__line--flex .mod__txt {
    margin-top: 25px;
    width: auto;
  }
}


/*========================================

  #Lesson .lesson

========================================*/
.lesson {
  margin-top: 80px;
}
.lesson__inner {
  position: relative;
  padding: 7.369% 7.895% 8.422%;
  background: #ededed;
  border-radius: 12px;
}
.lesson__camera {
  position: absolute;
  top: 0;
  left: 0;
  margin: 4.632% 0 0 6.948%;
  width: 33.158%;
}
.lesson__intro {
  margin-left: 46.875%;
  margin-bottom: 6.875%;
  width: 53.125%;
}
.lesson__intro__ttl {
  font-size: 1.688rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0fc594;
}
.lesson__intro__txt {
  margin-top: 20px;
  font-size: 1.125rem;
  line-height: 2.0;
}
.lesson_img_01 {
  margin-bottom: 25px;
}
.lesson_img_02 {
  margin: 35px 0 25px;
}
.lesson_img_03 {
  margin: 60px 0 25px;
}

@media(max-width: 640px) {
  .lesson {
    margin-top: 60px;
  }
  .lesson__inner {
    padding: 6.897% 6.897% 10%;
  }
  .lesson__camera {
    position: static;
    margin: 0 auto;
    max-width: 315px;
    width: 60%;
  }
  .lesson__intro {
    margin-left: 0;
    margin-bottom: 25px;
    width: auto;
  }
  .lesson__intro__txt {
    margin-top: 10px;
  }
}

/*----------------------------------------
  .lesson__f
----------------------------------------*/
.lesson__f {
  margin-top: 50px;
  font-size: 0;
}
.lesson__f__txtBox {
  display: inline-block;
  vertical-align: top;
  width: 31.25%;
}
.lesson__f__ttl {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.lesson__f__ttl strong {
  display: inline-block;
  vertical-align: middle;
  width: 14%;
  font-size: 1.5rem;
}
.lesson__f__ttl span {
  display: inline-block;
  vertical-align: middle;
  width: 86%;
}
.lesson__f__txt {
  margin-top: 15px;
  font-size: 1.0rem;
  line-height: 1.68;
}
.lesson__f__imgBox {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-left: 3.75%;
  width: 65%;
}
.lesson__f__caption {
  display: block;
  text-align: left;
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.lesson__f__img01a {
  display: inline-block;
  width: 41.347%;
}
.lesson__f__img01b {
  display: inline-block;
  margin-left: 1.924%;
  width: 56.731%;
}
.lesson__f__img02 {
  display: inline-block;
  width: 76.924%;
}
.lesson__f__img03a {
  display: inline-block;
  width: 49.424%;
}
.lesson__f__img03b {
  display: inline-block;
  margin-left: 1.539%;
  width: 49.039%;
}

@media(max-width: 640px) {
  .lesson__f {
    margin-top: 40px;
  }
  .lesson__f__txtBox,
  .lesson__f__imgBox {
    display: block;
    width: auto;
  }
  .lesson__f__imgBox {
    margin: 15px 0 0;
  }
  .lesson__f__ttl strong,
  .lesson__f__ttl span {
    width: auto;
  }
  .lesson__f__ttl strong {
    margin-right: 5px;
  }
  .lesson__f__txt {
    margin-top: 5px;
  }
  .lesson__f__img02 {
    max-width: 400px;
    width: auto;
  }
}


/*========================================

  #No3 .custom

========================================*/
.custom__intro {
  margin-top: 65px;
}
.custom__intro__txt {
  line-height: 2.0;
}
.custom__section {
  margin-top: 50px;
  font-size: 0;
}
.custom__heading {
  text-align: center;
  padding: 5px 15px;
  font-size: 1.688rem;
  font-weight: 400;
  line-height: 1.4;
  background: #e1eeeb;
  border-radius: 10px;
}
.custom__col {
  display: inline-block;
  vertical-align: top;
  margin: 35px 2.632% 0 0;
  width: 31.579%;
}
.custom__col:last-child {
  margin-right: 0;
}
.custom__col__step {
  display: block;
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 1.0;
  color: #00b081;
}
.custom__col__txt {
  margin-top: 20px;
  font-size: 1.0rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
}
.custom__col__note {
  margin-top: 5px;
  font-size: 0.875rem;
  line-height: 1.3;
}

@media(max-width: 640px) {
  .custom__intro {
    margin-top: 30px;
  }
  .custom__section {
    margin-top: 40px;
  }
  .custom__heading {
    padding: 8px 15px;
  }
  .custom__col,
  .custom__col:last-child {
    display: block;
    margin: 40px auto 0;
    width: 89.656%;
  }
  .custom__heading + .custom__col {
    margin-top: 25px;
  }
  .custom__col__step {
    margin-bottom: 10px;
    font-size: 1.375rem;
  }
  .custom__col__txt {
    margin-top: 10px;
  }
}


/*========================================

  .setting

========================================*/
.setting {
  margin-top: 60px;
}
.setting__inner {
  padding: 3.158% 7.369% 4.211%;
  background: #333;
  border-radius: 12px;
}
.setting__title {
  text-align: center;
  font-size: 0;
}
.setting__title img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 10.618%;
}
.setting__title span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.688rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fefefe;
}
.setting__txt {
  margin-top: 30px;
  color: #fff;
}
.setting__img {
  display: flex;
  display: -webkit-flex;
  margin-top: 20px;
}
.setting__img__a {
  width: 42.470%;
}
.setting__img__b {
  margin-left: auto;
  width: 54.939%;
}

@media(max-width: 640px) {
  .setting__inner {
    padding: 6.897% 6.897% 10%;
  }
  .setting__title img {
    display: block;
    margin: 0 auto 15px;
    width: 86px;
  }
  .setting__txt {
    margin-top: 25px;
  }
  .setting__img {
    display: block;
    margin-top: 0;
  }
  .setting__img__a,
  .setting__img__b {
    margin: 25px auto 0;
    max-width: 400px;
    width: 94%;
  }
}


/*========================================

  .issue

========================================*/
.issue {
  margin-bottom: 120px;
  padding: 55px 0;
  background-image: url(../img/issue_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.issue__txt1 {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ea5504;
}
.issue__txt2 {
  text-align: center;
  margin: 10px 0 50px;
  font-size: 2.063rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
}
.issue__txt3 {
  text-align: center;
  margin: 50px 0 0;
  font-size: 2.125rem;
  line-height: 1.4;
  color: #fff;
}
.issue__float {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-align-items: center;
}
.issue__img {
  width: 47.369%;
}
.issue__list {
  margin: 0 0 0 auto;
  padding: 0;
  width: 47.369%;
  list-style: none;
  font-size: 1.313rem;
  line-height: 1.4;
  color: #fff;
}
.issue__list li {
  position: relative;
  margin-top: 5.5%;
}
.issue__list li:first-child {
  margin-top: 0;
}
.issue__list li:before {
  display: inline-block;
  margin-right: 5px;
  width: 23px;
  height: 17px;
  background-image: url(../img/issue_check.svg);
  background-repeat: no-repeat;
  background-size: 23px 17px;
  content: '';
}
.issue__list li:last-child:before {
  display: none;
}

@media(max-width: 960px) {
  .issue__img {
    width: 45%;
  }
  .issue__list {
    width: 50%;
    font-size: 2.2vw;
  }
  .issue__list li {
    margin-top: 4%;
  }
  .issue__list li:before {
    width: 21px;
    height: 15px;
    background-size: 21px 15px;
  }
}
@media(max-width: 640px) {
  .issue {
    margin-top: 50px;
    padding: 6.897% 0;
  }
  .issue__txt2 {
    text-align: center;
    margin: 10px 0 30px;
  }
  .issue__float {
    display: block;
  }
  .issue__img {
    width: auto;
  }
  .issue__list {
    margin: 20px 0 0;
    width: auto;
    font-size: 1.25rem;
  }
  .issue__list li {
    margin-top: 4%;
  }
  .issue__txt3 {
    margin: 30px 0 0;
  }
}
@media(max-width: 359px) {
  .issue__list {
    font-size: 1.188rem;
  }
}


/*========================================

  #No4 .academy

========================================*/
.academy {
  margin-top: 100px;
  padding-bottom: 120px;
}
.academy__note {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.academy__title {
  padding: 15px 0;
  font-size: 0;
  background: #ea5504;
}
.academy__title em {
  display: inline-block;
  vertical-align: middle;
  max-width: 42px;
  background: #ea5504;
}
.academy__title span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 20px;
  font-size: 1.938rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
.academy__title__logo {
  display: inline-block;
  vertical-align: middle;
  width: 23.685%;
  height: auto;
}


@media(max-width: 960px) {
  .academy__title {
    text-align: center;
    padding: 20px 0 25px;
  }
  .academy__title em {
    display: block;
    margin: 0 auto 20px;
    max-width: 30px;
  }
  .academy__title span {
    display: block;
    margin: 0 0 5px;
  }
}
@media(max-width: 640px) {
  .academy {
    margin-top: 60px;
    padding-bottom: 70px;
  }
  .academy__title {
    padding: 15px 0;
  }
  .academy__title em {
    margin: 0 auto 10px;
    max-width: 20px;
  }
  .academy__title span {
    display: inline;
  }
  .academy__title__logo {
    position: relative;
    margin-left: 10px;
    width: 150px;
  }
}


/*----------------------------------------
  .academy__course
----------------------------------------*/
.academy__course {
  margin-top: 75px;
}
.academy__course__heading {
  text-align: left;
  line-height: 1.3;
}

/*----------------------------------------
  add on
----------------------------------------*/
.academy .academy__course .txt-box {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 47.36842%;
}
.academy .academy__course .img-box {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-left: 3%;
  width: 48.736842%;
}
.academy .academy__course .img-box img {
  width: 100%;
}
@media(max-width:640px) {
  .academy .academy__course .txt-box {
    position: static;
    display: block;
    width: auto;
  }
  .academy .academy__course .img-box {
    position: static;
    display: block;
    margin-top: 15px;
	margin-left: 0;
    width: auto;
  }
}

.academy__course__item__inner:after,
.academy__course.mod__inner:after{
  clear: both;
  display: block;
  content: '';
}
/*----------------------------------------
  add on



.academy__course__item__inner:after{
  clear: both;
  display: block;
  content: '';
}
----------------------------------------*/

.academy__course__item {
  /*display: flex;
  display: -webkit-flex;*/
  margin-top: 40px;
  width: 31.8%;
  /*height:390px;*/
  margin-left: 2%;
  float: left;
}

.academy__course__item a{
	color:#333;
	text-decoration:none;
}
.academy__course__item:first-child,
.academy__course__item:nth-child(4){
  margin-left: 0%;
}
.academy__course__img {
  width: 100%;
  /*width: 42.106%;*/
}
.academy__course__info {
  margin: 20px 0 0 auto;
  /*width: 54.737%;*/
}
.academy__course__reco {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
  background: #ea5504;
}
.academy__course__ttl {
  margin: 10px 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.academy__tag {
  display: flex;
  display: -webkit-flex;
  margin: 5.77% 0 0;
  padding: 0;
  list-style: none;
}
.academy__tag li {
  display: inline-block;
  padding: 0 6px;
  font-size: 0.875rem;
  line-height: 20px;
  border-width: 1px;
  border-style: solid;
  background: #fff;
}
.academy__tag li + li {
  margin-left: 5px;
}
.academy__tag__A {
  border-color: #c6d9ff;
  background: #c6d9ff !important;
}
.academy__tag__B {
  border-color: #a2bbea;
}
.academy__tag__C {
  border-color: #ec9717;
}
@media(max-width: 728px) {
  .academy__course__item {
	/*height:330px;*/
  }
}
@media(max-width: 640px) {
  .academy__course {
    margin-top: 35px;
  }
  .academy__course__heading {
    text-align: center;
    line-height: 1.4;
  }
  .academy__course__item {
    width: 48%;
	/*height:330px;*/
  }
  .academy__course__item:nth-child(4){
    margin-left: 2%;
  }
  .academy__course__item:nth-child(3),
  .academy__course__item:nth-child(5){
    margin-left: 0%;
  }
  .academy__course__img {
    width: auto;
  }
  .academy__course__info {
    width: auto;
  }
}
@media(max-width: 480px) {
  .academy__course__item {
	height:300px;
  }
}

.academy__school__btn {
  margin-top: 30px;
}
.academy__school__btn:before {
  display: inline-block;
  position: relative;
  top: -0.2em;
  margin-right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #fff;
  content: '';
}

/*----------------------------------------
  .academy__search
----------------------------------------*/
.academy__search {
  margin-top: 90px;
}
.academy__school {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-between;
}
.academy__school__item {
  display: block;
  width: 19.158%;
  transition: opacity 0.25s !important;
}
.academy__school__item:hover {
  opacity: 0.8;
}
.academy__school__img {
  display: block;
  line-height: 0;
}
.academy__school__img img {
  width: 100%;
  height: auto;
}
.academy__school__name {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  text-align: center;
  margin: 0;
  height: 56px;
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: #5787e4;
}
.academy__school__name:before {
  display: inline-block;
  position: relative;
  top: -0.1em;
  margin-right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #fff;
  content: '';
}
.academy__banner {
  margin-top: 60px;
}

@media(max-width: 640px) {
  .academy__search {
    margin-top: 60px;
  }
  .academy__school__item {
    margin-top: 2%;
    width: 49%;
  }
  .academy__school__name {
    height: 40px;
  }
  .academy__banner {
    margin-top: 40px;
  }
}