/* ==========================================================================//
//
// [layouts]
//
// ========================================================================== */

/* main image
   ========================================================================== */

.m-mainImg {
  position: relative;
  height: 700px;
  background-color:#EDEDED;
  overflow: hidden;
}

.m-mainImg .inner {
  height: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

  .m-mainImg .slide {
  height: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: 0.8s linear;
  opacity: 0;
  visibility: hidden;
}

.m-mainImg .slide.is-show {
  opacity: 1;
  visibility: visible;
}

.m-mainImg .slide:nth-child(1) { z-index: 109; }
.m-mainImg .slide:nth-child(2) { z-index: 108; }
.m-mainImg .slide:nth-child(3) { z-index: 107; }
.m-mainImg .slide:nth-child(4) { z-index: 106; }
.m-mainImg .slide:nth-child(5) { z-index: 105; }
.m-mainImg .slide:nth-child(6) { z-index: 104; }
.m-mainImg .slide:nth-child(7) { z-index: 103; }
.m-mainImg .slide:nth-child(8) { z-index: 102; }
.m-mainImg .slide:nth-child(9) { z-index: 101; }

.m-mainImg .img {
  position: relative;
  width: 1682px;
  height: 700px;
  z-index: 100;
}

.m-mainImg .inner .img img {
  position: absolute;
  width: 1682px;
  height: auto;
  left: 50%;
  top: 50%;
  min-width: 1682px;
  transform: translate(-50%, -50%) scale(1.0,1.0);
  transition: 0s linear;
}

.m-mainImg .slide .img img {
  position: absolute;
  width: 1682px;
  height: auto;
  left: 50%;
  top: 50%;
  min-width: 1682px;
  transform: translate(-50%, -50%) scale(1.0,1.0);
  transition: 0s linear;
}

.m-mainImg .slide.is-zoom .img img {
  transform: translate(-50%, -50%) scale(1.1,1.1);
  transition: 6s linear;
}

.m-mainImg .content {
  position: absolute;
  z-index: 101;
  bottom: 80px;
  left: calc( 50% - 640px );
  margin: 0 0 0 40px;
}

.m-mainImg .title {
  margin: 0 0 20px 0;
}

.m-mainImg .title span {
  display: inline-block;
  padding: 6px 25px;
  font-weight: bold;
  font-size: 40px;
  background-color: rgba(255,255,255,0.9);
}

.m-mainImg .copy span {
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  background-color: rgba(255,255,255,0.9);
  padding: 5px 25px;
  margin: 0 0 5px 0;
}

.m-mainImg .btn {
  margin: 25px 0 0 0;
}

.m-mainImg .link {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  padding: 15px 15px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: 0.5s ease;
  background: #000 url("../images/ico_arrow_02.png") 92% 45% no-repeat;
  background-size: 8px auto;
}

.m-mainImg .link:hover {
  color: #FFC700;
}

.m-mainImg .controll {
  position: absolute;
  display: none;
  align-items: center;
  right: 0;
  bottom: 0;
  z-index: 200;
  background-color: #fff;
  padding: 20px 35px;
}

.m-mainImg.is-contorollable .controll {
  display: flex;
}

.m-mainImg .controll .prev {
  cursor: pointer;
  height: 42px;
  padding: 13px;
  transition: 0.5s ease;
}

.m-mainImg .controll .prev:hover {
  opacity: 0.5;
}

.m-mainImg .controll .prev img {
  transform: rotate(180deg);
  width: 10px;
}

.m-mainImg .controll .next {
  cursor: pointer;
  height: 42px;
  padding: 13px;
  transition: 0.5s ease;
}

.m-mainImg .controll .next:hover {
  opacity: 0.5;
}

.m-mainImg .controll .next img {
  width: 10px;
}

.m-mainImg .controll .count {
  display: inline-block;
  padding: 0 35px;
  font-size: 24px;
  color: #999999;
}

.m-mainImg .controll .current {
  color: #333333;
  margin: 0 10px 0 0;
}

.m-mainImg .controll .total {
  margin: 0 0 0 10px;
}

@media screen and (max-width: 1280px) {
  .m-mainImg .content {
    left: calc( 50% - 50vw );
  }
}

@media screen and (max-width: 767px) {
  .m-mainImg {
    height: 460px;
  }

  .m-mainImg .inner {
    width: 100%;
    height: 460px;
  }

  .m-mainImg .slide {
    width: 100%;
    height: 460px;
  }

  .m-mainImg .img {
    width: 100%;
    height: 460px;
  }

  .m-mainImg .inner .img img {
    object-fit: contain;
    height: 460px;
  }

  .m-mainImg .slide .img img {
    object-fit: contain;
    height: 460px;
  }

  .m-mainImg .content {
    bottom: 60px;
    left: 0;
    margin: 0 15px;
  }

  .m-mainImg .title {
    margin: 0 0 10px 0;
  }

  .m-mainImg .title span {
    padding: 3px 15px;
    font-size: 20px;
  }

  .m-mainImg .copy span {
    font-size: 14px;
    padding: 3px 15px;
  }

  .m-mainImg .btn {
    margin: 10px 0 0 0;
  }

  .m-mainImg .link {
    min-width: 140px;
    padding: 10px 15px;
    font-size: 14px;
    background: #000 url("../images/ico_arrow_02.png") 92% 45% no-repeat;
    background-size: 6px auto;
  }

  .m-mainImg .controll {
    padding: 10px 10px;
  }

  .m-mainImg .controll .prev {
    height: 24px;
    padding: 7px;
  }

  .m-mainImg .controll .prev img {
    width: 7px;
  }

  .m-mainImg .controll .next {
    height: 24px;
    padding: 7px;
  }

  .m-mainImg .controll .next img {
    width: 7px;
  }

  .m-mainImg .controll .count {
    padding: 0 10px;
    font-size: 16px;
  }

  .m-mainImg .controll .current {
    margin: 0 5px 0 0;
  }

  .m-mainImg .controll .total {
    margin: 0 0 0 5px;
  }
}

/* gloval navigation
   ========================================================================== */

.l-gnavi {
  position: relative;
  height: 98px;
}

.l-gnavi .menuBtn {
  display: none;
}

.l-gnavi .container {
  position: relative;
  border-bottom: 1px solid #E1E1E1;
  background-color: #fff;
}

.l-gnavi .container.is-stay,
.l-gnavi .container.is-fixed {
  width: 100%;
  position: fixed;
  z-index: 999;
  transition: 0.3s ease;
}

.l-gnavi .container.is-stay {
  top: -98px;
  opacity: 0.5;
}

.l-gnavi .container.is-fixed {
  top: 0;
  opacity: 1;
}

.l-gnavi .list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.l-gnavi .item {
  padding: 0 26px;
}

.l-gnavi .link {
  min-width: 110px;
  text-align: center;
  position: relative;
  display: block;
  color: #777777;
  text-decoration: none;
  font-size: 12px;
  font-weight: normal;
  padding: 23px 0;
  transition: 0.5s ease;
  line-height: 1.6;
}

.l-gnavi .link span {
  letter-spacing: 0.1em;
  font-size: 20px;
  display: block;
}

.l-gnavi .link.is-active,
.l-gnavi .link:hover {
  color: #333333;
}

.l-gnavi .link::before,
.l-gnavi .link::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #FFC700;
  transition: 0.5s ease;
}

.l-gnavi .link.is-active::before,
.l-gnavi .item:hover .link::before {
  width: 100%;
}

.l-gnavi .subBox {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px 40px;
  background-color: #000;
  z-index: 999;
}

.l-gnavi .item .subBox {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.5s ease;
  z-index: inherit;
}

.l-gnavi .item:hover .subBox {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  z-index: 999;
}

.l-gnavi .subList {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.l-gnavi .subItem {
  width: 30%;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #777777;
}

.l-gnavi .subItem.-title {
  width: 100%;
  text-align: center;
}

.l-gnavi .subLink {
  display: block;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 25px 20px 0;
  background: url('../images/ico_arrow_02.png') 95% center no-repeat;
  background-size: 9px auto;
  transition: 0.5s ease;
}

.-title .subLink {
  font-size: 20px;
  display: inline-block;
  padding: 15px 100px 15px 0;
}

.l-gnavi .subLink:hover {
  color: #FFC700;
}

.l-gnavi .buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 998;
  opacity: 1;
  transition: 0.5s ease;
}

@-moz-document url-prefix() {
  .l-gnavi .buttons {
    right: -40px;
  }
}

.l-gnavi .buttons.is-show {
  opacity: 1;
}

.l-gnavi .button {
  position: relative;
  right: -10px;
  margin: 15px 0;
  transition: 0.2s ease;
}

.l-gnavi .button:hover {
  right: 0;
}

.l-gnavi .conversion {
  min-height: 173px;
  max-height: 300px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: center;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 15px 25px 15px 15px;
  letter-spacing: .1em;
  background-color: #2EB975;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.l-gnavi .conversion.-establishment {
  background-color: #FF7200;
}

_:-ms-fullscreen, :root .l-gnavi .button:nth-child(1) .conversion {
  height: 183px;
}

_:-ms-fullscreen, :root .l-gnavi .button:nth-child(2) .conversion {
  height: 200px;
}

_:-ms-fullscreen, :root .l-gnavi .button:nth-child(3) .conversion {
  height: 97px;
}

.l-gnavi .close {
  display: none;
}

.l-overlay {
  display: none;
}

@media screen and (max-width: 1280px) {
  .l-gnavi .item {
    padding: 0 1.6vw;
  }
}

@media screen and (max-width: 767px) {
  .l-gnavi {
    position: fixed;
    width: 100%;
    max-height: 0vh;
    height: 100vh;
    padding: 50px 0 0 0;
    overflow: scroll;
    z-index: 998;
    transition: 0.8s ease;
  }

  .l-gnavi.is-open {
    max-height: 100vh;
  }

  .l-gnavi .container {
    position: relative;
  }

  .l-gnavi .list {
    max-width: 100%;
    display: block;
  }

  .l-gnavi .item {
    padding: 0;
    border-bottom: 1px solid #E1E1E1;
  }

  .l-gnavi .link {
    position: relative;
    display: block;
    color: #777777;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 15px 35px 15px 35px;
    background: #fff url('../images/ico_arrow_02.png') 95% center no-repeat;
    background-size: 10px auto;
  }

  .js-dropdownMenu.link {
    background: #fff url('../images/btn_plus_01.png') 95% center no-repeat;
    background-size: 15px auto;
    transition: none;
  }

  .js-dropdownMenu.link.is-open {
    background: #fff url('../images/btn_minus_01.png') 95% center no-repeat;
    background-size: 15px auto;
  }

  .l-gnavi .link::before,
  .l-gnavi .link::before {
    display: none;
  }

  .l-gnavi .item:hover .link::before,
  .l-gnavi .link.is-active::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 2px;
    height: 94px;
    background-color: #FFC700;
    transform: none;
    transition: none;
  }

  .l-gnavi .item:hover .subBox,
  .l-gnavi .item .subBox {
    position: relative;
    padding: 0;
    background-color: #F5F5F5;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    z-index: auto;
    transition: 0.8s ease;
  }

  .l-gnavi .item:hover .subBox.is-show,
  .l-gnavi .subBox.is-show {
    max-height: 2000px;
    visibility: visible;
  }

  .l-gnavi .item .subBox {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }

  .l-gnavi .subList {
    max-width: 100%;
    margin: 0;
    display: block;
    border-top: 1px solid #E1E1E1;
  }

  .l-gnavi .subItem {
    width: calc( 100% - 35px );
    margin: 0 0 0 35px;
    border-bottom: 1px solid #E1E1E1;
  }

  .l-gnavi .subItem:nth-child(3n+1) {
    margin: 0 0 0 35px;
  }

  .l-gnavi .subItem:nth-last-child(1) {
    border-bottom: none;
  }

  .l-gnavi .subItem.-title {
    width: calc( 100% - 15px );
    margin: 0 0 0 15px;
    text-align: left;
  }

  .l-gnavi .subLink {
    display: block;
    font-size: 14px;
    color: #777777;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 0;
    background: url('../images/ico_arrow_01.png') 95% center no-repeat;
    background-size: 6px auto;
    transition: none;
  }

  .-title .subLink {
    font-size: 14px;
    display: block;
    padding: 15px 0;
  }

  .l-gnavi .subLink:hover {
    color: #FFC700;
  }

  .l-gnavi .buttons {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    z-index: 998;
    opacity: 1;
    background-color: #fff;
    padding: 25px 0 15px;
    transition: none;
  }

  .l-gnavi .buttons.is-show {
    opacity: 1;
  }

  .l-gnavi .button {
    position: relative;
    right: auto;
    margin: 0 15px 15px 15px;
    transition: 0.2s ease;
  }

  .l-gnavi .button:hover {
    right: 0;
  }

  .l-gnavi .conversion {
    min-height: auto;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: block;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 15px 25px 15px 15px;
    letter-spacing: .1em;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    background: #2EB975 url(../images/ico_link_03.svg) 95% center no-repeat;
  }

  .l-gnavi .close {
    display: block;
    text-align: center;
    color: #ffff;
    letter-spacing: 0.15em;
    padding: 19px 0;
    margin: 0 0 80px 0;
    background-color: #999999;;
  }

  .l-gnavi .close span {
    font-weight: bold;
    display: inline-block;
    padding: 0 0 0 20px;
    background: url('../images/btn_humbergerClose_01.svg') left center no-repeat;
    background-size: 12px auto;
  }

  .l-overlay {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    visibility: hidden;
    z-index: 990;
    background-color: #000;
    opacity: 0;
    transition: 0.8s ease;
  }

  .l-overlay.is-show {
    visibility: visible;
    opacity: 0.8;
  }
}

/* gloval navigation (footer)
   ========================================================================== */

.l-gnavi.-migration {
  height: 161px;
}

.l-gnavi.-migration .container {
  border-top: 1px solid #E1E1E1;
}

.-migration .link {
  padding: 57px 0;
}

@media screen and (max-width: 1520px) {
  .l-gnavi.-migration {
    height: 250px;
  }

  .pageTop {
    position: inherit;
    border-left: none;
    border-top: 1px solid #E1E1E1;
    width: 100%;
    height: 80px;
  }

  .pageTop img {
    width: 29px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 767px) {
  .l-gnavi.-migration {
    position: relative;
    height: auto;
    max-height: inherit;
    overflow: inherit;
    padding: 0;
    z-index: inherit;
  }

  .l-gnavi.-migration .container {
    border-top: 1px solid #E1E1E1;
    border-bottom: none;
  }

  .l-gnavi.-migration .item:nth-last-child(1) {
    border-bottom: none;
  }

  .-migration .link {
    padding: 20px 35px 20px 35px;
  }
}

/* page top
   ========================================================================== */

.pageTop {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  border-left: 1px solid #E1E1E1;
  width: 160px;
  height: 160px;
  transition: 0.5s ease;
}

.pageTop:hover {
  opacity: 0.6;
}

.pageTop img {
  width: 29px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1520px) {
  .pageTop {
    position: inherit;
    border-left: none;
    border-top: 1px solid #E1E1E1;
    width: 100%;
    height: 80px;
  }

  .pageTop img {
    width: 29px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* c-fixed-pagetop
   ========================================================================== */
.c-fixed-pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  text-indent: -9999px;
  margin: 0;
  display: block;
  width: 60px;
  height: 60px;
  background: #000000;
  transition: all .6s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 102;
}
.c-fixed-pagetop.is-show {
opacity: 1;
visibility: visible;
}
.c-fixed-pagetop:hover {
  opacity: .3;
}
.c-fixed-pagetop::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}
.c-fixed-pagetop.is-change {
  background-color: #ffc700;
}

/* content
   ========================================================================== */

.l-content {
  min-height: calc( 100vh - 68px - 215px );
  background-color: #F5F5F5;
}

.l-content.-white {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .l-content {
    padding: 50px 0 0 0;
    min-height: calc( 100vh - 292px );
    background-color: #F5F5F5;
  }
}

/* disclaimer
   ========================================================================== */

.l-disclaimer {
  padding: 60px 40px 25px;
  color: #fff;
  background: #333;
}

.l-disclaimer .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l-disclaimer .title {
  font-weight: bold;
  font-size: 0.88em;
}

.l-disclaimer .text {
  color: #C8C8C8;
  margin: 15px 0 35px 0;
  padding: 40px 50px 20px;
  background-color: #3C3C3C;
  font-size: 0.7em;
}

.l-disclaimer .text.-large {
  max-height: 260px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #555 #777;
}

.l-disclaimer .text.-large::-webkit-scrollbar {
  width: 10px;
}

.l-disclaimer .text.-large::-webkit-scrollbar-track {
  background: #777;
}

.l-disclaimer .text.-large::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 10px #444;
  box-shadow: inset 0 0 10px #444;
}

.l-disclaimer .text.-large::-webkit-scrollbar-thumb:hover {
  opacity: 1;
}

.l-disclaimer .text.-titleHide > .common_disclaimer > div:first-child {
  display: none;
}

.common_disclaimer div {
  margin: 0 0 20px 0;
}

.common_disclaimer p {
  font-size: 1.17em;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.common_disclaimer a {
  color: #C8C8C8;
}

.l-disclaimer a[target="_blank"] {
  display: inline-block;
  background: url("../images/ico_outer_01.svg") right 40% no-repeat;
  padding: 0 18px 0 0;
  margin: 0 2px 0 0;
}

.l-disclaimer a[href$=".pdf"] {
  background: url("../images/ico_pdf_01.png") right 40% no-repeat;
}

@media screen and (max-width: 767px) {
  .l-disclaimer {
    padding: 30px 15px;
  }

  .l-disclaimer .title {
    margin: 20px 0 0 0;
  }

  .l-disclaimer .text {
    padding: 20px;
  }

  .l-disclaimer .text.-disclaimer {
    max-height: 260px;
  }
}

/* section
   ========================================================================== */

.l-section.-lv01 {
  padding: 0 40px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.l-section.-lv02 {
  position: relative;
  background-color: #fff;
  margin: 0 0 100px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 100px 80px;
}

.l-section.-lv02:last-of-type {
  margin: 0 0 0 0;
}

.l-section.-lv02:only-of-type {
  margin: 0 0 0 0;
}

.l-section.-lv03 {
  margin: 0 0 70px 0;
}

@media screen and (max-width: 767px) {
  .l-section.-lv01 {
    padding: 60px 0 0;
    max-width: 100%;
  }

  .l-section.-lv02 {
    margin: 0 0 0 0;
    padding: 45px 15px;
  }

  .l-section.-lv03 {
    margin: 0 0 45px 0;
  }
}

/* column
   ========================================================================== */

.l-column2 {
  display: flex;
  justify-content: space-between;
}

.l-column2 .child {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .l-column2 {
    display: block;
  }

  .l-column2 .child {
    width: 100%;
    margin: 0 0 50px 0;
  }
}

/* ==========================================================================//
//
// [modules]
//
// ========================================================================== */

/* header
   ========================================================================== */

.m-header {
  height: 240px;
  overflow: hidden;
  background-color: #000;
  position: relative;
}

_:-ms-fullscreen, :root .m-header {
  overflow: hidden;
}

.m-header.-large {
  height: 300px;
}

.m-header .img {
  width: 100%;
  min-width: 1360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 100;
}

.m-header.-large .img {
  min-width: 1870px;
}

.m-header .img img {
  width: 100%;
}

.m-header .inner {
  position: relative;
  max-width: 1280px;
  height: 240px;
  padding: 0 40px;
  margin: 0 auto;
  z-index: 101;
}

.m-header.-large .inner {
  height: 300px;
}

.m-header > .inner > .text {
  width: 100%;
  padding: 0 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.9em;
  color: #fff;
  font-weight: bold;
}

.m-header > .inner > .text span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .m-header {
    height: 160px;
  }

  .m-header.-large {
    height: 200px;
  }

  .m-header .img,
  .m-header.-large .img {
    min-width: 760px;
  }

  .m-header .inner {
    max-width: 100%;
    height: 160px;
    padding: 0;
  }

  .m-header.-large .inner {
    height: 200px;
  }

  .m-header > .inner > .text {
    font-size: 1.46em;
  }
}

/* breadcrumb
   ========================================================================== */

.m-breadcrumb {
  position: absolute;
  bottom: 10px;
  left: 40px;
  display: flex;
  max-width: calc( 100vw - 120px );
}

.m-breadcrumb .item {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
}

.m-breadcrumb .item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-breadcrumb .item::after {
  color: #fff;
  content: ' / ';
  display: inline-block;
  padding: 0 6px 0 8px;
}

.m-breadcrumb .item:last-child::after {
  content: '';
}

.m-breadcrumb .item .link,
.m-breadcrumb .item .text {
  font-size: 0.75em;
  color: #fff;
}

.m-header.-large .m-breadcrumb {
  bottom: 55px;
}

@media screen and (max-width: 767px) {
  .m-breadcrumb {
    display: none;
  }
}

/* subscription
   ========================================================================== */

.m-subscription {
  height: 430px;
  background: #000 url("../images/bg_subscription_01.png") center center no-repeat;
}

.m-subscription .inner {
  max-width: 1280px;
  padding: 100px 40px;
  margin: 0 auto;
}

.m-subscription .heading {
  position: relative;
  text-align: center;
  font-size: 2.15em;
  padding: 0 0 15px 0;
  margin: 0 0 60px 0;
  color: #fff;
}

.m-subscription .heading::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  display: block;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #FFC700;
}

.m-subscription .block {
  display: flex;
  justify-content: space-between;
}

.m-subscription .box {
  text-align: center;
  width: 48%;
}

.m-subscription .box .title {
  font-size: 0.87em;
  color: #fff;
  margin: 0 0 20px 0;
}

.m-subscription .box .title span {
  font-weight: bold;
}

.m-subscription .box .title strong {
  font-size: 1.3em;
  font-weight: bold;
}

.m-subscription .box .link {
  font-size: 1.12em;
  font-weight: bold;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  background: #2EB975 url(../images/ico_link_03.svg) 95% 50% no-repeat;
  transition: 0.5s ease;
}
.m-subscription .box:nth-child(2) .link {
  background: #FF7200 url(../images/ico_link_03.svg) 95% 50% no-repeat;
}

.m-subscription .box .link:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.3);
}

@media screen and (max-width: 767px) {
  .m-subscription {
    height: auto;
    background: #000 url("../images/bg_subscription_01.png") center center no-repeat;
    background-size: cover;
  }

  .m-subscription .inner {
    max-width: 100%;
    padding: 50px 15px 10px;
  }

  .m-subscription .heading {
    font-size: 1.7em;
    padding: 0 0 10px 0;
    margin: 0 0 35px 0;
  }

  .m-subscription .block {
    display: block;
  }

  .m-subscription .box {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .m-subscription .box .title {
    font-size: 0.94em;
    margin: 0 0 10px 0;
  }

  .m-subscription .box .link {
    font-size: 1.0em;
  }
}

/* migration
   ========================================================================== */

.m-migration {
  background-color: #F5F5F5;
}

.m-migration .list {
  padding: 100px 40px 50px;
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.m-migration .list .item {
  width: 47.8%;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 0 0 50px 0;
}

.m-migration .list .link {
  display: flex;
  align-items:  center;
  height: 120px;
  padding: 0 30px 0 40px;
  text-decoration: none;
  transition: 0.5s ease;
}

.m-migration .list .link.is-active,
.m-migration .list .link:hover {
  opacity: 0.5;
}

.m-migration .list .img {
  width: 60px;
  margin: 0 30px 0 0;
}

.m-migration .list .text {
  display: block;
  width: 100%;
  font-weight: bold;
  background: url("../images/ico_arrow_02.png") right center no-repeat;
  background-size: 10px;
}

.m-migration .list .text span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .m-migration {
    max-width: 100%;
  }

  .m-migration .list {
    padding: 50px 15px 50px;
    max-width: 100%;
    display: flex;
  }

  .m-migration .list .item {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .m-migration .list .link {
    height: 70px;
    padding: 0 15px 0 20px;
  }

  .m-migration .list .img {
    width: 36px;
    margin: 0 15px 0 0;
  }
}

/* tab
   ========================================================================== */

.m-tab {
  margin: 0 0 0 0;
}

.m-tab .controll {
  display: flex;
  justify-content: space-between;
  margin: 0 0 90px 0;
}

.m-tab .btn {
  width: 50%;
}

.m-tab .btn a {
  width: 100%;
  position: relative;
  display: flex;
  height: 70px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  color: #fff;
  background-color: #999999;
  font-weight: bold;
  transition: 0.8s ease;
  border-left: 1px solid #F5F5F5;
}

.m-tab .btn a span {
  display: inline-block;
}

.m-tab .btn a:hover {
  background-color: #000;
}

.m-tab .btn.is-active a {
  background-color: #000;
}

.m-tab .btn.is-active a::after {
  display: block;
  content: "\25BC";
  color: #000;
  position: absolute;
  left: 50%;
  bottom: -15px;
  font-size: 14px;
  transform: translate(-50%,0) scale(1.5,1);
}

@media screen and (max-width: 767px) {
  .m-tab {
    margin: 0 0 60px 0;
  }

  .m-tab .controll {
    margin: 0 0 50px 0;
  }

  .m-tab .btn a {
    flex-flow: column;
  }
}

/* tab (section level)
   ========================================================================== */

.m-tabSection .controll {
  max-width: 1280px;
  margin: 100px auto -100px;
  padding: 0 40px;
}

.m-tabSection .controll .lead {
  display: none;
}

.m-tabSection .inner {
  display: flex;
  z-index: 500;
  position: relative;
  box-shadow: 0 -7px 10px rgba(0,0,0,0.05);
}

.m-tabSection .controll .btn {
  width: 50%;
  background-color: #E1E1E1;
  border-right: 2px solid #fff;
  transition: 0.6s ease;
}

.m-tabSection .controll .btn:last-child {
  border-right: none;
}

.m-tabSection .controll .btn:hover,
.m-tabSection .controll .btn.is-active {
  background-color: #fff;
}

.m-tabSection .controll .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 25px;
  height: 210px;
  font-weight: bold;
  text-decoration: none;
  opacity: 0.6;
  transition: 0.6s ease;
  text-align: center;
}

.m-tabSection .controll .btn:hover a,
.m-tabSection .controll .btn.is-active a {
  opacity: 1;
}

.m-tabSection .controll .btn .img {
  display: block;
  margin: 0 0 5px 0;
}

.m-tabSection .controll .btn span {
  display: inline-block;
}

.m-tabSection .tabBox {
  padding-top: 200px;
}

.m-tabSection .tabBox .c-btn {
  display: none;
}

@media screen and (max-width: 1280px) {
  .m-tabSection .controll .btn a {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 767px) {

  .m-tabSection .controll {
    margin: 40px 15px -40px;
    padding: 0;
  }

  .m-tabSection .controll .lead {
    display: block;
    text-align: center;
    margin: 0 0 15px 0;
  }

  .m-tabSection .inner {
    box-shadow: none;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .m-tabSection .controll .btn {
    width: 49%;
    border-right: none;
    margin: 0 0 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .m-tabSection .controll.-column4 .btn {
    width: 49%;
  }

  .m-tabSection .controll .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    flex-wrap: wrap;
    font-size: 0.8em;
    padding: 15px 10px;
    height: auto;
    min-height: 70px;
  }

  .m-tabSection .controll .btn:nth-child(1) a,
  .m-tabSection .controll .btn:nth-child(2) a,
  .m-tabSection .controll .btn:nth-child(3) a,
  .m-tabSection .controll .btn:nth-child(4) a {
    background: none;
  }

  .m-tabSection .controll .btn .img {
    display: none;
  }

  .m-tabSection .controll .btn span {
    display: inline;
  }

  .m-tabSection .tabBox {
    padding-top: 45px;
  }
}

@media screen and (max-width: 359px) {
  .m-tabSection .controll .btn a {
    font-size: 3.3vw;
  }
}

/* box
   ========================================================================== */

.c-box {
  background-color: #F5F5F5;
  padding: 50px;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 767px) {
  .c-box {
    padding: 20px 15px;
  }
}

/* movie
   ========================================================================== */

.c-movie {
  background-color: #E1E1E1;
  margin: 0 0 15px 0;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.c-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* company box
   ========================================================================== */

.m-boxCompany {
  margin: 75px 0 0 0;
}

.m-boxCompany .detail {
  margin: 40px 0 0 0;
  display: flex;
  align-items: center;
  border: 1px solid #E1E1E1;
}

.m-boxCompany .detail .name {
  text-align: center;
  width: 50%;
  padding: 30px;
}

.m-boxCompany .detail .description {
  padding: 50px;
  width: 50%;
  color: #fff;
  background-color: #555555;
}

.m-boxCompany .detail .description span {
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  .m-boxCompany {
    margin: 25px 0 0 0;
  }

  .m-boxCompany .detail {
    margin: 15px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #E1E1E1;
  }

  .m-boxCompany .detail .name {
    padding: 60px 50px;
    width: 100%;
  }

  .m-boxCompany .detail .description {
    padding: 20px;
    width: 100%;
    color: #fff;
    background-color: #555555;
  }
}

/* proffessional box
   ========================================================================== */

.m-boxProfile {
  margin: 0 0 45px 0;
  padding: 50px;
  background-color: #F5F5F5;
}

.m-boxProfile:last-of-type {
  margin: 0 0 0 0;
}

.m-boxProfile .summary {
  display: flex;
  padding: 0 0 50px 0;
}

.m-boxProfile .texts {
  width: calc( 100% - 215px );
  padding: 0 65px 0 0;
}

.m-boxProfile .names {
  border-left: 2px solid #FFC700;
  padding: 0 0 0 50px;
  margin: 0 0 30px -50px;
}

.m-boxProfile .name {
  font-size: 1.24em;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.m-boxProfile .role {
  font-weight: bold;
  color: #777777;
}

.m-boxProfile .img {
  width: 215px;
}

.m-boxProfile .profile {
  margin: 0 0 20px 0;
  background-color: #FFFFFF;
}

.m-boxProfile .profile.is-open {
  margin: 0 0 50px 0;
}

.m-boxProfile .profile p {
  padding: 50px;
}

@media screen and (max-width: 767px) {
  .m-boxProfile {
    margin: 70px 0 90px 0;
    padding: 15px;
    background-color: #F5F5F5;
  }

  .m-boxProfile .summary {
    display: flex;
    padding: 0 0 25px 0;
    flex-wrap: wrap;
  }

  .m-boxProfile .texts {
    order: 2;
    width: 100%;
    padding: 0 0 0 0;
  }

  .m-boxProfile .names {
    border-left: 2px solid #FFC700;
    padding: 0 0 0 15px;
    margin: 0 0 25px -15px;
  }

  .m-boxProfile .name {
    font-size: 1.24em;
    font-weight: bold;
    margin: 0 0 5px 0;
  }

  .m-boxProfile .role {
    font-weight: bold;
    color: #777777;
  }

  .m-boxProfile .img {
    order: 1;
    width: 100%;
    text-align: center;
    margin: -45px 0 25px 0;
  }

  .m-boxProfile .img img {
    width: 53%;
  }

  .m-boxProfile .profile.is-open {
    margin: 0 0 20px 0;
  }

  .m-boxProfile .profile p {
    padding: 20px;
  }
}

/* step box
   ========================================================================== */

.m-boxStep {
  position: relative;
  background-color: #F5F5F5;
  margin: 0 0 65px 0;
  padding: 50px;
}

.m-boxStep::after {
  display: block;
  content: "\25BC";
  color: #F5F5F5;
  position: absolute;
  left: 50%;
  bottom: -20px;
  font-size: 17px;
  transform: translate(-50%,0) scale(1.5,1);
}

.m-boxStep:last-child::after {
  content: "";
}

.m-boxStep .num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translate(-50%,0);
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  font-size: 22px;
}

.m-boxStep .step {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
}

.m-boxStep .step:last-child {
  margin: 0 0 0 0;
}

.m-boxStep .step div {
  width: 50%;
}

.m-boxStep .step div:last-child {
  padding: 0 0 0 50px;
}

@media screen and (max-width: 767px) {
  .m-boxStep {
    margin: 0 0 50px 0;
    padding: 35px 20px;
  }

  .m-boxStep .num {
    top: -15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }

  .m-boxStep .step {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 35px 0;
  }

  .m-boxStep .step:last-child {
    margin: 0 0 0 0;
  }

  .m-boxStep .step div {
    width: 100%;
  }

  .m-boxStep .step div:first-child {
    order: 2;
  }

  .m-boxStep .step div:last-child {
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    order: 1;
  }
}

/* FAQ list
   ========================================================================== */

.m-listFaq {
  border-top: 1px solid #E1E1E1;
}

.m-listFaq .item {
  border-bottom: 1px solid #E1E1E1;
  padding: 30px 0;
}

.m-listFaq .question,
.m-listFaq .answer {
  padding: 0 50px 0 0;
  font-weight: bold;
  font-size: 1.12em;
  background: url("../images/btn_plus_01.png") calc( 100% - 15px ) 15px no-repeat;
  background-size: 15px auto;
  overflow: hidden;
}

.m-listFaq .question {
  cursor: pointer;
}

.m-listFaq .question::before,
.m-listFaq .answer::before {
  float: left;
  display: block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: #fff;
  text-align: center;
  content: "Q";
  background-color: #000;
  border-radius: 50%;
  font-size: 26px;
  font-weight: normal;
}

.m-listFaq .question span,
.m-listFaq .answer > .text {
  float: left;
  display: block;
  padding: 6px 0 0 30px;
  width: calc( 100% - 46px );
}

.m-listFaq .answer {
  display: none;
  padding: 30px 0 0 0;
  font-weight: normal;
  font-size: 1.0em;
  background: none;
}

.m-listFaq .question.is-open {
  background: url("../images/btn_minus_01.png") calc( 100% - 15px ) 21px no-repeat;
  background-size: 15px auto;
}

.m-listFaq .answer::before {
  content: "A";
  background-color: #FFC700;
}

@media screen and (max-width: 767px) {
  .m-listFaq .item {
    padding: 20px 0;
  }

  .m-listFaq .question,
  .m-listFaq .answer {
    padding: 0 30px 0 0;
    font-size: 1.0em;
    background: url("../images/btn_plus_01.png") right 5px no-repeat;
    background-size: 15px auto;
  }

  .m-listFaq .question::before,
  .m-listFaq .answer::before {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 16px;
  }

  .m-listFaq .question span,
  .m-listFaq .answer span {
    float: left;
    display: block;
    padding: 3px 0 0 10px;
    width: calc( 100% - 26px );
  }

  .m-listFaq .answer {
    display: none;
    padding: 30px 0 0 0;
    font-weight: normal;
    font-size: 1.0em;
    background: none;
  }

  .m-listFaq .question.is-open {
    background: url("../images/btn_minus_01.png") right 11px no-repeat;
    background-size: 15px auto;
  }

  .m-listFaq .answer::before {
    content: "A";
    background-color: #FFC700;
  }
}

/* stripe list
   ========================================================================== */

.m-listStripe {
  border-top: 1px solid #E1E1E1;
}

.m-listStripe .item {
  border-bottom: 1px solid #E1E1E1;
  font-size: 0.87em;
  padding: 25px 30px;
}

.m-listStripe .item:nth-child(odd) {
  background-color: #F5F5F5;
}

@media screen and (max-width: 767px) {
  .m-listStripe .item {
    display: block;
    padding: 20px;
  }
}

/* contents list
   ========================================================================== */

.m-listContents {
  margin: -35px 0 0 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 101;
}

.m-listContents .item {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 281px;
  margin: 0 25px 25px 0;
}

.m-listContents .item:nth-child(4n) {
  margin: 0 0 25px 0;
}

.m-listContents .link {
  text-decoration: none;
}

.m-listContents .img {
  height: 125px;
  text-align: center;
  padding: 40px 0 0 0;
  transition: 0.5s ease;
}

.m-listContents .link:hover .img {
  opacity: 0.6;
}

.m-listContents .text {
  font-weight: bold;
  text-align: center;
  font-size: 1.13em;
  min-height: 90px;
  padding: 0 10px;
  transition: 0.5s ease;
}

.m-listContents .link:hover .text {
  opacity: 0.6;
}

.m-listContents .text span {
  display: inline-block;
}

.m-listContents .btn {
  display: block;
  font-size: 0.88em;
  font-weight: bold;
  text-align: center;
  padding: 24px 0;
  color: #fff;
  background: #000 url("../images/ico_arrow_yellow.svg") 90% 45% no-repeat;
  background-size: 9px auto;
  transition: 0.5s ease;
}

.m-listContents .link:hover .btn {
  color: #FFC700;
}

@media screen and (max-width: 1280px) {
  .m-listContents .item {
    width: 23.3%;
    margin: 0 2% 25px 0;
  }
}

@media screen and (max-width: 1100px) {
  .m-listContents .item,
  .m-listContents .item:nth-child(4n) {
    width: 32%;
    margin: 0 2% 25px 0;
  }

  .m-listContents .item:nth-child(3n) {
    margin: 0 0 25px 0;
  }
}

@media screen and (max-width: 767px) {
  .m-listContents {
    margin: -80px 15px 0 15px;
    flex-wrap: wrap;
  }

  .m-listContents .item,
  .m-listContents .item:nth-child(3n),
  .m-listContents .item:nth-child(4n) {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .m-listContents .img {
    height: 125px;
    padding: 45px 0 0 0;
  }

  .m-listContents .link:hover .img {
    opacity: 0.6;
  }

  .m-listContents .text {
    min-height: 70px;
  }

  .m-listContents .text span {
    display: inline-block;
  }

  .m-listContents .btn {
    padding: 18px 0;
  }
}

/* contents box
   ========================================================================== */

.m-boxContents {
  margin: -35px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 101;
}

.m-boxContents .box {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 60.5%;
  padding: 30px 45px;
}
.m-boxContents .box2 {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 36.5%;
  padding: 30px 45px;
}

@media screen and (max-width: 1280px) {
  .m-boxContents .box,.m-boxContents .box2 {
    width: 100%;
    margin: 0 0 30px 0;
  }

  .m-boxContents .box2 {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .m-boxContents .box,.m-boxContents .box2 {
    width: 100%;
    padding: 20px 15px;
    margin: 0 0 30px 0;
  }
}

/* member list
   ========================================================================== */

.m-listMember {
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.m-listMember.-center {
  justify-content: center;
}

.m-listMember .item {
  width: 21.1%;
  margin: 0 5.2% 30px 0;
}

.m-listMember .item:nth-child(4n) {
  margin: 0 0 30px 0;
}

.m-listMember.-center .item,
.m-listMember.-center .item:nth-child(4n) {
  width: 26%;
  margin: 0 5.2% 30px 0;
}

.m-listMember.-center .item:last-child {
  margin: 0 0 30px 0;
}

.m-listMember .img {
  margin:  0 0 15px 0;
}

.m-listMember .role {
  color: #777777;
  font-size: 0.75em;
  margin:  0 0 10px 0;
}

.m-listMember .name {
  font-weight: bold;
  border-bottom: 1px solid #E1E1E1;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}

.m-listMember .description {
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  .m-listMember,
  .m-listMember.-center {
    margin: 0 0 50px 0;
    justify-content: space-between;
  }

  .m-listMember .item,
  .m-listMember.-center .item {
    width: 47.8%;
    margin: 0 0 30px 0;
  }

  .m-listMember .item:nth-child(4n),
  .m-listMember.-center .item:last-child {
    margin: 0 0 30px 0;
  }
}

/* pick up list
   ========================================================================== */

.m-listPickUp {
  background-color: #555555;
  padding: 50px;
  margin: 0 0 60px 0;
}

.m-listPickUp .item {
  color: #fff;
  font-weight: bold;
  background: url('../images/ico_check_01.svg') left 0.4em no-repeat;
  margin: 0 0 20px 0;
  padding: 0 0 0 35px;
}

.m-listPickUp .item:nth-last-child(1) {
  margin: 0 0 0 0;
}

@media screen and (max-width: 767px) {
  .m-listPickUp {
    padding: 25px 15px;
    margin: 0 0 40px 0;
  }
}

/* index list
   ========================================================================== */
.m-boxIndex {
  background-color: #F5F5F5;
  padding: 30px;
}

.m-boxIndex .title {
  font-size: 0.8em;
  margin-bottom: 5px;
}

.m-boxIndex .item {
  margin-bottom: 5px;
}

.m-boxIndex .link {
  position: relative;
  display: inline-block;
  padding: 0 0 0 30px;
}

.m-boxIndex .link::before {
  position: absolute;
  content: '';
  display: block;
  width: 25px;
  height: 15px;
  left: 0;
  top: 16px;
  background: url(../images/ico_arrow_yellow.svg) left 50% no-repeat;
  background-size: 9px auto;
  transform:rotate(90deg);
}

@media screen and (max-width: 767px) {
  .m-boxIndex {
    padding: 15px;
  }
}

/* ==========================================================================//
//
// [components]
//
// ========================================================================== */

.c-heading.-lv01 {
  position: relative;
  text-align: center;
  font-size: 2.15em;
  padding: 120px 0 15px 0;
  margin: 0 0 45px 0;
}

.c-heading.-lv01.-alphabetical {
  font-weight: normal;
  letter-spacing: 0.1em;
  font-size: 2.6em;
}

.c-heading.-lv01::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  display: block;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #FFC700;
}

.c-heading.-lv01 span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .c-heading.-lv01 {
    font-size: 1.7em;
    padding: 0 0 10px 0;
    margin: 0 0 35px 0;
  }

  .c-heading.-lv01.-alphabetical {
    font-size: 2.15em;
  }
}

.c-heading.-lv02 {
  position: relative;
  font-size: 1.62em;
  border-bottom: 1px solid #E6E6E6;
  padding: 0 0 15px 0;
  margin: 0 0 40px 0;
}

.c-heading.-lv02::after {
  display: block;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #FFC700;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .c-heading.-lv02 {
    font-size: 1.45em;
    margin: 0 0 25px 0;
  }
}

.c-heading.-lv03 {
  padding: 0 0 0 18px;
  border-left: 2px solid #FFC700;
  font-size: 1.12em;
  margin: 0 0 35px 0;
}

@media screen and (max-width: 767px) {
  .c-heading.-lv03 {
    padding: 0 0 0 15px;
    font-size: 1.29em;
    margin: 0 0 15px 0;
  }
}

.c-lead {
  text-align: center;
}

.c-lead.-large {
  font-weight: bold;
  font-size: 1.37em;
}

@media screen and (max-width: 767px) {
  .c-lead {
    text-align: left;
	  margin: 0 15px;
  }

  .c-lead.-large {
    text-align: left;
    font-size: 1.1em;
  }
}

.c-title {
  font-weight: bold;
  font-size: 1.12em;
  background-color: #EFEBDF;
  margin: 0 0 25px 0;
  padding: 10px 15px;
}

.c-numbering {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translate(-50%,0);
  text-align: center;
  font-size: 4.35em;
  color: #FFC700;
}

@media screen and (max-width: 767px) {
  .c-numbering {
    top: -50px;
    font-size: 3.6em;
  }
}

@media screen and (max-width: 767px) {
}

.c-img {
  text-align: center;
  margin: 0 0 35px 0;
}

@media screen and (max-width: 767px) {
  .c-img {
    margin: 0 0 15px 0;
  }
}

.c-text {
  margin: 0 0 35px 0;
}

@media screen and (max-width: 767px) {
  .c-text {
    margin: 0 0 15px 0;
  }
}

.c-caption {
  margin: 0 0 15px 0;
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
}

.c-table {
  width: 100%;
  margin: 0 0 20px 0;
}

.c-table .table,
.c-table .table th,
.c-table .table td {
  border: 1px solid #E1E1E1;
  border-collapse: collapse;
}

.c-table .table th,
.c-table .table td {
  padding: 15px;
}

.c-table .table {
  width: 100%;
}

.c-table .table th {
  font-weight: bold;
  color: #fff;
  background-color: #999999;
}

.c-table .table .head {
  font-weight: bold;
  width: 200px;
  background-color: #F5F5F5;
  color: #333;
}

.c-table .table .body {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-table .table {
    width: 100%;
  }

  .c-table .table th {
    font-weight: bold;
    color: #fff;
    background-color: #999999;
  }

  .c-table .table .head {
    width: 100%;
    display: block;
    text-align: left;
    border-left: none;
    border-bottom: none;
  }

  .c-table .table .body {
    display: block;
    border-left: none;
    border-bottom: none;
  }
}

.c-list {
  margin: 0 0 30px 0;
}

.c-list .item {
  margin: 0 0 15px 0;
  padding: 0 0 0 15px;
  background: url("../images/ico_dot_01.png") left .7em no-repeat;
}

.c-note .item {
  font-size: 1.4rem;
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 5px;
}

.c-link[target="_blank"] {
  background: url("../images/ico_link_02.svg") right 45% no-repeat;
  padding: 0 20px 0 0;
  margin: 0 10px 0 0;
}

.c-link[href$=".pdf"] {
  background: url("../images/ico_pdf_01.png") right 40% no-repeat;
  padding: 0 20px 0 0;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 767px) {
}

.c-btn {
  text-align: center;
}

.c-btn .btn {
  width: 370px;
  display: inline-block;
  border: 1px solid #000;
  font-size: 0.87em;
  text-decoration: none;
  font-weight: bold;
  padding: 23px 0;
  transition: 0.5s ease;
}

.c-btn .btn.-small {
  width: 100%;
  font-size: 0.87em;
  font-weight: bold;
  padding: 8px 0;
}

.c-btn .btn:hover {
  color: #fff !important;
  background-color: #000 !important;
}

.c-btn.-more .btn {
  background: url('../images/btn_plus_01.png') 95% 50% no-repeat;
  background-size: 15px auto;
}

.c-btn.-more .btn.-close {
  background: url('../images/btn_minus_01.png') 95% 50% no-repeat;
  background-size: 15px auto;
}

.c-btn.-purchase .btn {
  color: #fff;
  border: none;
  background: #2EB975 url('../images/ico_link_03.svg') 95% 50% no-repeat;
}

.c-btn.-purchase .btn:hover {
  background: #6AD29F url('../images/ico_link_03.svg') 95% 50% no-repeat !important;
}

.c-btn.-more .btn:nth-child(2) {
  display: none;
}

.c-btn.-more .btn.is-open {
  display: none;
}

.c-btn.-more .btn.is-open:nth-child(2) {
  display: inline-block;
}

.c-btn.-outer .btn {
  color: #fff;
  background: #000 url('../images/ico_link_01.svg') 95% 50% no-repeat;
}

.c-btn.-outer .btn:hover {
  color: #fff;
  background: #4A4A4A url('../images/ico_link_01.svg') 95% 50% no-repeat !important;
}

.c-btn.-youtube .btn {
  color: #fff;
  width: 320px;
  padding: 15px 0;
  font-size: 0.789em;
  background: #CC0000 url('../images/ico_link_03.svg') 95% 50% no-repeat;
}

.c-btn.-youtube .btn:hover {
  color: #fff;
  background: #B13939 url('../images/ico_link_03.svg') 95% 50% no-repeat !important;
}

.c-btn.-next .btn {
  color: #fff;
  background: #000 url('../images/ico_arrow_yellow.svg') 95% 50% no-repeat;
  background-size: 12px auto;
}

.c-btn.-next .btn:hover {
  color: #000 !important;
  background: #fff url('../images/ico_arrow_yellow.svg') 95% 50% no-repeat !important;
  background-size: 12px auto !important;
}

@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    margin: 20px 0;
  }

  .c-btn .btn {
    width: 100%;
    padding: 15px 0;
  }

  .c-btn.-youtube .btn {
    max-width: 270px;
    padding: 10px 0;
  }
}



/* js helper
   ========================================================================== */

.js-accordionBody {
  display: none;
}

.js-tabBox:last-child {
  display: none;
}

.js-tabBox-child:last-child {
  display: none;
}

.js-tabSectionBox {
  display: none;
}

.js-tabSectionBox:nth-child(1) {
  display: block;
}

@media screen and (max-width: 767px) {
  body.is-menuOpen {
    height: 100vh;
    overflow: hidden;
  }
}
