@charset "UTF-8";
/* ----------------------------------------
 * /solution/
 ---------------------------------------- */
/* init */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  opacity: .6;
}

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

.flex-j_s {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

.flex-j_e {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-w_w {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

/* grid */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .row.gutter {
    margin-left: -24px;
  }
  .row.gutter > div {
    padding-left: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .row.gutter .span-s-12 + .span-s-12 {
    margin-top: 24px;
  }
}

/*.row .span-1*/
.span-1 {
  width: 8.33333%;
}

/*.row .span-2*/
.span-2 {
  width: 16.66667%;
}

/*.row .span-3*/
.span-3 {
  width: 25%;
}

/*.row .span-4*/
.span-4 {
  width: 33.33333%;
}

/*.row .span-5*/
.span-5 {
  width: 41.66667%;
}

/*.row .span-6*/
.span-6 {
  width: 50%;
}

/*.row .span-7*/
.span-7 {
  width: 58.33333%;
}

/*.row .span-8*/
.span-8 {
  width: 66.66667%;
}

/*.row .span-9*/
.span-9 {
  width: 75%;
}

/*.row .span-10*/
.span-10 {
  width: 83.33333%;
}

/*.row .span-11*/
.span-11 {
  width: 91.66667%;
}

/*.row .span-12*/
.span-12 {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  /*.row {*/
  .span-s-3 {
    width: 25% !important;
  }
  .span-s-4 {
    width: 33.33% !important;
  }
  .span-s-6 {
    width: 50% !important;
  }
  .span-s-12 {
    width: 100% !important;
  }
  /*}*/
}

/* text */
.ta-c {
  text-align: center !important;
}

.ta-l {
  text-align: left !important;
}

.ta-r {
  text-align: right !important;
}

.fw-n {
  font-weight: normal;
}

.fw-b {
  font-weight: bold;
}

.fc-blue {
  color: #009DD6;
}

.fc-blue2 {
  color: #495C72;
}

.fc-black {
  color: #000;
}

.fc-orange {
  color: #E87102;
}

.fs-l {
  font-size: 1.125em;
}

.fs-s {
  font-size: .875em;
}

.fs-ss {
  font-size: .750em;
}

/* clearfix */
.clear {
  clear: both;
  content: "";
  display: table;
}

/* width */
.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

.w-80 {
  width: 80%;
}

.w-70 {
  width: 70%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-40 {
  width: 40%;
}

.w-30 {
  width: 30%;
}

.w-20 {
  width: 20%;
}

.w-10 {
  width: 10%;
}

.w-0 {
  width: 0%;
}

/* margin */
.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-1em {
  margin-top: 1em !important;
}

.mt-2em {
  margin-top: 2em !important;
}

/* responsive */
@media print, screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

/* colors */
.fill-color_01 {
  background: #F2F7FA;
}

.fill-color_02 {
  background: #FCF9F5;
}

/* layout
------------------------------ */
/* max-wrap */
.l-inner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

/* navigation */
.nav-breadcrumbs {
  color: #808594;
}

.nav-breadcrumbs a {
  color: #009DD6;
}

.local-link {
  font-size: 16px;
  margin: 20px 0;
  text-align: center;
}

.local-link a {
  color: #A1A9AF;
  display: inline-block;
  padding-right: 20px;
  position: relative;
  text-decoration: none;
}

.local-link a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #A1A9AF;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -4px;
}

.local-link a.current {
  color: #E87102;
  font-weight: bold;
}

.local-link a.current::after {
  border-color: #E87102;
}

.local-link li {
  display: inline-block;
}

.local-link li + li {
  border-left: 1px solid #D6DCE6;
  margin-left: 2em;
  padding-left: 2em;
}

/* page wrap
------------------------------ */
/* page header */
.page-header {
  background-color: #CCC;
  height: 450px;
  margin-top: -56px;
  padding-top: 56px;
  position: relative;
}

.page-header_full {
  min-height: 555px;
}

.page-header_inner {
  padding: 32px 0;
}

.page-header_text {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 64px 40px 0;
  text-align: center;
  margin: 0 0 0 auto;
  max-width: 630px;
  min-height: 434px;
}

.page-header_summary, .page-header_title {
  color: #009DD6;
}

.page-header_title {
  font-size: 42px;
  font-weight: bold;
  margin-top: 16px;
}

.page-header_desc {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 28px;
}

.page-header .list-point {
  counter-reset: point;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 32px auto 0;
}

.page-header .list-point li {
  background: #FFF;
  border: 2px solid #009DD6;
  border-radius: 10px;
  color: #009DD6;
  counter-increment: point;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin: 0 12px;
  min-width: 154px;
}

.page-header .list-point li .label {
  background: #D1EBF9;
  border-radius: 10px 10px 0 0;
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 12px;
  margin: 0;
  padding: 4px 6px 6px;
}

.page-header .list-point li .label::after {
  content: counter(point);
  display: inline-block;
  font-size: 18px;
}

.page-header .list-point li .desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.25;
  padding: 9px 10px;
}

/* page main */
.page-main {
  font-size: 16px;
  line-height: 1.5;
}

/* section */
.section {
  padding: 64px 0 72px;
}

.section a {
  color: #E87102;
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

.section + .section {
  border-top: 1px solid #D6DCE6;
}

.section-title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 34px;
  text-align: center;
}

.section-lead {
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 52px;
  text-align: center;
}

/* title */
.title-sub {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 48px;
  position: relative;
  text-align: center;
}

.title-sub::after {
  background: #009DD6;
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  margin: 16px auto 0;
}

.title-lv3 {
  background: #F2F7FA;
  font-size: 22px;
  font-weight: bold;
  margin: 1.8em 0;
  padding: 20px;
  text-align: center;
}

/* btn */
.btn-wrap {
  margin-top: 56px;
}

a.btn {
  border: 2px solid #E87102;
  border-radius: 6px;
  color: #E87102;
  font-weight: bold;
  display: block;
  line-height: 1;
  max-width: 385px;
  margin: 0 auto;
  padding: 18px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

a.btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #E87102;
  border-right: 2px solid #E87102;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -5px;
}

a.btn.btn-pdf::after {
  background: url(/images/vlj/icon_link_pdf.png) no-repeat 50% 50%/contain;
  border: none;
  width: 20px;
  height: 24px;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  margin-top: -12px;
}

/* list */
.list-dot li,
.dot-item {
  padding-left: 18px;
  position: relative;
}

.list-dot li::before,
.dot-item::before {
  background: #808594;
  border-radius: 8px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: .5em;
  left: 0;
}

.list-dot_blue li::before,
.dot-item_blue::before {
  background-color: #009DD6;
}

.list-dot_orange li::before {
  background-color: #E87102;
}

.list-dot li + li {
  margin-top: 1em;
}

.dot-item {
  display: inline-block;
}

.note {
  color: #495C72;
}

.asterisk {
  padding-left: 1em;
  text-indent: -1em;
}

.asterisk::before {
  content: "※";
}

.note.asterisk {
  margin-top: .75em;
}

/* common unit */
/* box */
.box-item {
  background: #FFF;
  border: 1px solid #D6DCE6;
}

/* block */
.case-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.case-item_thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 476px;
}

.case-item_thumb span {
  display: block;
  padding: 0 12px;
  position: relative;
}

.case-item_thumb span:nth-child(odd) {
  margin-left: -12px;
}

.case-item_thumb span:nth-child(even) {
  margin-right: -12px;
}

.case-item_thumb span img {
  border: 1px solid #F2F7FA;
  display: block;
  width: 100%;
  height: auto;
}

.case-item_text {
  width: 485px;
}

.case-item_text .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
  /* navigation */
  .local-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    font-size: 13px;
    margin: 48px auto 0;
    padding: 0 13px;
  }
  .local-link a {
    background: #F7F7F7;
    border-radius: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0 20px;
    width: 100%;
  }
  .local-link a::after {
    position: absolute;
    top: auto;
    right: 50%;
    bottom: 13px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-top: 0;
    margin-left: -4px;
  }
  .local-link a.current {
    background: #FCF9F5;
  }
  .local-link li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 3px 1%;
    min-width: 32%;
  }
  .local-link li + li {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
  .local-link[data-length="4"] li {
    width: 48%;
  }
  /* page wrap
------------------------------ */
  /* page header */
  .page-header {
    background-color: #FFF;
    border-bottom: 1px solid #D6DCE6;
    height: auto;
    margin-top: 0;
    padding-top: 0;
  }
  .page-header_full {
    min-height: 0;
  }
  .page-header_inner {
    padding: 372px 24px 48px;
  }
  .page-header_text {
    background: #FFF;
    padding: 28px 28px 40px;
    min-height: 0;
  }
  .page-header_title {
    font-size: 32px;
    margin-top: 12px;
  }
  .page-header_desc {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
  }
  .page-header .list-point {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px auto 0;
  }
  .page-header .list-point li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 14px;
    margin: 8px 0;
    min-width: 0;
    width: 100%;
  }
  .page-header .list-point li .label {
    border-radius: 10px 0 0 10px;
    padding: 16px;
  }
  .page-header .list-point li .desc {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 16px;
    text-align: left;
  }
  /* page main */
  /* section */
  .section {
    padding: 56px 16px 64px;
  }
  .section-title {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 34px;
    text-align: center;
  }
  .section-lead {
    margin-bottom: 48px;
    text-align: left;
  }
  /* title */
  .title-sub {
    font-size: 26px;
    line-height: 1.23;
    margin-bottom: 40px;
  }
  .title-lv3 {
    font-size: 20px;
    margin: 1.8em 0 1em;
    padding: 16px;
  }
  /* btn */
  .btn-wrap {
    margin-top: 48px;
  }
  /* list */
  /* common unit */
  /* box */
  /* block */
  .case-item {
    display: block;
    margin: 0;
  }
  .case-item_thumb {
    width: 100%;
  }
  .case-item_thumb span {
    padding: 0 8px;
  }
  .case-item_thumb span:nth-child(odd) {
    margin-left: -8px;
  }
  .case-item_thumb span:nth-child(even) {
    margin-right: -8px;
  }
  .case-item_text {
    margin-top: 40px;
    width: 100%;
  }
  .case-item_text .title {
    font-size: 18px;
    margin-bottom: 1em;
  }
  .sp-scroll {
    overflow-x: auto;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .sp-scroll img {
    max-width: 100%;
    min-width: 1080px;
    vertical-align: top;
  }
}

/* ------------------------------
* consulting
------------------------------ */
.page-consulting .page-header {
  background: url(/images/consulting/img_pagehead.jpg) no-repeat 50% 50%/cover;
}

.page-consulting .section-ict .block-flow_01 {
  position: relative;
}

.page-consulting .section-ict .block-flow_01 .item {
  border: 2px solid #F2F7FA;
  padding: 20px;
  width: 444px;
}

.page-consulting .section-ict .block-flow_01 .item .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 0;
}

.page-consulting .section-ict .block-flow_01 .item .row img {
  width: 188px;
  margin-right: 24px;
}

.page-consulting .section-ict .block-flow_01 .item .row li {
  margin: .5em 0;
}

.page-consulting .section-ict .block-flow_01 .item:first-child:after {
  background: #D1EBF9;
  content: "";
  width: 192px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.page-consulting .section-ict .block-flow_02 {
  margin: 40px 0 56px;
  padding: 30px 40px 40px;
  position: relative;
}

.page-consulting .section-ict .block-flow_02 li {
  background: #FFF;
  border-radius: 6px;
  margin-top: 1em;
  padding: 20px;
  width: 314px;
}

.page-consulting .section-ict .block-flow_02::before, .page-consulting .section-ict .block-flow_02::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-consulting .section-ict .block-flow_02::before {
  border-style: solid;
  border-width: 34px 40px 0 40px;
  border-color: #D1EBF9 transparent transparent transparent;
  width: 0;
  height: 0;
  top: -36px;
}

.page-consulting .section-ict .block-flow_02::after {
  background: #D1EBF9;
  width: 40px;
  height: 85px;
  top: -118px;
}

.page-consulting .section-ict .block-flow_03 li {
  border: 2px solid #009DD6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 338px;
}

.page-consulting .section-ict .block-flow_03 li::before, .page-consulting .section-ict .block-flow_03 li::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-consulting .section-ict .block-flow_03 li::before {
  border-style: solid;
  border-width: 34px 40px 0 40px;
  border-color: #D1EBF9 transparent transparent transparent;
  width: 0;
  height: 0;
  top: -36px;
}

.page-consulting .section-ict .block-flow_03 li::after {
  background: #D1EBF9;
  width: 40px;
  height: 22px;
  top: -58px;
}

@media only screen and (max-width: 767px) {
  .page-consulting .page-header {
    background: url(/images/consulting/img_pagehead_sp.jpg) no-repeat 50% 0/768px auto;
  }
  .page-consulting .section-ict .block-flow_01 {
    position: relative;
  }
  .page-consulting .section-ict .block-flow_01 .item {
    width: 100%;
  }
  .page-consulting .section-ict .block-flow_01 .item .row {
    display: block;
    text-align: center;
  }
  .page-consulting .section-ict .block-flow_01 .item .row img {
    width: 55%;
    margin-right: 0;
  }
  .page-consulting .section-ict .block-flow_01 .item:first-child {
    margin-bottom: 16px;
    position: relative;
  }
  .page-consulting .section-ict .block-flow_01 .item:first-child:after {
    width: 40px;
    height: 16px;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 2px);
        -ms-transform: translate(-50%, 2px);
            transform: translate(-50%, 2px);
  }
  .page-consulting .section-ict .block-flow_02 {
    margin: 56px 0 56px;
    padding: 28px 16px 32px;
    position: relative;
  }
  .page-consulting .section-ict .block-flow_02 li {
    width: 100%;
  }
  .page-consulting .section-ict .block-flow_02::after {
    height: 22px;
    top: -56px;
  }
  .page-consulting .section-ict .block-flow_03 li {
    margin-bottom: 16px;
    width: 100%;
  }
  .page-consulting .section-ict .block-flow_03 li:nth-child(n+2)::before, .page-consulting .section-ict .block-flow_03 li:nth-child(n+2)::after {
    display: none;
  }
}

/* ------------------------------
* training
------------------------------ */
.page-training .page-header {
  background: url(/images/training/img_pagehead.jpg) no-repeat 50% 50%/cover;
}

.page-training .section-service .block-special_title {
  font-size: 18px;
  font-weight: bold;
  margin: 56px 0 32px;
  text-align: center;
}

.page-training .section-service .block-special .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.page-training .section-service .block-special .box-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 8px;
  min-height: 190px;
  width: 100%;
}

.page-training .section-service .block-special .label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  padding: 12px;
  height: 64px;
}

.page-training .section-service .block-special .desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin: auto 0;
  padding: 20px 16px;
}

.page-training .section-service .block-special .text-solve {
  font-size: 14px;
  font-weight: bold;
  margin-top: auto;
  padding: 10px;
  text-align: center;
}

.page-training .section-service .block-special_01,
.page-training .section-service .block-special_02 {
  margin: 0 -8px;
  position: relative;
}

.page-training .section-service .block-special_01 {
  width: 552px;
}

.page-training .section-service .block-special_01 .label {
  color: #FFF;
}

.page-training .section-service .block-special_01 .item:nth-child(1) .label {
  background: #F08948;
}

.page-training .section-service .block-special_01 .item:nth-child(2) .label {
  background: #E08AB7;
}

.page-training .section-service .block-special_01 .item:nth-child(3) .label {
  background: #A582BA;
}

.page-training .section-service .block-special_01 .text-solve {
  background: #FCF1E4;
}

.page-training .section-service .block-special_02 {
  width: 528px;
}

.page-training .section-service .block-special_02 .label {
  background: #EDF1FA;
  color: #366ACC;
}

.page-training .section-service .block-special_02 .label span {
  display: inline-block;
  vertical-align: middle;
}

.page-training .section-service .block-special_02 .label span + div {
  border-left: 1px solid #366ACC;
  margin-left: 10px;
  padding-left: 10px;
}

.page-training .section-service .block-special_02 .text-solve {
  background: #366ACC;
  color: #FFF;
}

.page-training .section-service .list-lineup {
  counter-reset: lineup;
}

.page-training .section-service .list-lineup .box-item {
  display: table;
  counter-increment: lineup;
  margin-top: 24px;
  width: 100%;
}

.page-training .section-service .list-lineup .box-item > div {
  display: table-cell;
  padding: 32px;
  vertical-align: middle;
}

.page-training .section-service .list-lineup .box-item .label {
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  padding-right: 16px;
  width: 299px;
}

.page-training .section-service .list-lineup .box-item .label::before {
  background: #FFF;
  border-radius: 38px;
  color: #009DD6;
  content: counter(lineup);
  display: inline-block;
  font-size: 22px;
  margin-right: 12px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  vertical-align: middle;
}

.page-training .section-service .list-lineup .box-item:nth-child(1) .label {
  background-color: #5EA9E2;
}

.page-training .section-service .list-lineup .box-item:nth-child(1) .label::before {
  color: #5EA9E2;
}

.page-training .section-service .list-lineup .box-item:nth-child(2) .label {
  background-color: #71BFC7;
}

.page-training .section-service .list-lineup .box-item:nth-child(2) .label::before {
  color: #71BFC7;
}

.page-training .section-service .list-lineup .box-item:nth-child(3) .label {
  background-color: #A9C461;
}

.page-training .section-service .list-lineup .box-item:nth-child(3) .label::before {
  color: #A9C461;
}

.page-training .section-service .list-lineup .box-item:nth-child(4) .label {
  background-color: #F4BC51;
}

.page-training .section-service .list-lineup .box-item:nth-child(4) .label::before {
  color: #F4BC51;
}

.page-training .section-service .list-lineup .box-item:nth-child(5) .label {
  background-color: #F08948;
}

.page-training .section-service .list-lineup .box-item:nth-child(5) .label::before {
  color: #F08948;
}

.page-training .section-service .list-lineup .box-item:nth-child(6) .label {
  background-color: #E08AB7;
}

.page-training .section-service .list-lineup .box-item:nth-child(6) .label::before {
  color: #E08AB7;
}

.page-training .section-service .list-lineup .box-item:nth-child(7) .label {
  background-color: #A582BA;
}

.page-training .section-service .list-lineup .box-item:nth-child(7) .label::before {
  color: #A582BA;
}

@media only screen and (max-width: 767px) {
  .page-training .page-header {
    background: url(/images/training/img_pagehead_sp.jpg) no-repeat 50% 0/768px auto;
  }
  .page-training .section-service .block-special_title {
    font-size: 17px;
    margin: 48px 0 40px;
  }
  .page-training .section-service .block-special .item {
    margin-bottom: 16px;
  }
  .page-training .section-service .block-special .box-item {
    display: table;
    margin: 0;
    min-height: 0;
    width: 100%;
  }
  .page-training .section-service .block-special .label {
    display: table-cell;
    width: 39%;
    height: auto;
    text-align: center;
    vertical-align: middle;
  }
  .page-training .section-service .block-special .desc {
    display: table-cell;
    padding: 20px;
    vertical-align: middle;
  }
  .page-training .section-service .block-special_01,
  .page-training .section-service .block-special_02 {
    margin: 0;
  }
  .page-training .section-service .block-special_01 {
    width: 100%;
  }
  .page-training .section-service .block-special_02 {
    margin-top: 40px;
    width: 100%;
  }
  .page-training .section-service .block-special_02 .label {
    background: #EDF1FA;
    color: #366ACC;
  }
  .page-training .section-service .block-special_02 .label span {
    display: inline-block;
    border-bottom: 1px solid #366ACC;
  }
  .page-training .section-service .block-special_02 .label span + div {
    border-left: none;
    margin: 6px 0 0 0;
    padding: 6px 0 0 0;
  }
  .page-training .section-service .block-special_02 .label p {
    line-height: 1.25;
  }
  .page-training .section-service .block-special_02 .label p + p {
    margin-top: .5em;
  }
  .page-training .section-service .list-lineup .box-item {
    display: block;
    margin-top: 16px;
  }
  .page-training .section-service .list-lineup .box-item > div {
    display: block;
    padding: 16px;
  }
  .page-training .section-service .list-lineup .box-item .label {
    padding-right: 0;
    width: 100%;
  }
  .page-training .section-service .list-lineup .box-item .label::before {
    border-radius: 32px;
    font-size: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .page-training .section-service .list-lineup + .note {
    text-align: left !important;
  }
}

/* ------------------------------
* supportstaff
------------------------------ */
.page-supportstaff .page-header {
  background: url(/images/supportstaff/img_pagehead.jpg) no-repeat 50% 50%/cover;
}

.page-supportstaff .block-service {
  counter-reset: service;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) {
	.page-supportstaff .block-service, .l-inner {
		width: 1080px;
	}

}


.page-supportstaff .block-service .box-item {
  border-width: 2px;
  counter-increment: service;
  padding: 16px;
}

.page-supportstaff .block-service .box-item .label {
  color: #009DD6;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 1em;
}

.page-supportstaff .block-service .box-item .label::before {
  border: 2px solid #009DD6;
  border-radius: 24px;
  content: counter(service);
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}

.page-supportstaff .block-service .box-item li {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
}

.page-supportstaff .block-service .box-item li + li {
  margin-top: .5em;
}

.page-supportstaff .block-service .box-item li:before {
  content: "・";
}

.page-supportstaff .block-service .box-item_01 {
  width: 200px;
}

.page-supportstaff .block-service .box-item_02, .page-supportstaff .block-service .box-item_03, .page-supportstaff .block-service .box-item_04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 431px;
}

.page-supportstaff .block-service .box-item_02 .label, .page-supportstaff .block-service .box-item_03 .label, .page-supportstaff .block-service .box-item_04 .label {
  margin-bottom: 0;
  margin-right: 20px;
}

.page-supportstaff .block-service .box-item_02 ul, .page-supportstaff .block-service .box-item_03 ul, .page-supportstaff .block-service .box-item_04 ul {
  margin: 0 0 0 auto;
  width: 245px;
}

.page-supportstaff .block-service .box-item_03, .page-supportstaff .block-service .box-item_04 {
  margin-top: 16px;
}

.page-supportstaff .block-service .box-item_05 {
  width: 172px;
}

.page-supportstaff .block-service .box-item_06 {
  border-color: #009DD6;
  color: #009DD6;
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-supportstaff .block-service .box-item_arrow {
  position: relative;
}

.page-supportstaff .block-service .box-item_arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 18px;
  border-color: transparent transparent transparent #009DD6;
  position: absolute;
  top: 50%;
  right: -32px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-supportstaff .block-advantage {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-supportstaff .block-advantage .box-item {
  width: 338px;
}

.page-supportstaff .block-advantage .text {
  padding: 30px;
}

.page-supportstaff .block-advantage .title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.page-supportstaff .block-advantage .desc {
  margin-top: 24px;
}

.page-supportstaff .block-example {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.page-supportstaff .block-example .box-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding: 20px;
}

.page-supportstaff .block-example .box-item_01 {
  border-width: 2px;
  width: 358px;
}

.page-supportstaff .block-example .box-item_01 img {
  width: 124px;
  margin-right: 20px;
}

.page-supportstaff .block-example .box-item_02 {
  border: 2px solid #009DD6;
  width: 490px;
}

.page-supportstaff .block-example .box-item_02 img {
  width: 276px;
  margin-left: 8px;
}

.page-supportstaff .block-example .box-item ul {
  width: 160px;
}

.page-supportstaff .block-example .img-arrow {
  margin: auto 16px;
  width: 199px;
}

@media only screen and (max-width: 767px) {
  .page-supportstaff .page-header {
    background: url(/images/supportstaff/img_pagehead_sp.jpg) no-repeat 50% 0/768px auto;
  }
  .page-supportstaff .block-service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-supportstaff .block-service .box-item_01 {
    margin-bottom: 44px;
    width: 100%;
  }
  .page-supportstaff .block-service .box-item_02, .page-supportstaff .block-service .box-item_03, .page-supportstaff .block-service .box-item_04 {
    display: block;
    margin-bottom: 16px;
    width: 100%;
  }
  .page-supportstaff .block-service .box-item_02 .label, .page-supportstaff .block-service .box-item_03 .label, .page-supportstaff .block-service .box-item_04 .label {
    display: block;
    margin-bottom: 1em;
    margin-right: 0;
  }
  .page-supportstaff .block-service .box-item_02 ul, .page-supportstaff .block-service .box-item_03 ul, .page-supportstaff .block-service .box-item_04 ul {
    margin: 0;
    width: 100%;
  }
  .page-supportstaff .block-service .box-item_05 {
    width: 100%;
  }
  .page-supportstaff .block-service .box-item_06 {
    margin-top: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-supportstaff .block-service .box-item_04 li, .page-supportstaff .block-service .box-item_05 li {
    display: inline-block;
    margin-top: 0.5em;
    vertical-align: top;
    width: 45%;
  }
  .page-supportstaff .block-service .box-item_arrow {
    position: relative;
  }
  .page-supportstaff .block-service .box-item_arrow::after {
    border-width: 18px 16px 0 16px;
    border-color: #009DD6 transparent transparent transparent;
    top: 100%;
    right: none;
    left: 50%;
    -webkit-transform: translate(-50%, 14px);
        -ms-transform: translate(-50%, 14px);
            transform: translate(-50%, 14px);
  }
  .page-supportstaff .block-advantage {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-supportstaff .block-advantage .box-item {
    margin-bottom: 30px;
    width: 100%;
  }
  .page-supportstaff .block-example {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-supportstaff .block-example .box-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
  }
  .page-supportstaff .block-example .box-item_01 {
    width: 100%;
  }
  .page-supportstaff .block-example .box-item_01 img {
    margin: 0 auto;
  }
  .page-supportstaff .block-example .box-item_02 {
    width: 100%;
  }
  .page-supportstaff .block-example .box-item_02 img {
    margin: 0 auto;
  }
  .page-supportstaff .block-example .box-item ul {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
    width: 70%;
  }
  .page-supportstaff .block-example .img-arrow {
    margin: 16px;
    text-align: center;
    width: 100%;
  }
  .page-supportstaff .block-example .img-arrow img {
    width: 78%;
  }
}

/* ------------------------------
* dr-tamotsukun
------------------------------ */
.page-drtamotsukun .page-header {
  background: url(/images/dr-tamotsukun/img_pagehead.jpg) no-repeat 50% 50%/cover;
}

.page-drtamotsukun .page-header_text {
  background: none;
  max-width: 691px;
  padding-top: 38px;
}

.page-drtamotsukun .page-header_text .row {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.page-drtamotsukun .page-header_text .row span {
  width: 111px;
  margin-right: 22px;
}

.page-drtamotsukun .page-header_title img {
  width: 548px;
}

.page-drtamotsukun .list-point li {
  background: none;
  border: none;
  display: block;
}

/* lineup */
.page-drtamotsukun .block-lineup {
  margin-top: 64px;
}
.page-drtamotsukun .block-lineup_title {
  background: #F2F7FA;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 40px;
  padding: .75em 1em;
  text-align: center;
}
.page-drtamotsukun .graph-lineup {
  justify-content: space-between;
}
.page-drtamotsukun .box-graph {
  background: #F2F7FA;
  border-radius: 6px;
  text-align: center;
  max-width: 524px;
  padding: 0 0 30px;
}
.page-drtamotsukun .box-graph_title {
  background: #5EA9E2;
  border-radius: 6px 6px 0 0;
  color: #FFF;
  font-size: 24px;
  line-height: 1.2;
  padding: .8em 1em;
  position: relative;
}
.page-drtamotsukun .box-graph_title span {
  display: block;
  font-size: 15px;
}
.page-drtamotsukun .box-graph_title .icon {
  position: absolute;
  top: -34px;
  right: -36px;
  width: 87px;
}
.page-drtamotsukun .box-graph_img img {
  max-width: 476px;
}
.page-drtamotsukun .box-graph .list-dot {
  margin: 26px auto;
}
.page-drtamotsukun .box-graph .list-dot li::before {
  width: 6px;
  height: 6px;
  top: 50%;
  margin-top: -3px;
}
.page-drtamotsukun .box-graph .list-dot li {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  margin: 0 .5em;
  padding-left: 14px;
}
.page-drtamotsukun .box-graph.type-basic { background-color: #F3F8E4; }
.page-drtamotsukun .box-graph.type-basic .box-graph_title { background-color: #A9C461; }
.page-drtamotsukun .box-graph.type-basic .list-dot li::before { background-color: #A9C461; }

.page-drtamotsukun .block-lineup .lineup-compare {
  margin: 72px auto 0;
  max-width: 853px;
}
.page-drtamotsukun .block-lineup .note-wrap {
  counter-reset: note;
}
.page-drtamotsukun .block-lineup .note.asterisk.num {
  counter-increment: note;
}
.page-drtamotsukun .block-lineup .note.asterisk.num::before {
  content: "※" counter(note);
}

.page-drtamotsukun .table-lineup {
  width: 100%;
}
.page-drtamotsukun .table-lineup thead th.label {
  background: #5EA9E2;
  border-radius: 6px 6px 0 0;
  color: #FFF;
  font-weight: bold;
  padding: 1em;
  width: 33.65%;
}
.page-drtamotsukun .table-lineup thead th.label.type-basic {
  background-color: #A9C461;
}
.page-drtamotsukun .table-lineup thead th.label.type-basic div {
  position: relative;
}
.page-drtamotsukun .table-lineup thead th.label-plan {
  background: #F2F7FA;
  border: 1px solid #D6DCE6;
  font-size: 14px;
  padding: .5em 1em;
}
.page-drtamotsukun .table-lineup thead th.label-plan.type-basic {
  background-color: #F3F8E4;
}
.page-drtamotsukun .table-lineup tbody th {
  background: #F2F2F2;
  border: 1px solid #D6DCE6;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  padding: .75em 1.5em;
}
.page-drtamotsukun .table-lineup tbody th.label {
  font-weight: normal;
}
.page-drtamotsukun .table-lineup tbody th.label-cover {
  letter-spacing: .1em;
  width: 2em;
  padding: 1em .75em;
  vertical-align: middle; 
}
.page-drtamotsukun .table-lineup tbody th .rl {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.page-drtamotsukun .table-lineup tbody td {
  border: 1px solid #D6DCE6;
  padding: .5em 1.25em;
  text-align: center;
}

/* solution */
.page-drtamotsukun .section-solution .block-problem {
  border: 1px solid #1C9DD7;
  border-radius: 18px;
  padding: 24px 32px 44px;
  margin-bottom: 24px;
}

.page-drtamotsukun .section-solution .block-problem_title {
  background: #009DD6;
  border-radius: 26px;
  color: #FFF;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 32px;
  padding: .1em 0;
  text-align: center;
}
.page-drtamotsukun .section-solution .block-problem ul {
  justify-content: space-between;
  max-width: 896px;
  margin: 0 auto;
}
.page-drtamotsukun .section-solution .block-problem li {
  width: 256px;
}
.page-drtamotsukun .section-solution .block-problem img {
  max-width: 256px;
}

/* feature */
.page-drtamotsukun .section-feature {
  border-top: none;
}

.page-drtamotsukun .section-feature .box-item {
  border: 1px solid #1C9DD7;
  border-radius: 18px;
  margin-top: 32px;
  width: 100%;
}
.page-drtamotsukun .note-wrap .note.asterisk {
  margin-top: .25em;
}

.page-drtamotsukun .section-feature .box-item_head {
  border-bottom: 1px solid #D6DCE6;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 40px 48px;
}

.page-drtamotsukun .section-feature .box-item_head__num {
  color: #009DD6;
  font-weight: bold;
  width: 147px;
  flex-shrink: 0;
}

.page-drtamotsukun .section-feature .box-item_head__num span {
  display: inline-block;
  line-height: 1;
  vertical-align: -.1em;
}

.page-drtamotsukun .section-feature .box-item_head .point {
  border-bottom: 2px solid #009DD6;
  letter-spacing: .1em;
  margin-right: 3px;
  padding-bottom: 6px;
}

.page-drtamotsukun .section-feature .box-item_head .num {
  font-size: 44px;
}

.page-drtamotsukun .section-feature .box-item_head__title {
  font-size: 16px;
}

.page-drtamotsukun .section-feature .box-item_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: .75em;
}

.page-drtamotsukun .section-feature .box-item_catch {
  color: #009DD6;
  font-weight: bold;
  margin-bottom: .5em;
}

.page-drtamotsukun .section-feature .box-item_main {
  max-width: 852px;
  margin: 40px auto;
}

.page-drtamotsukun .section-feature .box-item_image {
  background: #FCF9F5;
  border-radius: 6px;
  color: #E87102;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 32px;
  padding: 40px 64px;
}

.page-drtamotsukun .section-feature .box-item_01 ul { position: relative; margin-bottom: 106px; justify-content: space-between; }
.page-drtamotsukun .section-feature .box-item_01 ul::after {
  background: url(/images/dr-tamotsukun/arrow_feature_01.png) no-repeat 0 0 / contain;
  content: "";
  display: block;
  width: 112px;
  height: 87px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.page-drtamotsukun .section-feature .box-item_01 ul li { width: 256px; }
.page-drtamotsukun .section-feature .box-item_01 .thumb-after img { max-width: 171px; margin: 1em 0; }
.page-drtamotsukun .section-feature .box-item_03 .box-item_image { padding: 40px 36px; }
.page-drtamotsukun .section-feature .box-item_03 .span-6.row { align-items: center; padding-left: 56px; }
.page-drtamotsukun .section-feature .box-item_03 img { max-width: 128px; }
.page-drtamotsukun .section-feature .box-item_03 .list-dot { margin-left: 32px; }
.page-drtamotsukun .section-feature .box-item_04 img { max-width: 581px; }
.page-drtamotsukun .section-feature .block-cost .thumb { margin-right: 60px; width: 306px; }
.page-drtamotsukun .section-feature .block-cost li:first-child { margin-top: 0; }


.page-drtamotsukun .note-wrap {
  font-feature-settings: "palt";
  margin-top: 24px;
}

.page-drtamotsukun .note-wrap .asterisk::before {
  margin-right: .5em;
}


/* movie */
.block-movie {
  max-width: 640px;
  margin: 0 auto 3em;
  position: relative;
}
.block-movie video {
  max-width: 100%;
}
.page-drtamotsukun .block-movie {
  max-width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-drtamotsukun .block-movie .wrap-movie {
  max-width: 524px;
}

.page-drtamotsukun .read_text {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  text-align: center;
}

/* common */
.page-drtamotsukun .section+.section.fill-color_01,
.page-drtamotsukun .section.fill-color_01+.section {
  border-top: none;
}

/* guide */
.page-drtamotsukun .section-guide .section-lead { font-size: 20px; }
.page-drtamotsukun .section-guide .wrap-image {
  position: relative;
}

.page-drtamotsukun .section-guide .wrap-image .parts {
  position: absolute;
  top: -74px;
  left: -53px;
  width: 159px;
}

/* case */
.page-drtamotsukun .case-item {
  align-items: flex-start;
}
.page-drtamotsukun .case-item_thumb span img {
  border-color: #D6DCE6;
  max-width: 226px;
}
.page-drtamotsukun .case-item .tag {
  background: #009DD6;
  border-radius: 6px;
  color: #FFF;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
  padding: .45em .75em .55em;
}
.page-drtamotsukun .case-item .tag .num {
  font-size: 20px;
  margin-left: .25em;
}
.page-drtamotsukun .case-item + .case-item {
  border-top: 1px solid #D6DCE6;
  margin-top: 40px;
  padding-top: 40px;
}
.page-drtamotsukun .case-item a.btn { margin: 0; }


@media only screen and (max-width: 767px) {
  .page-drtamotsukun .page-header {
    background: url(/images/dr-tamotsukun/img_pagehead_sp.jpg) no-repeat 50% 0/768px auto;
  }

  .page-drtamotsukun .page-header_text {
    background: #FFF;
    max-width: 691px;
    padding-top: 38px;
  }

  .page-drtamotsukun .page-header_text .row {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .page-drtamotsukun .page-header_text .row span {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 12px;
    width: 14%;
  }

  .page-drtamotsukun .page-header_summary {
    text-align: center;
  }

  .page-drtamotsukun .page-header_title img {
    width: 100%;
  }

  .page-drtamotsukun .page-header_desc {
    text-align: center !important;
  }

  .page-drtamotsukun .page-header .list-point {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .page-drtamotsukun .page-header .list-point li {
    margin: 0 4px;
  }

  /* lineup */
  .page-drtamotsukun .block-lineup {
    margin-top: 32px;
  }
  .page-drtamotsukun .block-lineup_title {
    font-size: 20px;
    line-height: 1.3;
  }

  .page-drtamotsukun .box-graph_title .icon {
    top: -16px;
    right: -10px;
    width: 55px;
  }
  .page-drtamotsukun .box-graph .list-dot {
    margin: 24px auto 16px;
    width: 70%;
  }
  .page-drtamotsukun .box-graph .list-dot li {
    width: 100%;
    text-align: left;
  }
  .page-drtamotsukun .box-graph .list-dot li + li {
    margin-top: 10px;
  }
  
  .page-drtamotsukun .box-graph .box-graph_img { padding: 0 16px ;}
  .page-drtamotsukun .box-graph img { max-width: 100%; }
  .page-drtamotsukun .box-graph.type-basic { margin-top: 24px; }
  .page-drtamotsukun .block-lineup .lineup-compare { margin-top: 24px; }
  .page-drtamotsukun .table-lineup { font-feature-settings: "palt"; }
  .page-drtamotsukun .table-lineup thead th.label { font-size: 13px; line-height: 1; padding: .95em .5em; white-space: nowrap; vertical-align: middle; width: 33%; }
  .page-drtamotsukun .table-lineup thead th.label-plan { font-size: 10px; }
  .page-drtamotsukun .table-lineup thead th.label-plan span { font-size: 13px; font-weight: bold; white-space: nowrap; }
  .page-drtamotsukun .table-lineup tbody th,
  .page-drtamotsukun .table-lineup tbody td.timing { font-size: 13px; line-height: 1.2; }
  .page-drtamotsukun .table-lineup tbody th { padding: .95em 1.05em; vertical-align: middle; }
  .page-drtamotsukun .table-lineup tbody td { vertical-align: middle;  }
  .page-drtamotsukun .table-lineup tbody th.label-cover { padding: 1em .5em; }
  .page-drtamotsukun .table-lineup tbody th.label { padding: .95em .75em; }
  .page-drtamotsukun .table-lineup tbody td.timing { padding: .75em .5em; }

  /* solution */
  .page-drtamotsukun .section-solution .block-problem {
    border-radius: 18px;
    margin-bottom: 0;
    padding: 17px 20px 16px;
  }

  .page-drtamotsukun .section-solution .block-problem_title {
    border-radius: 14px;
    font-size: 28px;
    margin-bottom: 12px;
    padding: 16px;
    line-height: 1.28;
  }

  .page-drtamotsukun .section-solution .block-problem li {
    padding: 12px 0;
    text-align: center;
  }

/* feature */
  .page-drtamotsukun .section-feature .box-item {
    display: block;
    margin-top: 24px;
  }

  .page-drtamotsukun .section-feature .box-item_head,
  .page-drtamotsukun .section-feature .box-item_main {
    display: block;
  }

  .page-drtamotsukun .section-feature .box-item_head {
    padding: 30px 0 0;
    text-align: center;
    width: 100%;
  }

  .page-drtamotsukun .section-feature .box-item_head__num {
    width: auto;
  }
  .page-drtamotsukun .section-feature .box-item_head .point {
    vertical-align: middle;
  }
  .page-drtamotsukun .section-feature .box-item_head__title {
    padding: 24px;
    text-align: left;
  }
  .page-drtamotsukun .section-feature .box-item_title {
    font-size: 20px;
    margin-bottom: 26px;
    text-align: center;
  }
  .page-drtamotsukun .section-feature .box-item_catch {
    margin-bottom: 1em;
  }

  .page-drtamotsukun .section-feature .box-item_main {
    margin: 0;
    padding: 24px;
  }
  .page-drtamotsukun .section-feature .box-item_image {
    padding: 30px 20px;
  }


  .page-drtamotsukun .read_text {
    font-size: 26px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-drtamotsukun .section-feature .box-item_01 .box-item_main li { text-align: center; }
  .page-drtamotsukun .section-feature .box-item_01 .box-item_main li + li { margin-top: 24px; }
  .page-drtamotsukun .section-feature .box-item_01 img { max-width: 256px; }
  .page-drtamotsukun .section-feature .box-item_02 .box-item_main .fs-l { text-align: left !important; }
  .page-drtamotsukun .section-feature .box-item_02 .block-cost .thumb { margin-bottom: 24px; text-align: center; }
  .page-drtamotsukun .section-feature .box-item_02 .block-cost .thumb img { max-width: 255px; }
  .page-drtamotsukun .section-feature .box-item_03 img { width: 92px; }
  .page-drtamotsukun .section-feature .box-item_03 .list-dot { margin-left: 24px; }
  .page-drtamotsukun .section-feature .box-item_03 .box-item_image { padding: 40px 20px; }
  .page-drtamotsukun .section-feature .box-item_03 .box-item_image div + div { margin-top: 12px; }
  .page-drtamotsukun .section-feature .box-item_03 .list-dot li + li { margin-top: .5em; }
  .page-drtamotsukun .section-feature .box-item_03 .span-6.row { padding-left: 0; }
  .page-drtamotsukun .section-feature .box-item_04 img { max-width: 100%; margin-bottom: 32px; }


  .page-drtamotsukun .section-guide .wrap-image { margin-top: 56px; }
  .page-drtamotsukun .section-guide .wrap-image .parts {
    top: -50px;
    left: 0;
    width: 141px;
  }
  .page-drtamotsukun .case-item .tag {
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: .75em;
  }
  .page-drtamotsukun .case-item .tag .num {
    font-size: 18px;
  }
  .page-drtamotsukun .case-item_thumb.col-1  {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-drtamotsukun .case-item_thumb > span {
    max-width: calc(50% + 8px);
    flex-grow: 0;
  }

  .page-drtamotsukun .block-movie .wrap-movie + .wrap-movie {
    margin-top: 1em;
  }

}

/* float btn */
.common-float {
  width: 48px;
  position: fixed;
  top: 254px;
  right: 0;
}

.common-float a {
  background: #E87102;
  color: #FFF;
  display: block;
  font-size: 13px;
  font-weight: bold;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  width: 48px;
}

.common-float a span {
  display: inline-block;
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.common-float a span::before {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
}

.common-float_btn:first-child a {
  border-radius: 6px 0 0 0;
}

.common-float_btn:last-child a {
  border-radius: 0 0 0 6px;
}

.common-float_btn + .common-float_btn {
  margin-top: 1px;
}

.common-float_btn.btn-contact span::before {
  background-image: url(/images/common/icon_contact_wh.png);
}

.common-float_btn.btn-download span::before {
  background-image: url(/images/common/icon_download_wh.png);
}

@media only screen and (max-width: 767px) {
  .common-float {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .common-float a {
    padding: 10px;
    width: 100%;
  }
  .common-float a span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .common-float a span::before {
    width: 23px;
    height: 23px;
    margin-right: 8px;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .common-float_btn {
    width: calc(50% - 1px);
  }
  .common-float_btn:first-child a,
  .common-float_btn:last-child a {
    border-radius: 0;
  }
  .common-float_btn + .common-float_btn {
    margin-top: 0;
    margin-left: 1px;
  }
}
