@charset "UTF-8";
/* CSS Document */
/*===============================================
 reset
===============================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

section, article, aside, hgroup, header, footer, nav, dialog, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.alt {
  display: none;
}

.break {
  word-wrap: break-word;
}

/*===============================================
 responsive element
===============================================*/
.pc-inline {
  display: inline !important;
}

.pc-inline-block {
  display: inline-block !important;
}

.pc-block {
  display: block !important;
}

.sp-inline,
.sp-inline-block,
.sp-block {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .pc-inline,
  .pc-inline-block,
  .pc-block {
    display: none !important;
  }
  .sp-inline {
    display: inline !important;
  }
  .sp-inline-block {
    display: inline-block !important;
  }
  .sp-block {
    display: block !important;
  }
}

/*===============================================
 fonts
===============================================*/
@font-face {
  font-family: YuGothic;
  src: local("Yu Gothic Medium"), local("Yu Gothic");
  font-weight: 500;
}

@font-face {
  font-family: YuGothic;
  src: local("Yu Gothic Bold"), local("Yu Gothic");
  font-weight: bold;
}

html {
  font-family: YuGothic, "メイリオ",sans-serif;
  font-size: 10px;
}

@media only screen and (max-width: 750px) {
  html {
    font-size: 2.66667vw;
  }
}

html.fs-large {
  font-size: 12px;
}

@media only screen and (max-width: 750px) {
  html.fs-large {
    font-size: 2.66667vw;
  }
}

a {
  color: #000;
}

a[href]:hover {
  opacity: 0.7;
  text-decoration: none;
}

/*===============================================
 layout
===============================================*/
html {
  min-width: 1150px;
  height: 100%;
  overflow-y: scroll;
}

@media only screen and (max-width: 750px) {
  html {
    min-width: 0;
  }
}

/*===============================================
 header
===============================================*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  min-width: 1150px;
  height: 51px;
  background-color: #15a956;
}

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

.header .title {
  position: absolute;
  left: 26px;
  top: 0;
  color: #fff;
  font-size: 12px;
  line-height: 51px;
}

.header .header-inquiry {
  float: right;
}

.header .header-inquiry a {
  display: block;
  width: 61px;
  height: 51px;
  background: #eeeeee url("../img/common/header_inquiry.png") no-repeat;
}

.header .header-fontsize {
  float: right;
}

.header .header-fontsize a {
  display: block;
  width: 61px;
  height: 51px;
  background: #c7c7c7 url("../img/common/header_fontsize.png") no-repeat;
}

.header .header-nav {
  float: right;
}

.header .header-nav ul {
  font-size: 15px;
  line-height: 51px;
}

.header .header-nav ul li {
  display: inline-block;
}

.header .header-nav ul li a {
  display: block;
  padding: 0 18px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.header .header-nav ul li.business {
  background-color: #fff;
}

.header .header-nav ul li.business a {
  background-color: #daf65c;
  color: #15a956;
}

.header .header-nav ul li.business a:after {
  display: inline-block;
  width: 28px;
  height: 26px;
  margin-left: 12px;
  background: url("../img/common/header_business.png");
  vertical-align: -6px;
  content: "";
}

html.fs-large .header .header-fontsize a {
  background-image: url("../img/common/header_fontsize_minus.png");
}

/*===============================================
 footer
===============================================*/
.footer {
  position: relative;
  background-color: #eee;
}

.footer .footer-catch {
  position: absolute;
  left: 0;
  top: -274px;
  width: 100%;
  height: 382px;
  background: url("../img/common/footer_catch.png") no-repeat center top;
}

@media only screen and (max-width: 750px) {
  .footer .footer-catch {
    top: 0;
    margin-top: -35.73333%;
    height: 0;
    padding-top: 52.53333%;
    background-image: url("../img/common/footer_catch_sp.png");
    background-size: 100% auto;
  }
}

.footer .container {
  position: relative;
  max-width: 1280px;
  padding: 138px 20px 104px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media only screen and (max-width: 750px) {
  .footer .container {
    padding: 22% 0 8.66667%;
  }
}

.footer .container:after {
  clear: both;
  display: block;
  content: "";
}

.footer .container .footer-nav {
  float: right;
  width: 740px;
  padding: 6px 0 16px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav {
    float: none;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #c7c7c7;
  }
}

.footer .container .footer-nav:after {
  clear: both;
  display: block;
  content: "";
}

.footer .container .footer-nav .footer-nav-col {
  float: left;
  padding-left: 10px;
  box-sizing: border-box;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col {
    float: none;
    padding-left: 0;
  }
}

.footer .container .footer-nav .footer-nav-col:first-child {
  padding-left: 0;
}

.footer .container .footer-nav .footer-nav-col:nth-child(1) {
  width: 300px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col:nth-child(1) {
    width: 100%;
  }
}

.footer .container .footer-nav .footer-nav-col:nth-child(2) {
  width: 240px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col:nth-child(2) {
    width: 100%;
  }
}

.footer .container .footer-nav .footer-nav-col:nth-child(3) {
  width: 200px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col:nth-child(3) {
    width: 100%;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec {
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec {
    margin-top: 0;
    border-top: 1px solid #c7c7c7;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec:first-child {
  margin-top: 0;
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec h2 {
    font-size: 1.4rem;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec h2 a {
  text-decoration: none;
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec h2 a:hover {
  color: #777;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec h2 a {
    position: relative;
    display: block;
    padding: 4% 13.33333% 4% 6.66667%;
    color: #616161;
  }
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec h2 a:after {
    position: absolute;
    right: 5.33333%;
    top: 50%;
    width: 2.13333vw;
    height: 3.6vw;
    margin-top: -1.8vw;
    background: url("../img/common/sp_nav_arw.png") no-repeat;
    background-size: cover;
    content: "";
    transition: transform .2s ease-out;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec ul {
  margin-top: 16px;
  font-size: 1.3rem;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec ul {
    margin-top: 0;
    background-color: #fff;
    font-size: 1.3rem;
    line-height: 1.2;
    display: none;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li {
  position: relative;
  padding-left: 1.1em;
  margin-top: 0.5em;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li {
    padding-left: 0;
    margin-top: 0;
    border-top: 1px solid #c7c7c7;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li:first-child {
  margin-top: 0;
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li:before {
  position: absolute;
  left: 0;
  top: 0.55em;
  display: block;
  width: 0.6em;
  height: 2px;
  background-color: #15a956;
  content: "";
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li:before {
    display: none;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li a {
  text-decoration: none;
}

.footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li a:hover {
  color: #777;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li a {
    position: relative;
    display: block;
    padding: 4% 13.33333% 4% 14.66667%;
    color: #616161;
    font-weight: bold;
  }
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li a:before {
    position: absolute;
    left: 10.66667%;
    top: 50%;
    width: 0.6em;
    height: 2px;
    margin-top: -1px;
    background-color: #15a956;
    content: "";
  }
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec ul li a:after {
    position: absolute;
    right: 5.33333%;
    top: 50%;
    width: 2.13333vw;
    height: 3.6vw;
    margin-top: -1.8vw;
    background: url("../img/common/sp_nav_arw_2.png") no-repeat;
    background-size: cover;
    content: "";
  }
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec.expanded h2 a:after {
    transform: rotate(90deg);
  }
  .footer .container .footer-nav .footer-nav-col .footer-nav-sec.expanded ul {
    display: block;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-second {
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-second {
    margin-top: 0;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-second ul {
  font-size: 1.3rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-second ul {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-second ul li {
  margin-top: 1.2em;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-second ul li {
    margin-top: 0;
    border-top: 1px solid #c7c7c7;
  }
}

.footer .container .footer-nav .footer-nav-col .footer-nav-second ul li:first-child {
  margin-top: 0;
}

.footer .container .footer-nav .footer-nav-col .footer-nav-second ul li a {
  text-decoration: none;
}

.footer .container .footer-nav .footer-nav-col .footer-nav-second ul li a:hover {
  color: #777;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-nav .footer-nav-col .footer-nav-second ul li a {
    position: relative;
    display: block;
    padding: 4% 13.33333% 4% 6.66667%;
    color: #616161;
  }
  .footer .container .footer-nav .footer-nav-col .footer-nav-second ul li a:after {
    position: absolute;
    right: 5.33333%;
    top: 50%;
    width: 2.13333vw;
    height: 3.6vw;
    margin-top: -1.8vw;
    background: url("../img/common/sp_nav_arw.png") no-repeat;
    background-size: cover;
    content: "";
  }
}

.footer .container .footer-info {
  float: left;
  width: 330px;
  padding: 6px 10px 6px 0;
  border-right: 1px solid #bbb;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-info {
    float: none;
    width: 100%;
    padding: 4% 8% 8%;
    box-sizing: border-box;
    border-right: 0;
  }
}

.footer .container .footer-info .footer-info-sec {
  margin-top: 40px;
}

.footer .container .footer-info .footer-info-sec:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-info .footer-info-sec {
    margin-top: 0;
    padding: 6.34921% 0 7.93651%;
    border-top: 1px solid #c7c7c7;
  }
  .footer .container .footer-info .footer-info-sec:first-child {
    border-top: 0;
  }
}

.footer .container .footer-info .footer-info-sec h2 {
  color: #15a956;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-info .footer-info-sec h2 {
    text-align: center;
  }
}

.footer .container .footer-info .footer-info-sec table {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.61538;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-info .footer-info-sec table {
    width: 85.71429%;
    margin: 5.07937% auto 0;
    font-size: 1.3rem;
  }
}

.footer .container .footer-info .footer-info-sec table th,
.footer .container .footer-info .footer-info-sec table td {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
}

.footer .container .footer-info .footer-info-sec table td {
  padding-left: 1em;
}

.footer .container .footer-info .footer-info-sec .tel {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-info .footer-info-sec .tel {
    width: 69.84127%;
    margin: 3.80952% auto 0;
    font-size: 2.4rem;
  }
}

.footer .container .footer-info .footer-info-sec .tel a {
  text-decoration: none;
  cursor: default;
}

.footer .container .footer-info .footer-info-sec .tel a:before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
  background: url("../img/common/footer_tel.png") no-repeat;
  background-size: contain;
  content: "";
}

.footer .container .footer-info .footer-info-sec .tel a small {
  font-size: 1.4rem;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-info .footer-info-sec .tel a small {
    font-size: 1rem;
  }
}

.footer .container .footer-info .footer-info-sec .inquiry {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-info .footer-info-sec .inquiry {
    margin-top: 4.44444%;
    text-align: center;
    font-size: 1.4rem;
  }
}

.footer .container .footer-info .footer-info-sec .inquiry a {
  text-decoration: none;
}

.footer .container .footer-info .footer-info-sec .inquiry a:hover {
  color: #777;
}

.footer .container .footer-info .footer-info-sec .inquiry a:before {
  display: inline-block;
  width: 1.35714em;
  height: 1.14286em;
  margin-right: 0.5em;
  vertical-align: middle;
  background: url("../img/common/footer_inquiry.png") no-repeat;
  background-size: contain;
  content: "";
}

.footer .container .footer-sns {
  position: absolute;
  right: 40px;
  bottom: 104px;
  width: 94px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-sns {
    position: relative;
    right: 0;
    bottom: 0;
    width: 25.06667%;
    margin: 0 auto;
  }
}

.footer .container .footer-sns .footer-sns-fb,
.footer .container .footer-sns .footer-sns-tw {
  float: left;
  width: 39px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-sns .footer-sns-fb,
  .footer .container .footer-sns .footer-sns-tw {
    width: 41.48936%;
  }
}

.footer .container .footer-sns .footer-sns-fb a,
.footer .container .footer-sns .footer-sns-tw a {
  display: block;
  text-decoration: none;
}

.footer .container .footer-sns .footer-sns-fb a img,
.footer .container .footer-sns .footer-sns-tw a img {
  display: block;
  width: 100%;
  height: auto;
}

.footer .container .footer-sns .footer-sns-fb a:hover,
.footer .container .footer-sns .footer-sns-tw a:hover {
  opacity: 0.7;
}

.footer .container .footer-sns .footer-sns-tw {
  margin-left: 16px;
}

@media only screen and (max-width: 750px) {
  .footer .container .footer-sns .footer-sns-tw {
    margin-left: 17.02128%;
  }
}

.footer .footer-copyright {
  padding: 16px 0;
  background-color: #15a956;
}

@media only screen and (max-width: 750px) {
  .footer .footer-copyright {
    padding: 2.93333% 0;
  }
}

.footer .footer-copyright p {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .footer .footer-copyright p {
    font-size: 1rem;
  }
}

/*===============================================
 sp
===============================================*/
.sp-header {
  display: none;
}

@media only screen and (max-width: 750px) {
  .sp-header {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    z-index: 99;
    padding-top: 22.93333%;
  }
}

.sp-header:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 1.73333%;
  background-color: #15a956;
  content: "";
}

.sp-header .logo {
  position: absolute;
  left: 4%;
  top: 0;
  margin-top: 5.33333%;
  width: 32.53333%;
}

.sp-header .logo a {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 93.44262%;
  background: url("../img/common/logo_sp.png") no-repeat;
  background-size: cover;
  text-decoration: none;
}

.sp-header #sp-nav-sw {
  position: absolute;
  right: 6.66667%;
  top: 0;
  margin-top: 10%;
  width: 6.8%;
  height: 0;
  padding-top: 6.4%;
  background: url("../img/common/sp_header_sw.png") no-repeat;
  background-size: cover;
  cursor: pointer;
}

#sp-nav {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 100%;
  padding: 20% 6.66667% 6.66667%;
  box-sizing: border-box;
  background-color: #15a956;
  display: none;
}

#sp-nav .gnav ul:after {
  clear: both;
  display: block;
  content: "";
}

#sp-nav .gnav ul li {
  float: left;
  width: 50%;
  padding: 1px;
  box-sizing: border-box;
}

#sp-nav .gnav ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 37.33333vw;
  padding: 17.33333vw 2.66667vw 2.66667vw;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
}

#sp-nav .gnav ul li a:before {
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: 13.53846%;
  display: block;
  width: 11.73333vw;
  height: 11.73333vw;
  margin-left: -5.86667vw;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

#sp-nav .gnav ul li a span {
  display: block;
  color: #15a956;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

#sp-nav .gnav ul li a small {
  display: block;
  margin-top: 2.46154%;
  color: #000;
  font-size: 1.2rem;
  line-height: 1;
}

#sp-nav .gnav ul li:nth-child(1) a:before {
  background-image: url("../img/common/sp_nav_first.png");
}

#sp-nav .gnav ul li:nth-child(2) a:before {
  background-image: url("../img/common/sp_nav_counseling.png");
}

#sp-nav .gnav ul li:nth-child(3) a:before {
  background-image: url("../img/common/sp_nav_seminar.png");
}

#sp-nav .gnav ul li:nth-child(4) a:before {
  background-image: url("../img/common/sp_nav_training.png");
}

#sp-nav .gnav ul li:nth-child(5) a:before {
  background-image: url("../img/common/sp_nav_hello_work.png");
}

#sp-nav .gnav ul li:nth-child(6) a:before {
  background-image: url("../img/common/sp_nav_workspace.png");
}

#sp-nav .gnav ul li:nth-child(7) a:before {
  background-image: url("../img/common/sp_nav_nursing.png");
}

#sp-nav .gnav ul li:nth-child(8) a:before {
  background-image: url("../img/common/sp_nav_business.png");
}

#sp-nav .util {
  margin-top: 9.23077%;
}

#sp-nav .util ul {
  font-size: 1.5rem;
  line-height: 1.2;
}

#sp-nav .util ul li {
  margin-top: 1px;
}

#sp-nav .util ul li:first-child {
  margin-top: 0;
}

#sp-nav .util ul li a {
  position: relative;
  display: block;
  padding: 4.61538% 9.23077% 4.61538% 7.69231%;
  background-color: #fff;
  text-decoration: none;
  color: #15a956;
  font-weight: bold;
}

#sp-nav .util ul li a:after {
  position: absolute;
  right: 4.61538%;
  top: 50%;
  display: block;
  width: 2.13333vw;
  height: 3.6vw;
  margin-top: -1.8vw;
  background: url("../img/common/sp_nav_arw.png") no-repeat;
  background-size: cover;
  content: "";
}

#sp-nav .util ul li.business a {
  background-color: #daf65c;
}

#sp-nav .inquiry {
  margin-top: 9.23077%;
}

#sp-nav .inquiry a {
  display: block;
  padding: 6.15385% 0;
  background-color: #fff;
}

#sp-nav .inquiry a:after {
  display: block;
  width: 8.53333vw;
  height: 7.2vw;
  margin: 0 auto;
  background: url("../img/common/sp_nav_inquiry.png") no-repeat;
  background-size: cover;
  content: "";
}

#sp-nav #sp-nav-close {
  position: absolute;
  right: 6.66667%;
  top: 0;
  margin-top: 6.66667%;
  width: 4.26667vw;
  height: 4.26667vw;
  background: url("../img/common/sp_nav_close.png") no-repeat;
  background-size: cover;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  body.sp-nav-visible {
    height: 100%;
  }
  body.sp-nav-visible #wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body.sp-nav-visible #sp-nav {
    display: block;
  }
}

.is-sp {
  display: none;
}

@media only screen and (max-width: 750px) {
  .is-sp {
    position: absolute;
    left: -9999px;
    top: 0;
    display: block;
    width: 1px;
    height: 1px;
  }
}

/*===============================================
 main
===============================================*/
.main {
  padding-top: 51px;
  *zoom: 1;
}

.main:after {
  content: "";
  display: block;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .main {
    padding-top: 0;
  }
}

.side {
  float: left;
  width: 212px;
  padding-bottom: 300px;
}

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

.side .logo a:hover {
  opacity: 0.7;
}

.side .gnav {
  width: 182px;
  margin: 0 auto;
}

.side .gnav ul li {
  padding-top: 1px;
  background: url("../img/common/gnav_border.png") repeat-x left top;
}

.side .gnav ul li:first-child {
  padding-top: 0;
  background-image: none;
}

.side .gnav ul li a {
  display: block;
  padding: 22px 0;
  text-align: center;
  text-decoration: none;
}

.side .gnav ul li a:before {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  content: "";
}

.side .gnav ul li a span {
  display: block;
  margin-top: 6px;
  color: #15a956;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 2.2rem;
}

.side .gnav ul li a small {
  display: block;
  margin-top: 4px;
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
}

.side .gnav ul li a:hover {
  opacity: 0.7;
}

.side .gnav ul li:nth-child(1) a:before {
  background: url("../img/common/gnav_first.png") no-repeat;
}

.side .gnav ul li:nth-child(2) a:before {
  background: url("../img/common/gnav_counseling.png") no-repeat;
}

.side .gnav ul li:nth-child(3) a:before {
  background: url("../img/common/gnav_seminar.png") no-repeat;
}

.side .gnav ul li:nth-child(4) a:before {
  background: url("../img/common/gnav_training.png") no-repeat;
}

.side .gnav ul li:nth-child(5) a:before {
  background: url("../img/common/gnav_hello_work.png") no-repeat;
}

.side .gnav ul li:nth-child(6) a:before {
  background: url("../img/common/gnav_workspace.png") no-repeat;
}

.side .gnav ul li:nth-child(7) a:before {
  background: url("../img/common/gnav_nursing.png") no-repeat;
}

.side .gnav ul li:nth-child(8) a:before {
  background: url("../img/common/gnav_business.png") no-repeat;
}

.content {
  margin-left: 212px;
  background: url("../img/common/bg.png") repeat left top;
}

@media only screen and (max-width: 750px) {
  .content {
    margin-left: 0;
  }
}

.content-header {
  padding: 128px 0 56px;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .content-header {
    padding: 10% 5.33333% 3.33333%;
  }
}

.content-header .content-title {
  display: block;
  max-width: 1045px;
  margin: 0 auto;
  color: #15a956;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .content-header .content-title {
    text-align: right;
    font-size: 2rem;
    line-height: 1.35;
  }
}

.under-construction {
  margin-top: 60px;
  padding: 80px;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .under-construction {
    margin-top: 8%;
    padding: 10.66667%;
  }
}

.under-construction p {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .under-construction p {
    font-size: 2rem;
  }
}

/*===============================================
 top
===============================================*/
.top-mv {
  position: relative;
}

.top-mv .container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 27.63975%;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .top-mv .container {
    padding-top: 86%;
  }
}

.top-mv .container .item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
}

.top-mv .container .item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.top-mv .container .item a:hover {
  opacity: 0.8;
}

.top-mv .container .item img {
  display: block;
  width: 100%;
  height: auto;
}

.top-mv .nav {
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  text-align: center;
  font-size: 0;
  line-height: 17px;
  pointer-events: none;
}

.top-mv .nav .pages {
  display: inline-block;
  padding-top: 4px;
  vertical-align: top;
}

.top-mv .nav .pages span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #c7c7c7;
  border-radius: 5px;
  margin: 0 4px;
  cursor: pointer;
  pointer-events: auto;
}

.top-mv .nav .pages span.active {
  background-color: #15a956;
}

.top-mv .nav .prev,
.top-mv .nav .next {
  display: inline-block;
  width: 9px;
  height: 17px;
  border-radius: 0;
  vertical-align: top;
  cursor: pointer;
  pointer-events: auto;
}

.top-mv .nav .prev {
  background: transparent url("../img/top/mv_prev.png") no-repeat;
  margin-right: 8px;
}

.top-mv .nav .next {
  background: transparent url("../img/top/mv_next.png") no-repeat;
  margin-left: 8px;
}

.top-news {
  position: relative;
  overflow: hidden;
  background-color: #e2f6eb;
}

.top-news:after {
  clear: both;
  display: block;
  content: "";
}

.top-news h2 {
  position: absolute;
  left: 1.25em;
  top: 1.1em;
  font-size: 1.6rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .top-news h2 {
    left: 4.26667%;
    top: 1.2em;
    font-size: 1.3rem;
  }
}

.top-news .container {
  position: relative;
  padding: 1em 13.5em 1em 7.5em;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-news .container {
    padding: 3.73333% 3.73333% 3.73333% 21.33333%;
    font-size: 1.2rem;
  }
}

.top-news .container a {
  color: #009543;
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  .top-news .container a {
    display: block;
  }
}

.top-news .container a .category {
  display: inline-block;
  padding: 5px 14px;
  margin-right: 10px;
  background-color: #ec3b49;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .top-news .container a .category {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

.top-news .container a .time {
  display: inline-block;
}

.top-news .container a p {
  display: inline-block;
}

@media only screen and (max-width: 750px) {
  .top-news .container a p {
    display: block;
    margin-top: 0.2em;
  }
}

.top-news .link {
  position: absolute;
  right: 1.5em;
  top: 1.4em;
  font-size: 1.4rem;
}

@media only screen and (max-width: 750px) {
  .top-news .link {
    position: relative;
    right: 0;
    top: 0;
  }
}

.top-news .link a {
  color: #009944;
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  .top-news .link a {
    display: block;
    padding: 3.73333%;
    background-color: #c8edd9;
    text-align: center;
    font-weight: bold;
  }
}

.top-news .link a:before {
  display: inline-block;
  width: 32px;
  height: 6px;
  margin-right: 15px;
  background: url("../img/common/arw.png") no-repeat;
  vertical-align: 0px;
  content: "";
}

.top-seminar {
  padding: 56px 40px 86px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .top-seminar {
    padding: 8.53333% 4.66667% 9.33333%;
  }
}

.top-seminar .top-seminar-list {
  max-width: 1046px;
  margin: 0 auto;
}

.top-seminar .top-seminar-list h2 {
  font-size: 2.3rem;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list h2 {
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.top-seminar .top-seminar-list h2:before {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 16px;
  background: url("../img/top/seminar_title.png") no-repeat;
  vertical-align: -5px;
  content: "";
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list h2:before {
    width: 1em;
    height: 1em;
    margin-right: 0.66667em;
    vertical-align: -0.1em;
    background-size: cover;
  }
}

.top-seminar .top-seminar-list .container {
  margin-top: 42px;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list .container {
    margin-top: 5.88235%;
  }
}

.top-seminar .top-seminar-list .container:after {
  clear: both;
  display: block;
  content: "";
}

.top-seminar .top-seminar-list .container .item {
  float: left;
  width: 230px;
  margin-left: 40px;
  margin-top: 40px;
}

.top-seminar .top-seminar-list .container .item:nth-child(-n+4) {
  margin-top: 0;
}

.top-seminar .top-seminar-list .container .item:nth-child(4n+1) {
  margin-left: 0;
  clear: left;
}

@media only screen and (max-width: 1350px) {
  .top-seminar .top-seminar-list .container .item {
    margin-left: 84px;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(-n+4) {
    margin-top: 40px;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(4n+1) {
    margin-left: 84px;
    clear: none;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(-n+3) {
    margin-top: 0;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(3n+1) {
    margin-left: 0;
    clear: left;
  }
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list .container .item {
    width: 47.79412%;
    margin-left: 4.41176%;
    margin-top: 7.05882%;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(-n+4) {
    margin-top: 7.05882%;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(4n+1) {
    margin-left: 4.41176%;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(-n+3) {
    margin-top: 7.05882%;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(3n+1) {
    margin-left: 4.41176%;
    clear: none;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(-n+2) {
    margin-top: 0;
  }
  .top-seminar .top-seminar-list .container .item:nth-child(2n+1) {
    margin-left: 0;
    clear: left;
  }
}

.top-seminar .top-seminar-list .container .item a {
  position: relative;
  display: block;
  text-decoration: none;
}

.top-seminar .top-seminar-list .container .item a .thumb {
  border: 1px solid #dcdcdc;
  background-color: #fff;
}

.top-seminar .top-seminar-list .container .item a .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.top-seminar .top-seminar-list .container .item a time {
  position: absolute;
  right: 0;
  top: 0;
  margin-right: -16px;
  margin-top: -16px;
  width: 60px;
  height: 60px;
  padding-top: 7px;
  box-sizing: border-box;
  background-color: #daf65c;
  border-radius: 30px;
  text-align: center;
  color: #009944;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list .container .item a time {
    margin-right: -1.2em;
    margin-top: -1.2em;
    width: 4em;
    height: 4em;
    padding-top: 0.75em;
    border-radius: 2em;
    font-size: 1.2rem;
  }
}

.top-seminar .top-seminar-list .container .item a time span {
  display: block;
}

.top-seminar .top-seminar-list .container .item a time .year,
.top-seminar .top-seminar-list .container .item a time .day {
  font-size: 11px;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list .container .item a time .year,
  .top-seminar .top-seminar-list .container .item a time .day {
    font-size: 0.7rem;
    line-height: 1;
  }
}

.top-seminar .top-seminar-list .container .item a .category {
  margin-top: 12px;
  font-size: 1.4rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list .container .item a .category {
    margin-top: 4.92308%;
    font-size: 1.2rem;
  }
}

.top-seminar .top-seminar-list .container .item a .category span {
  display: inline-block;
  padding: 6px 9px;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list .container .item a .category span {
    padding: 0.5em 1em;
  }
}

.top-seminar .top-seminar-list .container .item a .category span.category-1 {
  background-color: #fae6c7;
  color: #e8940f;
}

.top-seminar .top-seminar-list .container .item a .category span.category-2 {
  background-color: #d2edfb;
  color: #3bb0ec;
}

.top-seminar .top-seminar-list .container .item a .category span.category-3 {
  background-color: #ffddf5;
  color: #f373cc;
}

.top-seminar .top-seminar-list .container .item a .category span.category-4 {
  background-color: #e8e3ce;
  color: #9c882c;
}

.top-seminar .top-seminar-list .container .item a .category span.category-5 {
  background-color: #e3dbee;
  color: #8764b6;
}

.top-seminar .top-seminar-list .container .item a .category span.category-6 {
  background-color: #d0eae7;
  color: #35a496;
}

.top-seminar .top-seminar-list .container .item a .category span.category-7 {
  background-color: #daeec9;
  color: #5db714;
}

.top-seminar .top-seminar-list .container .item a .category span.category-8 {
  background-color: #d6dcfb;
  color: #4d67ec;
}

.top-seminar .top-seminar-list .container .item a .title {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list .container .item a .title {
    margin-top: 4.92308%;
    font-size: 1.4rem;
  }
}

.top-seminar .top-seminar-list .container .item a:hover .thumb img {
  opacity: 0.7;
}

.top-seminar .top-seminar-list .container .item a:hover .title {
  color: #888;
}

.top-seminar .top-seminar-calendar {
  position: relative;
  max-width: 1046px;
  margin: 64px auto 0;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar {
    margin-top: 9.41176%;
  }
}

.top-seminar .top-seminar-calendar h2 {
  text-align: center;
  font-size: 1.9rem;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar h2 {
    font-size: 1.5rem;
    font-weight: bold;
  }
}

.top-seminar .top-seminar-calendar .container {
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container {
    margin: 3.67647% 7.35294% 0;
  }
}

.top-seminar .top-seminar-calendar .container .categories {
  margin-bottom: 22px;
}

.top-seminar .top-seminar-calendar .container .categories ul {
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.5;
}

.top-seminar .top-seminar-calendar .container .categories ul li {
  display: inline;
  margin-left: 1em;
  white-space: nowrap;
}

.top-seminar .top-seminar-calendar .container .categories ul li:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 750px) {
.top-seminar .top-seminar-calendar .container .categories ul {
  text-align: left;
}
.top-seminar .top-seminar-calendar .container .categories ul li {
  margin-left: 0;
  margin-right: 1em;
}
}

.top-seminar .top-seminar-calendar .container .categories ul li:before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.2em;
  vertical-align: -0.2em;
  content: "";
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-1:before {
  background-color: #e8940f;
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-2:before {
  background-color: #3bb0ec;
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-3:before {
  background-color: #f373cc;
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-4:before {
  background-color: #9c882c;
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-5:before {
  background-color: #8764b6;
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-6:before {
  background-color: #35a496;
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-7:before {
  background-color: #5db714;
}

.top-seminar .top-seminar-calendar .container .categories ul li.category-8:before {
  background-color: #4d67ec;
}

.top-seminar .top-seminar-calendar .container .calendar {
  width: 100%;
  box-sizing: border-box;
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
  font-size: 1.4rem;
  line-height: 1.5;
}

.top-seminar .top-seminar-calendar .container .calendar th,
.top-seminar .top-seminar-calendar .container .calendar td {
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar thead {
    display: none;
  }
}

.top-seminar .top-seminar-calendar .container .calendar thead th {
  padding: 10px;
  background-color: #40b373;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
}

.top-seminar .top-seminar-calendar .container .calendar thead th.sunday {
  background-color: #daf65c;
  color: #009944;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody {
    display: block;
  }
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody tr {
    display: block;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td {
  width: 14.28571%;
  padding: 10px 12px;
  box-sizing: border-box;
  background-color: #fff;
  vertical-align: top;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody td {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item {
  position: relative;
  padding-top: 24px;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody td .item {
    display: table;
    width: 100%;
    padding: 0;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item .day {
  display: none;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody td .item .day {
    display: table-cell;
    width: 3.54167em;
    padding: 0.66667em 0;
    text-align: center;
    vertical-align: middle;
    background-color: #40b373;
    border-right: 1px solid #c7c7c7;
    color: #fff;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item time {
  position: absolute;
  right: 0;
  top: 0;
  color: #737373;
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody td .item time {
    position: relative;
    right: 0;
    display: table-cell;
    width: 3.54167em;
    padding: 0.66667em 0;
    text-align: center;
    vertical-align: middle;
    font-size: 1.4rem;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul {
  min-height: 4.5em;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody td .item ul {
    display: table-cell;
    min-height: 0;
    padding: 0.66667em 0;
    text-align: left;
    vertical-align: top;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a {
  position: relative;
  text-decoration: none;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a .hover {
  position: absolute;
  left: -86px;
  top: -262px;
  z-index: 1;
  width: 298px;
  padding: 12px;
  box-sizing: border-box;
  border-width: 8px;
  border-style: solid;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.25);
  display: none;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a .hover:after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-top: 10px solid;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a .hover .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a .hover .category {
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 9px;
  font-size: 1.4rem;
  font-weight: bold;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a .hover .title {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a:hover {
  opacity: 1;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a:hover > span {
  opacity: 0.7;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a:hover .hover {
  display: block;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li a:hover .hover {
    display: none;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-1 a {
  color: #e8940f;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-1 a .hover {
  border-color: #e8940f;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-1 a .hover:after {
  border-top-color: #e8940f;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-1 a .hover .category {
  background-color: #fae6c7;
  color: #e8940f;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-2 a {
  color: #3bb0ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-2 a .hover {
  border-color: #3bb0ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-2 a .hover:after {
  border-top-color: #3bb0ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-2 a .hover .category {
  background-color: #d2edfb;
  color: #3bb0ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-3 a {
  color: #f373cc;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-3 a .hover {
  border-color: #f373cc;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-3 a .hover:after {
  border-top-color: #f373cc;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-3 a .hover .category {
  background-color: #ffddf5;
  color: #f373cc;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-4 a {
  color: #9c882c;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-4 a .hover {
  border-color: #9c882c;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-4 a .hover:after {
  border-top-color: #9c882c;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-4 a .hover .category {
  background-color: #e8e3ce;
  color: #9c882c;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-5 a {
  color: #8764b6;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-5 a .hover {
  border-color: #8764b6;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-5 a .hover:after {
  border-top-color: #8764b6;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-5 a .hover .category {
  background-color: #e3dbee;
  color: #8764b6;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-6 a {
  color: #35a496;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-6 a .hover {
  border-color: #35a496;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-6 a .hover:after {
  border-top-color: #35a496;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-6 a .hover .category {
  background-color: #d0eae7;
  color: #35a496;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-7 a {
  color: #5db714;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-7 a .hover {
  border-color: #5db714;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-7 a .hover:after {
  border-top-color: #5db714;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-7 a .hover .category {
  background-color: #daeec9;
  color: #5db714;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-8 a {
  color: #4d67ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-8 a .hover {
  border-color: #4d67ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-8 a .hover:after {
  border-top-color: #4d67ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul li.category-8 a .hover .category {
  background-color: #d6dcfb;
  color: #4d67ec;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td.blank .item time {
  color: #cacaca;
}

.top-seminar .top-seminar-calendar .container .calendar tbody td.sunday .item .day {
  background-color: #daf65c;
  color: #009944;
}

.top-seminar .top-seminar-calendar .week-prev,
.top-seminar .top-seminar-calendar .week-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 9.41176%;
  height: 0;
  padding-top: 9.41176%;
  background-color: rgba(0, 0, 0, 0.5);
}

.top-seminar .top-seminar-calendar .week-prev:after,
.top-seminar .top-seminar-calendar .week-next:after {
  position: absolute;
  top: 50%;
  display: block;
  width: 21.875%;
  height: 0;
  padding-top: 31.25%;
  margin-top: -15.625%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.top-seminar .top-seminar-calendar .week-prev {
  left: -5.14706%;
  border-radius: 0 32px 32px 0;
}

.top-seminar .top-seminar-calendar .week-prev:after {
  left: 37.5%;
  background-image: url("../img/top/calendar_week_prev.png");
}

.top-seminar .top-seminar-calendar .week-next {
  right: -5.14706%;
  border-radius: 32px 0 0 32px;
}

.top-seminar .top-seminar-calendar .week-next:after {
  right: 37.5%;
  background-image: url("../img/top/calendar_week_next.png");
}

.top-seminar .top-seminar-calendar nav {
  position: relative;
  margin-top: 26px;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar nav {
    margin: 4.70588% 7.35294% 0;
  }
}

.top-seminar .top-seminar-calendar nav a {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-calendar nav a {
    padding: 0.4em 0.8em;
    font-size: 1.05rem;
  }
}

.top-seminar .top-seminar-calendar nav .prev,
.top-seminar .top-seminar-calendar nav .next {
  position: absolute;
  top: 0;
  background-color: #40b373;
  color: #fff;
}

.top-seminar .top-seminar-calendar nav .prev {
  left: 0;
}

.top-seminar .top-seminar-calendar nav .prev:before {
  display: inline-block;
  width: 6px;
  height: 11px;
  margin-right: 16px;
  vertical-align: middle;
  background: url("../img/common/arw_prev.png") no-repeat;
  content: "";
}

.top-seminar .top-seminar-calendar nav .next {
  right: 0;
}

.top-seminar .top-seminar-calendar nav .next:after {
  display: inline-block;
  width: 6px;
  height: 11px;
  margin-left: 16px;
  vertical-align: 0px;
  background: url("../img/common/arw_next.png") no-repeat;
  content: "";
}

.top-seminar .top-seminar-calendar nav .list {
  background-color: #daf65c;
  color: #009944;
}

.top-seminar .top-seminar-calendar nav .list:before {
  display: inline-block;
  width: 32px;
  height: 6px;
  margin-right: 6px;
  vertical-align: middle;
  background: url("../img/common/arw.png") no-repeat;
  content: "";
}

.top-feature {
  padding: 64px 40px;
  background: url("../img/top/feature_bg.jpg") no-repeat center top;
  background-size: cover;
}

@media only screen and (max-width: 750px) {
  .top-feature {
    padding: 6.66667% 6.66667% 40% 6.66667%;
    background: #d7dfd2 url("../img/top/feature_bg_sp.jpg") no-repeat center bottom;
    background-size: 100% auto;
  }
}

.top-feature .inner {
  max-width: 1046px;
  margin: 0 auto;
}

.top-feature .inner h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner h2 {
    color: #000;
    font-size: 1.5rem;
  }
}

.top-feature .inner h2:before {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 14px;
  background: url("../img/top/feature_title.png") no-repeat;
  vertical-align: -5px;
  content: "";
}

@media only screen and (max-width: 750px) {
  .top-feature .inner h2:before {
    width: 1.13333em;
    height: 1.13333em;
    margin-right: 0.5em;
    background-image: url("../img/top/feature_title_sp.png");
    background-size: cover;
    vertical-align: -0.2em;
  }
}

.top-feature .inner .container {
  overflow: hidden;
}

.top-feature .inner .container:after {
  clear: both;
  display: block;
  content: "";
}

.top-feature .inner .container .item a {
  display: block;
  text-decoration: none;
}

.top-feature .inner .container .item a .info .num {
  display: block;
  width: 60px;
  height: 60px;
  padding-top: 8px;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #daf65c;
  text-align: center;
  color: #009944;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .container .item a .info .num {
    width: 4rem;
    height: 4rem;
    border-radius: 2rem;
    padding-top: 0.75rem;
  }
}

.top-feature .inner .container .item a .info .num small {
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .container .item a .info .num small {
    font-size: 0.65rem;
  }
}

.top-feature .inner .container .item a .info .num span {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .container .item a .info .num span {
    margin-top: 0.2rem;
    font-size: 1.8rem;
  }
}

.top-feature .inner .container .item a:hover .thumb img {
  opacity: 0.7;
}

.top-feature .inner .row-1 {
  margin-top: 32px;
}

.top-feature .inner .row-1 .item {
  float: left;
  width: 48.18356%;
  margin-left: 3.63289%;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 3.07692%;
  }
}

.top-feature .inner .row-1 .item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item:first-child {
    margin-top: 0;
  }
}

.top-feature .inner .row-1 .item a {
  display: block;
  padding: 15px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item a {
    padding: 3.84615%;
  }
}

.top-feature .inner .row-1 .item a:after {
  clear: both;
  display: block;
  content: "";
}

.top-feature .inner .row-1 .item a .info {
  float: left;
  position: relative;
  width: 44.3038%;
  padding-left: 12px;
  padding-bottom: 12px;
  box-sizing: border-box;
  font-size: 2.2rem;
  line-height: 1.3;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item a .info {
    float: none;
    width: 100%;
    min-height: 4rem;
    padding-left: 16.33333%;
    padding-top: 1rem;
    padding-bottom: 0;
    font-size: 1.7rem;
  }
}

.top-feature .inner .row-1 .item a .info .num {
  margin: 0 auto;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item a .info .num {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.top-feature .inner .row-1 .item a .info h3 {
  margin-top: 8px;
  text-align: center;
  color: #009944;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item a .info h3 {
    margin-top: 0;
    text-align: left;
  }
}

.top-feature .inner .row-1 .item a .description {
  float: left;
  position: relative;
  width: 44.3038%;
  margin-top: 6px;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item a .description {
    width: 54.33333%;
  }
}

.top-feature .inner .row-1 .item a .description p {
  padding-bottom: 1.5em;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item a .description p {
    font-size: 1.4rem;
  }
}

.top-feature .inner .row-1 .item a .description:before {
  position: absolute;
  right: 0;
  bottom: 6px;
  display: block;
  width: 32px;
  height: 6px;
  /*background: url("../img/common/arw.png") no-repeat;*/
  content: "";
}

.top-feature .inner .row-1 .item a .thumb {
  float: right;
  width: 48.94515%;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-1 .item a .thumb {
    width: 38.66667%;
    margin-top: 6px;
  }
}

.top-feature .inner .row-1 .item a .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.top-feature .inner .row-2 {
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 {
    margin-top: 3.07692%;
  }
}

.top-feature .inner .row-2 .item {
  float: left;
  width: 30.01912%;
  margin-left: 4.97132%;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 3.07692%;
    background-color: #fff;
  }
}

.top-feature .inner .row-2 .item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item:first-child {
    margin-top: 0;
  }
}

.top-feature .inner .row-2 .item a {
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a {
    padding: 3.84615%;
  }
}

.top-feature .inner .row-2 .item a:after {
  clear: both;
  display: block;
  content: "";
}

.top-feature .inner .row-2 .item a .info {
  position: relative;
  padding: 8px 0 0 72px;
  min-height: 52px;
  font-size: 1.8rem;
  line-height: 1.3;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a .info {
    min-height: 4rem;
    padding-left: 16.33333%;
    padding-top: 0;
    font-size: 1.7rem;
  }
}

.top-feature .inner .row-2 .item a .info .num {
  position: absolute;
  left: 4px;
  top: 0;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a .info .num {
    left: 0;
  }
}

.top-feature .inner .row-2 .item a .info h3 {
  color: #fff;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a .info h3 {
    color: #009944;
  }
}

.top-feature .inner .row-2 .item a .description {
  float: right;
  position: relative;
  width: 50.95541%;
  margin-top: 12px;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a .description {
    float: left;
    width: 54.33333%;
  }
}

.top-feature .inner .row-2 .item a .description p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a .description p {
    padding-bottom: 1.5rem;
    color: #000;
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a .description:before {
    position: absolute;
    right: 0;
    bottom: 6px;
    display: block;
    width: 32px;
    height: 6px;
    background: url("../img/common/arw.png") no-repeat;
    content: "";
  }
}

.top-feature .inner .row-2 .item a .thumb {
  float: left;
  width: 45.22293%;
  margin-top: 12px;
}

@media only screen and (max-width: 750px) {
  .top-feature .inner .row-2 .item a .thumb {
    float: right;
    width: 38.66667%;
  }
}

.top-feature .inner .row-2 .item a .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.top-sns {
  padding: 54px 0 338px;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .top-sns {
    padding: 8% 6.66667% 42.66667%;
    background-color: transparent;
  }
}

.top-sns h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .top-sns h2 {
    font-size: 1.5rem;
  }
}

.top-sns .container {
  width: 935px;
  margin: 38px auto 0;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .top-sns .container {
    width: 100%;
    margin: 4.92308% auto 0;
  }
}

.top-sns .container:after {
  clear: both;
  display: block;
  content: "";
}

.top-sns .container .item {
  float: left;
  width: 455px;
  height: 300px;
  box-sizing: border-box;
  margin-left: 25px;
}

@media only screen and (max-width: 750px) {
  .top-sns .container .item {
    float: none;
    width: 100%;
    max-width: 455px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.07692%;
  }
}

.top-sns .container .item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 750px) {
  .top-sns .container .item:first-child {
    margin-left: auto;
    margin-top: 0;
  }
}

.top-sns .container .item:nth-child(2) {
  border: 1px solid #f2f2f2;
}

.seminar-index {
  padding: 48px 0 336px;
}

@media only screen and (max-width: 750px) {
  .seminar-index {
    padding: 6.66667% 5.33333% 51.33333%;
  }
}

.seminar-index .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
  /*
		.search {
			padding: 16px 32px;
			margin-top: 32px;
			background-color: #e2f6eb;
			
			dl {
				overflow: hidden;
				font-size: 1.6rem;
				line-height: 1.2;
				
				&:after {
					clear: both;
					display: block;
					content: "";
				}
				
				dt {
					float: left;
				}
				dd {
					float: left;
					margin-left: 42px;
					
					label {
						margin-left: 20px;
						
						&:first-child {
							margin-left: 0;
						}
					}
				}
			}
		}
		*/
}

.seminar-index .container .description p {
  font-size: 1.4rem;
  line-height: 2;
}

.seminar-index .container .print {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .print {

  }
}

.seminar-index .container .print a {
  display: inline-block;
  padding: 5px 7px 5px 12px;
  background-color: #daf65c;
  text-decoration: none;
  color: #009944;
}

.seminar-index .container .print a:before {
  display: inline-block;
  width: 32px;
  height: 6px;
  margin-right: 6px;
  background: url("../img/common/arw.png") no-repeat;
  vertical-align: 3px;
  content: "";
}

.seminar-index .container .list {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list {
    margin-top: 5.97015%;
  }
}

.seminar-index .container .list .list-section {
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section {
    margin-top: 7.46269%;
  }
}

.seminar-index .container .list .list-section:first-child {
  margin-top: 0;
}

.seminar-index .container .list .list-section h3 {
  padding-left: 1em;
  font-size: 2.3rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section h3 {
    padding: 0.5em;
    font-size: 1.8rem;
    background-color: #15a956;
    color: #fff;
  }
}

.seminar-index .container .list .list-section table {
  width: 100%;
  margin-top: 16px;
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table {
    display: block;
    margin-top: 0;
  }
}

.seminar-index .container .list .list-section table th,
.seminar-index .container .list .list-section table td {
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}


.seminar-index .container .list .list-section table th {
  padding: 16px 4px;
  background-color: #40b373;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media only screen and (max-width: 750px) {
.seminar-index .container .list .list-section table th {
    font-size: 1.3rem;
}
}


@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table  {
    display: table;
  }
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table tr {

  }
}

.seminar-index .container .list .list-section table td {
  padding: 16px;
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table td {

  }
}


.seminar-index .container .list .list-section table tbody td.title {
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table tbody td.title {
    font-size: 1.3rem;
    border-right: 1px solid #dcdcdc;
  }
}

.seminar-index .container .list .list-section table tbody td.status {
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table tbody td.status {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
  }
}

.seminar-index .container .list .list-section table tbody td.status .status-0,
.seminar-index .container .list .list-section table tbody td.status .status-1 {
  display: inline-block;
  width: 4em;
  padding: 5px 15px;
  vertical-align: middle;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.seminar-index .container .list .list-section table tbody td.status .status-0 {
  background-color: #4e4e4e;
}

.seminar-index .container .list .list-section table tbody td.status .status-1 {
  background-color: #3a8bd7;
}

.seminar-detail {
  padding: 40px 0 360px;
}

@media only screen and (max-width: 750px) {
  .seminar-detail {
    padding: 6.66667% 5.33333% 51.33333%;
  }
}

.seminar-detail .container {
  position: relative;
  max-width: 902px;
  margin: 0 auto;
}

.seminar-detail .container .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .title {
    font-size: 1.8rem;
  }
}

.seminar-detail .container .info {
  margin-top: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .info {
    margin-top: 2.98507%;
  }
}

.seminar-detail .container .info:after {
  clear: both;
  display: block;
  content: "";
}

.seminar-detail .container .info .date {
  float: left;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .info .date {
    float: none;
  }
}

.seminar-detail .container .info .target {
  float: left;
  margin-left: 20px;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .info .target {
    float: none;
    margin-left: 0;
    margin-top: 1.79104%;
  }
}

.seminar-detail .container .info .target dt {
  display: inline-block;
  padding: 4px 12px;
  background-color: #40b373;
  vertical-align: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.seminar-detail .container .info .target dd {
  display: inline;
  margin-left: 12px;
}

.seminar-detail .container .info .status {
  float: right;
  font-size: 0;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .info .status {
    float: none;
    margin-top: 1.79104%;
  }
}

.seminar-detail .container .info .status .status-0,
.seminar-detail .container .info .status .status-1,
.seminar-detail .container .info .status .new,
.seminar-detail .container .info .status .category-1,
.seminar-detail .container .info .status .category-2,
.seminar-detail .container .info .status .category-3,
.seminar-detail .container .info .status .category-4,
.seminar-detail .container .info .status .category-5,
.seminar-detail .container .info .status .category-6,
.seminar-detail .container .info .status .category-7 {
  display: inline-block;
  padding: 4px 12px;
  font-size: 1.4rem;
  line-height: 1;
}

.seminar-detail .container .info .status .status-0 {
  background-color: #4e4e4e;
  color: #fff;
}

.seminar-detail .container .info .status .status-1 {
  background-color: #3a8bd7;
  color: #fff;
}

.seminar-detail .container .info .status .new {
  background-color: #ec3b49;
  color: #fff;
}

.seminar-detail .container .info .status .category-1 {
  background-color: #fae6c7;
  color: #e8940f;
}

.seminar-detail .container .info .status .category-2 {
  background-color: #d2edfb;
  color: #3bb0ec;
}

.seminar-detail .container .info .status .category-3 {
  background-color: #ffddf5;
  color: #f373cc;
}

.seminar-detail .container .info .status .category-4 {
  background-color: #e8e3ce;
  color: #9c882c;
}

.seminar-detail .container .info .status .category-5 {
  background-color: #e3dbee;
  color: #8764b6;
}

.seminar-detail .container .info .status .category-6 {
  background-color: #d0eae7;
  color: #35a496;
}

.seminar-detail .container .info .status .category-7 {
  background-color: #daeec9;
  color: #5db714;
}

.seminar-detail .container .image {
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .image {
    margin-top: 4.47761%;
  }
}

.seminar-detail .container .image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.seminar-detail .container .detail {
  margin-top: 28px;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .detail {
    margin-top: 4.47761%;
  }
}

.seminar-detail .container .detail table {
  width: 100%;
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .detail table {
    display: block;
    border-left: 0;
    border-top: 0;
  }
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .detail table tr {
    display: block;
  }
}

.seminar-detail .container .detail table th,
.seminar-detail .container .detail table td {
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .detail table th,
  .seminar-detail .container .detail table td {
    display: block;
    border-right: 0;
    border-bottom: 0;
  }
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .detail table tbody {
    display: block;
  }
}

.seminar-detail .container .detail table tbody th {
  padding: 20px 28px;
  background-color: #eee;
  font-weight: bold;
  text-align: center;
  vertical-align: top;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .detail table tbody th {
    padding: 0.5em 1em;
    text-align: left;
  }
}

.seminar-detail .container .detail table tbody td {
  padding: 20px 32px;
  background-color: #fff;
  text-align: left;
  vertical-align: top;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .detail table tbody td {
    padding: 1em;
    text-align: left;
  }
}

.seminar-detail .container .detail table tbody td .center {
  text-align: center;
}

.seminar-detail .container .detail table tbody td img {
  max-width: 100%;
  height: auto;
}

.seminar-detail .container .join {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .seminar-detail .container .join {
    margin-top: 8.95522%;
  }
}

.seminar-detail .container .join a {
  display: block;
  width: 235px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 3px;
  background-color: #ec3b49;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.seminar-detail .container .back {
  margin-top: 26px;
  text-align: right;
}

.seminar-detail .container .back a {
  display: inline-block;
  padding: 5px 9px 5px 12px;
  background-color: #daf65c;
  text-decoration: none;
  color: #009944;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.seminar-detail .container .back a:before {
  display: inline-block;
  width: 32px;
  height: 6px;
  margin-right: 6px;
  background: url("../img/common/arw.png") no-repeat;
  vertical-align: 3px;
  content: "";
}

.news-index {
  padding: 60px 0 365px;
}

@media only screen and (max-width: 750px) {
  .news-index {
    padding: 6.66667% 5.33333% 51.33333%;
  }
}

.news-index .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.news-index .container .list .item {
  margin-top: 18px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .news-index .container .list .item {
    margin-top: 2.98507%;
  }
}

.news-index .container .list .item:first-child {
  margin-top: 0;
}

.news-index .container .list .item a {
  position: relative;
  display: block;
  padding: 28px 100px 28px 24px;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .news-index .container .list .item a {
    padding: 1em 15% 1em 1em;
  }
}

.news-index .container .list .item a .new {
  display: inline-block;
  padding: 5px 12px;
  margin-right: 28px;
  background-color: #ec3b49;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .news-index .container .list .item a .new {
    padding: 0.25em 0.4em;
    margin-right: 0.5em;
    font-size: 1.2rem;
  }
}

.news-index .container .list .item a .date {
  display: inline;
  margin-right: 28px;
}

@media only screen and (max-width: 750px) {
  .news-index .container .list .item a .date {
    margin-right: 0;
  }
}

.news-index .container .list .item a .title {
  display: inline;
  color: #009543;
}

@media only screen and (max-width: 750px) {
  .news-index .container .list .item a .title {
    display: block;
    margin-top: 0.5em;
  }
}

.news-index .container .list .item a:after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 75px;
  height: 100%;
  background: #eee url("../img/common/arw.png") no-repeat center center;
  content: "";
}

@media only screen and (max-width: 750px) {
  .news-index .container .list .item a:after {
    width: 14%;
  }
}

.news-index .container .pager {
  margin-top: 46px;
}

@media only screen and (max-width: 750px) {
  .news-index .container .pager {
    margin-top: 5.97015%;
  }
}

.news-index .container .pager ul {
  text-align: center;
  font-size: 0;
}

.news-index .container .pager ul li {
  display: inline-block;
  min-width: 2.57143em;
  text-align: center;
  color: #009944;
  font-size: 1.4rem;
  line-height: 1;
}

.news-index .container .pager ul li a {
  display: inline-block;
  min-width: 2.57143em;
  padding: 0.78571em 2px;
  margin: 0 5px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #daf65c;
  text-decoration: none;
  color: #009944;
}

.news-detail {
  padding: 40px 0 360px;
}

@media only screen and (max-width: 750px) {
  .news-detail {
    padding: 6.66667% 5.33333% 51.33333%;
  }
}

.news-detail .container {
  position: relative;
  max-width: 902px;
  margin: 0 auto;
}

.news-detail .container .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .title {
    font-size: 1.8rem;
  }
}

.news-detail .container .info {
  margin-top: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .info {
    margin-top: 2.98507%;
  }
}

.news-detail .container .info:after {
  clear: both;
  display: block;
  content: "";
}

.news-detail .container .info .date {
  float: left;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .info .date {
    float: none;
  }
}

.news-detail .container .info .target {
  float: left;
  margin-left: 20px;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .info .target {
    float: none;
    margin-left: 0;
    margin-top: 1.79104%;
  }
}

.news-detail .container .info .target dt {
  display: inline-block;
  padding: 4px 12px;
  background-color: #40b373;
  vertical-align: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.news-detail .container .info .target dd {
  display: inline;
  margin-left: 12px;
}

.news-detail .container .info .status {
  float: right;
  font-size: 0;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .info .status {
    float: none;
    margin-top: 1.79104%;
  }
}

.news-detail .container .info .status .status-0,
.news-detail .container .info .status .status-1,
.news-detail .container .info .status .new,
.news-detail .container .info .status .category-1,
.news-detail .container .info .status .category-2,
.news-detail .container .info .status .category-3,
.news-detail .container .info .status .category-4,
.news-detail .container .info .status .category-5,
.news-detail .container .info .status .category-6,
.news-detail .container .info .status .category-7 {
  display: inline-block;
  padding: 4px 12px;
  font-size: 1.4rem;
  line-height: 1;
}

.news-detail .container .info .status .status-0 {
  background-color: #4e4e4e;
  color: #fff;
}

.news-detail .container .info .status .status-1 {
  background-color: #3a8bd7;
  color: #fff;
}

.news-detail .container .info .status .new {
  background-color: #ec3b49;
  color: #fff;
}

.news-detail .container .info .status .category-1 {
  background-color: #fae6c7;
  color: #e8940f;
}

.news-detail .container .info .status .category-2 {
  background-color: #d2edfb;
  color: #3bb0ec;
}

.news-detail .container .info .status .category-3 {
  background-color: #ffddf5;
  color: #f373cc;
}

.news-detail .container .info .status .category-4 {
  background-color: #e8e3ce;
  color: #9c882c;
}

.news-detail .container .info .status .category-5 {
  background-color: #e3dbee;
  color: #8764b6;
}

.news-detail .container .info .status .category-6 {
  background-color: #d0eae7;
  color: #35a496;
}

.news-detail .container .info .status .category-7 {
  background-color: #daeec9;
  color: #5db714;
}

.news-detail .container .image {
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .image {
    margin-top: 4.47761%;
  }
}

.news-detail .container .image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.news-detail .container .detail {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .detail {
    margin-top: 4.47761%;
  }
}

.news-detail .container .detail p {
  font-size: 1.4rem;
  line-height: 2;
}

.news-detail .container .outline {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .outline {
    margin-top: 8.95522%;
  }
}

.news-detail .container .outline h4 {
  display: block;
  padding: 8px 24px;
  background-color: #eee;
  color: #009944;
  font-size: 2.2rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .outline h4 {
    padding: 0.5em 1em;
    font-size: 1.8rem;
  }
}

.news-detail .container .outline p {
  margin-top: 36px;
  font-size: 1.4rem;
  line-height: 2;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .outline p {
    margin-top: 4.47761%;
  }
}

.news-detail .container .join {
  margin-top: 80px;
}

@media only screen and (max-width: 750px) {
  .news-detail .container .join {
    margin-top: 8.95522%;
  }
}

.news-detail .container .join a {
  display: block;
  width: 235px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 3px;
  background-color: #ec3b49;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.news-detail .container .back {
  margin-top: 26px;
  text-align: right;
}

.news-detail .container .back a {
  display: inline-block;
  padding: 5px 9px 5px 12px;
  background-color: #daf65c;
  text-decoration: none;
  color: #009944;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.news-detail .container .back a:before {
  display: inline-block;
  width: 32px;
  height: 6px;
  margin-right: 6px;
  background: url("../img/common/arw.png") no-repeat;
  vertical-align: 3px;
  content: "";
}

.first-nav ul {
  display: table;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .first-nav ul {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.first-nav ul li {
  display: table-cell;
  width: 33.33333%;
  vertical-align: top;
}

.first-nav ul li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  color: #15a956;
}

@media only screen and (max-width: 750px) {
  .first-nav ul li a {
    padding: 1.25em 0;
  }
}

@media only screen and (max-width: 750px) {
  .first-nav ul li:first-child a:first-child {
    padding: 0.66667em 0;
  }
}

.first-nav ul li.current a {
  background-color: #daf65c;
}

.first-nav ul li.color-1 a {
  background-color: #e5e5e5;
}

.first-nav ul li.color-2 a {
  background-color: #eeeeee;
}

.first-section {
  margin-top: 60px;
}

@media only screen and (max-width: 750px) {
  .first-section {
    margin-top: 8%;
  }
}

h3 {
  padding: 10px 10px 10px 24px;
  background-color: #15a956;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
h3 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}

.first-contact {
  display: table;
  width: 100%;
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.77778;
}

@media only screen and (max-width: 750px) {
  .first-contact {
    display: block;
  }
}

.first-contact .first-contact-tel,
.first-contact .first-contact-business {
  display: table-cell;
  width: 50%;
  height: 185px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  color: #15a956;
}

@media only screen and (max-width: 750px) {
  .first-contact .first-contact-tel,
  .first-contact .first-contact-business {
    display: block;
    width: 100%;
    padding: 5.33333%;
    box-sizing: border-box;
    height: auto;
  }
}

.first-contact .first-contact-tel {
  background-color: #e2f6eb;
}

.first-contact .first-contact-tel .tel {
  margin-top: 32px;
  color: #000;
  font-size: 2.6rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .first-contact .first-contact-tel .tel {
    margin-top: 2.66667%;
  }
}

.first-contact .first-contact-tel .tel:before {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 1rem;
  vertical-align: -0.15em;
  background: url("../img/first/index_contact_tel.png") no-repeat;
  background-size: cover;
  content: "";
}

.first-contact .first-contact-business {
  position: relative;
  background-color: #daf65c;
}

.first-contact .first-contact-business:before {
  position: absolute;
  right: 36px;
  bottom: 32px;
  display: block;
  width: 32px;
  height: 6px;
  background: url("../img/common/arw.png") no-repeat;
  background-size: cover;
  content: "";
}

@media only screen and (max-width: 750px) {
  .first-contact .first-contact-business:before {
    right: 2.66667%;
    bottom: 0;
    margin-bottom: 5.33333%;
  }
}

.first-contact .first-contact-business:after {
  display: inline-block;
  width: 42px;
  height: 37px;
  margin-top: 16px;
  background: url("../img/first/index_contact_business.png") no-repeat;
  background-size: cover;
  content: "";
}

@media only screen and (max-width: 750px) {
  .first-contact .first-contact-business:after {
    margin-top: 2.66667%;
  }
}

.first-index {
  padding: 60px 0 445px;
}

@media only screen and (max-width: 750px) {
  .first-index {
    padding: 0 0 60%;
  }
}.container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}.container .mv {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {.container .mv {
    margin-top: 4%;
  }
}.container .mv img {
  display: block;
  width: 100%;
  height: auto;
}.container .description {
  margin-top: 48px;
}

@media only screen and (max-width: 750px) {.container .description {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}.container .description p {
  font-size: 1.4rem;
  line-height: 2;
}.container .first-nav-section {
  margin-top: 48px;
}

@media only screen and (max-width: 750px) {.container .first-nav-section {
    margin-top: 5.33333%;
  }
}.container .first-nav-section h3 {
  position: relative;
  padding: 10px 10px 10px 72px;
  background-color: #15a956;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {.container .first-nav-section h3 {
    font-size: 1.8rem;
  }
}.container .first-nav-section h3:before {
  position: absolute;
  left: 26px;
  top: 50%;
  display: block;
  width: 22px;
  height: 27px;
  margin-top: -14px;
  background: url("../img/first/nav_title.png") no-repeat;
  content: "";
}.container .first-nav-section .first-index-nav {
  margin-top: 28px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {.container .first-nav-section .first-index-nav {
    margin-top: 4%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}.container .first-nav-section .first-index-nav:after {
  clear: both;
  display: block;
  content: "";
}.container .first-nav-section .first-index-nav .item {
  float: left;
  width: 29.66507%;
  margin-left: 5.45455%;
  margin-top: 35px;
}.container .first-nav-section .first-index-nav .item:nth-child(3n+1) {
  margin-left: 0;
  clear: left;
}.container .first-nav-section .first-index-nav .item:nth-child(-n+3) {
  margin-top: 0;
}

@media only screen and (max-width: 750px) {.container .first-nav-section .first-index-nav .item {
    width: 47.01493%;
    margin-left: 5.97015%;
    margin-top: 2.98507%;
  }.container .first-nav-section .first-index-nav .item:nth-child(3n+1) {
    margin-left: 5.97015%;
    clear: none;
  }.container .first-nav-section .first-index-nav .item:nth-child(-n+3) {
    margin-top: 2.98507%;
  }.container .first-nav-section .first-index-nav .item:nth-child(2n+1) {
    margin-left: 0;
    clear: left;
  }.container .first-nav-section .first-index-nav .item:nth-child(-n+2) {
    margin-top: 0;
  }
}.container .first-nav-section .first-index-nav .item h4 {
  display: table;
  width: 100%;
  font-size: 2.5rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {.container .first-nav-section .first-index-nav .item h4 {
    height: 5rem;
    font-size: 1.5rem;
  }
}.container .first-nav-section .first-index-nav .item h4 a {
  position: relative;
  display: table-cell;
  width: 100%;
  height: 100%;
  background-color: #daf65c;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  color: #15a956;
}.container .first-nav-section .first-index-nav .item p {
  margin: 8px 0 0 8px;
  font-size: 1.6rem;
  line-height: 2;
}

@media only screen and (max-width: 750px) {.container .first-nav-section .first-index-nav .item p {
    margin: 6.34921% 0 0 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}.container .first-nav-section .notes {
  margin-top: 36px;
  font-size: 1.4rem;
  line-height: 1.66667;
}

@media only screen and (max-width: 750px) {.container .first-nav-section .notes {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}.container .first-nav-section .notes li {
  padding-left: 1em;
  text-indent: -1em;
}.container .first-index-info {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {.container .first-index-info {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}.container .first-index-info .sub {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {.container .first-index-info .sub {
    margin-top: 4%;
  }
}.container .first-index-info .sub:first-child {
  margin-top: 0;
}.container .first-index-info .sub h4 {
  font-size: 1.4rem;
  line-height: 2;
}.container .first-index-info .sub p {
  font-size: 1.4rem;
  line-height: 2;
}.container .first-index-contact {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {.container .first-index-contact {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}.container .first-index-contact > p {
  font-size: 1.4rem;
  line-height: 2;
}.container .first-index-contact .first-contact {
  margin-top: 24px;
}.container .first-index-flow {
  margin-top: 40px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {.container .first-index-flow {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}.container .first-index-flow:after {
  clear: both;
  display: block;
  content: "";
}.container .first-index-flow .item {
  float: left;
  position: relative;
  width: 230px;
  padding-left: 35px;
}

@media only screen and (max-width: 750px) {.container .first-index-flow .item {
    width: 100%;
    padding-left: 0;
    padding-top: 14.92537%;
  }
}.container .first-index-flow .item:before {
  position: absolute;
  left: 10px;
  top: 74px;
  display: block;
  width: 18px;
  height: 31px;
  background: url("../img/first/index_flow_arw.png") no-repeat;
  content: "";
}

@media only screen and (max-width: 750px) {.container .first-index-flow .item:before {
    left: 50%;
    top: 0;
    width: 8.0597%;
    height: 0;
    padding-top: 4.47761%;
    margin-left: -4.02985%;
    margin-top: 2.98507%;
    background-image: url("../img/first/index_flow_arw_sp.png");
    background-size: cover;
  }
}.container .first-index-flow .item:first-child {
  padding-left: 10px;
}

@media only screen and (max-width: 750px) {.container .first-index-flow .item:first-child {
    padding-left: 0;
    padding-top: 0;
  }
}.container .first-index-flow .item:first-child:before {
  display: none;
}.container .first-index-flow .item .thumb {
  width: 180px;
  margin: 0 auto;
}.container .first-index-flow .item .thumb img {
  display: block;
  width: 100%;
  height: auto;
}.container .first-index-flow .item h4 {
  margin-top: 24px;
  text-align: center;
  color: #272727;
  font-size: 2.2rem;
  line-height: 1.22727;
}.container .first-index-flow .item h4 small {
  font-size: 1.4rem;
  line-height: 1;
}.container .first-index-flow .item p {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 2;
}.container .first-index-turn {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {.container .first-index-turn {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}.container .first-index-turn h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}.container .first-index-turn p {
  margin-top: 2em;
  font-size: 1.4rem;
  line-height: 2;
}

.first-manifesto {
  padding: 60px 0 385px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto {
    padding: 0 0 51.33333%;
  }
}

.first-manifesto .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.first-manifesto .container .mv {
  margin-top: 36px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .mv {
    margin-top: 3.33333%;
  }
}

.first-manifesto .container .mv img {
  display: block;
  width: 100%;
  height: auto;
}
.first-manifesto .container .mv .top-mv .container {
    width: 100%;
    height: 0;
    padding-top: 42.693%;
    background-color: #fff;
}

.first-manifesto .container .first-manifesto-renewal {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-renewal {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-renewal h3 {
  padding-top: 6.69856%;
  background: url("../img/first/manifesto_renewal_title.png") no-repeat center top;
  background-size: 100% auto;
  color: #15a956;
  font-size: 2.8rem;
  line-height: 1.46429;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-renewal h3 {
    font-size: 1.8rem;
  }
}

.first-manifesto .container .first-manifesto-renewal .section-container {
  margin-top: 50px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-renewal .section-container {
    margin-top: 3.73134%;
  }
}

.first-manifesto .container .first-manifesto-renewal .section-container .image {
  float: right;
  width: 66.69856%;
  margin-left: -10.52632%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-renewal .section-container .image {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

.first-manifesto .container .first-manifesto-renewal .section-container .image img {
  display: block;
  width: 100%;
  height: auto;
}

.first-manifesto .container .first-manifesto-renewal .section-container p {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 2;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-renewal .section-container p {
    margin-top: 3.73134%;
  }
}

.first-manifesto .container .first-manifesto-renewal .section-container p::nth-of-type(1) {
  margin-top: 0;
}

.first-manifesto .container .first-manifesto-renewal .section-container .by {
  display: block;
  text-align: right;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

.first-manifesto .container .first-manifesto-message h3,
.first-manifesto .container .first-manifesto-service h3 {
  position: relative;
  padding: 10px 10px 10px 72px;
  background-color: #15a956;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message h3,
  .first-manifesto .container .first-manifesto-service h3 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}

.first-manifesto .container .first-manifesto-message h3:before,
.first-manifesto .container .first-manifesto-service h3:before {
  position: absolute;
  left: 26px;
  top: 50%;
  display: block;
  content: "";
}

.first-manifesto .container .first-manifesto-message {
  margin-top: 85px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message {
    margin-top: 8%;
  }
}

.first-manifesto .container .first-manifesto-message h3:before {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: url("../img/first/manifesto_message_title.png") no-repeat;
}

.first-manifesto .container .first-manifesto-message .section-container {
  margin-top: 65px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container {
    margin-top: 5.33333%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item {
  overflow: hidden;
}

.first-manifesto .container .first-manifesto-message .section-container .item:after {
  clear: both;
  display: block;
  content: "";
}

.first-manifesto .container .first-manifesto-message .section-container .item .image img {
  display: block;
  width: 100%;
  height: auto;
}

.first-manifesto .container .first-manifesto-message .section-container .item .text {
  position: relative;
  width: 50%;
  padding: 50px 30px 30px;
  box-sizing: border-box;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container .item .text {
    width: 90%;
    padding: 7.46269% 4.47761% 4.47761%;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item .text:before {
  position: absolute;
  right: 32px;
  top: 28px;
  display: block;
  content: "";
}

.first-manifesto .container .first-manifesto-message .section-container .item .text h4 {
  position: relative;
  color: #15a956;
  font-size: 2rem;
  line-height: 1.575;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container .item .text h4 {
    font-size: 1.8rem;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item .text p {
  position: relative;
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.first-manifesto .container .first-manifesto-message .section-container .item .text ul {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.75;
}

.first-manifesto .container .first-manifesto-message .section-container .item .text ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.first-manifesto .container .first-manifesto-message .section-container .item .text ul li:before {
  content: "・";
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(1) .image {
  float: left;
  width: 66.79426%;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(1) .text {
  float: right;
  margin-top: 6.31579%;
  margin-left: -16.84211%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container .item:nth-child(1) .text {
    margin-top: 27%;
    margin-left: -57%;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(1) .text:before {
  width: 123px;
  height: 88px;
  background: url("../img/first/manifesto_message_num_1.png") no-repeat;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(2) {
  margin-top: 0;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(2) .image {
  float: right;
  width: 70.7177%;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(2) .text {
  float: left;
  margin-top: 13.97129%;
  margin-right: -20.76555%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container .item:nth-child(2) .text {
    margin-top: 30%;
    margin-right: -61%;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(2) .text:before {
  width: 124px;
  height: 88px;
  background: url("../img/first/manifesto_message_num_2.png") no-repeat;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(3) {
  margin-top: 5.26316%;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(3) .image {
  float: left;
  width: 100%;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(3) .text {
  float: right;
  margin-top: 30.33493%;
  margin-left: -50.23923%;
  padding-top: 64px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container .item:nth-child(3) .text {
    margin-top: 35%;
    margin-left: -90%;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(3) .text:before {
  width: 124px;
  height: 88px;
  background: url("../img/first/manifesto_message_num_3.png") no-repeat;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(4) {
  float: left;
  width: 50%;
  margin-top: 4.97608%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container .item:nth-child(4) {
    float: none;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(4) .text {
  width: 100%;
  padding-top: 64px;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(4) .text:before {
  width: 127px;
  height: 88px;
  background: url("../img/first/manifesto_message_num_4.png") no-repeat;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(4) .text p {
  margin-top: 37px;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(5) {
  float: right;
  width: 50%;
  margin-top: 4.97608%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-message .section-container .item:nth-child(5) {
    float: none;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(5) .text {
  width: 100%;
}

.first-manifesto .container .first-manifesto-message .section-container .item:nth-child(5) .text:before {
  width: 124px;
  height: 88px;
  background: url("../img/first/manifesto_message_num_5.png") no-repeat;
}

.first-manifesto .container .first-manifesto-message .section-container .image-bottom {
  clear: both;
  padding-top: 25px;
}

.first-manifesto .container .first-manifesto-message .section-container .image-bottom img {
  display: block;
  width: 100%;
  height: auto;
}

.first-manifesto .container .first-manifesto-service {
  margin-top: 90px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service {
    margin-top: 8%;
  }
}

.first-manifesto .container .first-manifesto-service h3:before {
  width: 29px;
  height: 29px;
  margin-top: -14px;
  background: url("../img/first/manifesto_service_title.png") no-repeat;
}

.first-manifesto .container .first-manifesto-service .item {
  position: relative;
  box-sizing: border-box;
  background-color: #daf65c;
}

.first-manifesto .container .first-manifesto-service .item h4 {
  color: #15a956;
  font-size: 2rem;
  line-height: 1.2;
}

.first-manifesto .container .first-manifesto-service .item p {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.first-manifesto .container .first-manifesto-service .item:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: "";
}

.first-manifesto .container .first-manifesto-service .image img {
  display: block;
  width: 100%;
  height: auto;
}

.first-manifesto .container .first-manifesto-service .row-1 {
  margin-top: 25px;
}

.first-manifesto .container .first-manifesto-service .row-1 {
  display: table;
  width: 100%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-1 {
    dislay: block;
  }
}

.first-manifesto .container .first-manifesto-service .row-1 .image,
.first-manifesto .container .first-manifesto-service .row-1 .item {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-1 .image,
  .first-manifesto .container .first-manifesto-service .row-1 .item {
    display: block;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-service .row-1 .item {
  padding: 10px 80px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-1 .item {
    padding: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-service .row-1 .item:after {
  left: -20px;
  top: 50%;
  border-right: 20px solid #daf65c;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-top: -22px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-1 .item:after {
    display: none;
  }
}

.first-manifesto .container .first-manifesto-service .row-2 {
  overflow: hidden;
}

.first-manifesto .container .first-manifesto-service .row-2:after {
  clear: both;
  display: block;
  content: "";
}

.first-manifesto .container .first-manifesto-service .row-2 .group {
  float: left;
  width: 50%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-2 .group {
    float: none;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) {
  display: table;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) {
    display: block;
  }
}

.first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .image,
.first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .item {
  display: table-cell;
  width: 50%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .image,
  .first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .item {
    display: block;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .item {
  padding: 10px 25px;
  vertical-align: middle;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .item {
    padding: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .item:after {
  left: -20px;
  top: 50%;
  border-right: 20px solid #daf65c;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-top: -22px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-2 .group:nth-child(1) .item:after {
    display: none;
  }
}

.first-manifesto .container .first-manifesto-service .row-3 {
  overflow: hidden;
}

.first-manifesto .container .first-manifesto-service .row-3:after {
  clear: both;
  display: block;
  content: "";
}

.first-manifesto .container .first-manifesto-service .row-3 .group {
  float: left;
  display: table;
  width: 50%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-3 .group {
    float: none;
    display: block;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-service .row-3 .group .image,
.first-manifesto .container .first-manifesto-service .row-3 .group .item {
  display: table-cell;
  width: 50%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-3 .group .image,
  .first-manifesto .container .first-manifesto-service .row-3 .group .item {
    display: block;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-service .row-3 .group .item {
  padding: 10px 25px;
  vertical-align: middle;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-3 .group .item {
    padding: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-service .row-3 .group:nth-child(1) .item:after {
  right: -20px;
  top: 50%;
  border-left: 20px solid #daf65c;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-top: -22px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-3 .group:nth-child(1) .item:after {
    display: none;
  }
}

.first-manifesto .container .first-manifesto-service .row-3 .group:nth-child(2) .item:after {
  left: -20px;
  top: 50%;
  border-right: 20px solid #daf65c;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-top: -22px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-3 .group:nth-child(2) .item:after {
    display: none;
  }
}

.first-manifesto .container .first-manifesto-service .row-4 {
  display: table;
  width: 100%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-4 {
    display: block;
  }
}

.first-manifesto .container .first-manifesto-service .row-4 .image,
.first-manifesto .container .first-manifesto-service .row-4 .item {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-4 .image,
  .first-manifesto .container .first-manifesto-service .row-4 .item {
    display: block;
  }
}

.first-manifesto .container .first-manifesto-service .row-4 .image {
  width: 25%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-4 .image {
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-service .row-4 .item {
  width: 50%;
  padding: 10px 80px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-4 .item {
    width: 100%;
    padding: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-service .row-4 .item:after {
  left: -20px;
  top: 50%;
  border-right: 20px solid #daf65c;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-top: -22px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-4 .item:after {
    display: none;
  }
}

.first-manifesto .container .first-manifesto-service .row-5 {
  display: table;
  width: 100%;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-5 {
    display: block;
  }
}

.first-manifesto .container .first-manifesto-service .row-5 .image,
.first-manifesto .container .first-manifesto-service .row-5 .item {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-5 .image,
  .first-manifesto .container .first-manifesto-service .row-5 .item {
    display: block;
    width: 100%;
  }
}

.first-manifesto .container .first-manifesto-service .row-5 .item {
  padding: 10px 80px;
  background-color: #15a956;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-5 .item {
    padding: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-service .row-5 .item:after {
  left: -20px;
  top: 50%;
  border-right: 20px solid #15a956;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-top: -22px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-service .row-5 .item:after {
    display: none;
  }
}

.first-manifesto .container .first-manifesto-service .row-5 .item h4,
.first-manifesto .container .first-manifesto-service .row-5 .item p {
  color: #fff;
}

.first-manifesto .container .first-manifesto-contact {
  margin-top: 80px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-contact {
    margin-top: 8%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}

.first-manifesto .container .first-manifesto-contact h3 {
  text-align: center;
  color: #15a956;
  font-size: 2.2rem;
  line-height: 1.72727;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-contact h3 {
    font-size: 1.4rem;
  }
}

.first-manifesto .container .first-manifesto-contact .first-contact {
  margin-top: 32px;
}

@media only screen and (max-width: 750px) {
  .first-manifesto .container .first-manifesto-contact .first-contact {
    margin-top: 5.33333%;
  }
}

.first-staff {
  padding: 60px 0 445px;
}

@media only screen and (max-width: 750px) {
  .first-staff {
    padding: 0 0 51.33333%;
  }
}

.first-staff .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.first-staff .first-staff-group {
  margin-top: 84px;
}
@media only screen and (max-width: 750px) {
  .first-staff .first-staff-group {
    margin-top: 11.200000000000001%;
  }
}
.first-staff .first-staff-group:nth-child(2) {
  margin-top: 50px;
}
@media only screen and (max-width: 750px) {
  .first-staff .first-staff-group:nth-child(2) {
    margin-top: 6.666666666666667%;
  }
}
.first-staff .first-staff-group h3 {
  padding: 10px 10px 10px 24px;
  background-color: #15a956;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .first-staff .first-staff-group h3 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
.first-staff .section-container {
  margin-top: 40px;
}
@media only screen and (max-width: 750px) {
  .first-staff .section-container {
    margin-top: 5.333333333333334%;
    margin-left: 2.66666666666666%;
    margin-right: 2.66666666666666%;
  }
}
.first-staff .section-container:after {
  clear: both;
  display: block;
  content: "";
}
.first-staff .staff-item {
  float: left;
  position: relative;
  width: 330px;
  margin: 36px 0 0 27px;
  padding: 150px 0 0 0;
}
@media only screen and (max-width: 750px) {
  .first-staff .staff-item {
    float: none;
    width: 100%;
    margin: 4.8% 0 0 0;
    padding: 40% 0 0 0;
  }
}
.first-staff .staff-item:nth-child(-n+3) {
  margin-top: 0;
}
@media only screen and (max-width: 750px) {
  .first-staff .staff-item:nth-child(-n+3) {
    margin-top: 4.8%;
  }
  .first-staff .staff-item:first-child {
    margin-top: 0;
  }
}
.first-staff .staff-item:nth-child(3n+1) {
  margin-left: 0;
}
.first-staff .staff-item-info {
  padding: 42px 0 18px 0;
  background-color: #daf65c;
  color: #009944;
}
@media only screen and (max-width: 750px) {
  .first-staff .staff-item-info {
    padding: 11% 0 2.4% 0;
  }
}
.first-staff .staff-item-info h4 {
  display: block;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
}
.first-staff .staff-item-info small {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
}
.first-staff .staff-item-text {
  padding: 24px 30px 36px;
  border: 1px solid #daf65c;
  background-color: #fff;
}
@media only screen and (max-width: 750px) {
  .first-staff .staff-item-text {
    padding: 3.2% 4% 4.8%;
  }
}
.first-staff .staff-item-text strong {
  display: block;
  text-align: left;
  color: #009944;
  font-size: 1.7rem;
  line-height: 1.4;
}
.first-staff .staff-item-text p {
  margin-top: 16px;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.8;
}
.first-staff .staff-item-pic {
  position: absolute;
  left: 50%;
  top: 0;
  width: 180px;
  height: 180px;
  border-radius: 90px;
  margin-left: -90px;
  overflow: hidden;
}
@media only screen and (max-width: 750px) {
  .first-staff .staff-item-pic {
    width: 48%;
    height: auto;
    border-radius: 50%;
    margin-left: -24%;
  }
}
.first-staff .staff-item-pic img {
  display: block;
  width: 100%;
  height: auto;
}

/*===============================================
 counseling
===============================================*/
div.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.career-counseling h4,
.advise h4,
.support h4,
.flow h4,
.reserve h4 {
  background-color: #eee;
  color: #009944;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 35px;
  padding-left: 25px;
}

@media only screen and (max-width: 750px) {
  .career-counseling h4,
  .advise h4,
  .support h4,
  .flow h4,
  .reserve h4 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 3.33vw;
    padding: 3.33vw;
  }
}

.counseling-mv {
  background-color: #fff;
  margin-bottom: 50px;
  padding-top: 115px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .counseling-mv {
    margin-bottom: 30px;
    padding-top: 20px;
  }
}

.counseling-mv h2 {
  color: #40b373;
  font-size: 3.2rem;
  margin: 0 auto 35px;
  padding: 0;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .counseling-mv h2 {
    box-sizing: border-box;
    font-size: 2rem;
    line-height: 1.35;
    margin: 0;
    padding: 0 5.33vw 6vw;
    text-align: right;
    width: 100%;
  }
}

.counseling-mv div.pc-only {
  background: url("../img/counseling/counseling_mv.jpg") left top;
  height: 269px;
}

@media only screen and (max-width: 750px) {
  .counseling-mv img {
    width: 100%;
    max-width: 750px;
  }
}

.feature,
.career-counseling,
.advise,
.support,
.flow,
.reserve {
  font-size: 1.4rem;
  line-height: 2;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .feature,
  .career-counseling,
  .advise,
  .support,
  .flow,
  .reserve {
    box-sizing: border-box;
    font-size: 1.4rem;
    margin-left: 1.4rem;
    margin: 0;
    padding: 0 5.33vw 9.06vw;
    width: 100%;
  }
}

.feature {
  padding-bottom: 70px;
}

@media only screen and (max-width: 750px) {
  .feature {
    padding: 0 5.33vw 8vw;
  }
}

.feature p.lead {
  margin-bottom: 55px;
}

@media only screen and (max-width: 750px) {
  .feature p.lead {
    font-size: 1.4rem;
    margin-bottom: 6vw;
  }
}

.feature h3 {
  background-color: #40b373;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 38px;
  padding: 0 70px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .feature h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 5.33vw;
    padding: 2.53vw 0 2.53vw 70px;
  }
}

.feature h3:before {
  content: "";
  background: transparent url("../img/counseling/counseling_ico.png") no-repeat;
  position: absolute;
  top: 50%;
  left: 25px;
  height: 22px;
  width: 25px;
  transform: translate(-50%, -50%);
}

.feature .text {
  float: left;
  width: 580px;
}

@media only screen and (max-width: 750px) {
  .feature .text {
    float: none;
    width: 100%;
  }
}

.feature .text ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  .feature .text ul {
    margin-bottom: 0;
  }
}

.feature .photo {
  float: right;
  width: 348px;
}

@media only screen and (max-width: 750px) {
  .feature .photo {
    float: none;
    margin-bottom: 5.33vw;
    text-align: center;
    width: 100%;
  }
}

.feature .photo img {
  width: 100%;
  max-width: 658px;
}

.career-counseling .item {
  background-color: #daf65c;
  box-sizing: border-box;
  color: #009944;
  float: left;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.875;
  margin-top: 35px;
  margin-left: 60px;
  padding: 25px;
  position: relative;
  height: 140px;
  width: 309px;
}

.career-counseling .item:after {
  content: "";
  background: transparent url("../img/counseling/counseling_ico_02.png") no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 25px;
  right: 25px;
  height: 22px;
  width: 25px;
}

.career-counseling .item:nth-child(3n + 1) {
  margin-left: 0;
  clear: left;
}

.career-counseling .item:nth-child(-n + 3) {
  margin-top: 0;
}

@media only screen and (max-width: 750px) {
  .career-counseling .item {
    float: none;
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin-top: 4vw;
    margin-left: 0;
    padding: 5.33vw 8vw 17.06vw;
    height: auto;
    width: 100%;
  }
  .career-counseling .item:after {
    bottom: 6.66vw;
    right: 6;
    height: 6.53vw;
    width: 7.33vw;
  }
  .career-counseling .item:nth-child(-n + 3) {
    margin-top: 4vw;
  }
  .career-counseling .item:first-child {
    margin-top: 0;
  }
  .career-counseling .item:nth-of-type(7) {
    margin-bottom: 4vw;
  }
}

.career-counseling p {
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  bottom: 60px;
  right: 0;
  text-align: right;
}

@media only screen and (max-width: 750px) {
  .career-counseling p {
    float: none;
    font-size: 1.5rem;
    position: relative;
    bottom: 0;
  }
}

.advise .advise-innner {
  margin: auto;
  max-width: 748px;
}

.advise .advise-innner .demand,
.advise .advise-innner .answer {
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding: 35px;
  width: 584px;
}

@media only screen and (max-width: 750px) {
  .advise .advise-innner .demand,
  .advise .advise-innner .answer {
    font-size: 1.5rem;
    line-height: 1.66;
    padding: 6vw 8vw;
    width: 100%;
  }
}

.advise .advise-innner .demand:after,
.advise .advise-innner .answer:after {
  content: "";
  position: absolute;
  height: 11px;
  width: 25px;
}

.advise .advise-innner .demand {
  background-color: #40b373;
  color: #fff;
  margin-left: 0;
}

.advise .advise-innner .demand:after {
  background: transparent url("../img/counseling/baloon_demand.png") no-repeat;
  top: 47px;
  left: -25px;
}

@media only screen and (max-width: 750px) {
  .advise .advise-innner .demand:after {
    top: 7.06vw;
    left: -3.33vw;
  }
}

.advise .advise-innner .answer {
  background-color: #eee;
  color: #343434;
  margin-left: auto;
  margin-right: 0;
}

.advise .advise-innner .answer:after {
  background: transparent url("../img/counseling/baloon_answer.png") no-repeat;
  top: 47px;
  right: -25px;
}

@media only screen and (max-width: 750px) {
  .advise .advise-innner .answer:after {
    top: 7.06vw;
    right: -3.33vw;
  }
}

.advise .advise-innner .answer p {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.84;
  margin-top: 30px;
}

@media only screen and (max-width: 750px) {
  .advise .advise-innner .answer p {
    background-color: #fff;
    border: 1px solid rgba(46, 46, 46, 0.17);
    font-size: 1.4rem;
    padding: 4.93vw 3.73vw;
  }
}

.advise .advise-innner .answer p strong {
  font-size: 1.6rem;
}

@media only screen and (max-width: 750px) {
  .advise .advise-innner .answer p strong {
    font-size: 1.4rem;
  }
}

.advise .talk {
  background: transparent url("../img/counseling/counseling_02.jpg") no-repeat;
  margin-top: 45px;
  position: relative;
  height: 155px;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .advise .talk {
    background: transparent url("../img/counseling/sp_counseling_02.jpg") no-repeat;
    background-size: 100%;
    margin-top: 4.8vw;
    height: 28.4vw;
    max-height: 213px;
    width: 100%;
    max-width: 664px;
  }
}

.advise .talk .title {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 15px;
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translate(0, -50%);
}

@media only screen and (max-width: 750px) {
  .advise .talk .title {
    font-size: 1.5rem;
    letter-spacing: 2vw;
    right: -25%;
    transform: translate(-50%, -50%);
  }
}

.advise .talk a.more-button {
  background-color: #daf65c;
  color: #009944;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 10px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  .advise .talk a.more-button {
    font-size: 1.2rem;
    padding: 1.06vw 1.6vw;
    right: 2.26vw;
    bottom: 2.4vw;
  }
}

.advise .talk a.more-button:before {
  content: "";
  background: url("../img/common/arw.png") no-repeat;
  display: inline-block;
  margin-right: 6px;
  height: 6px;
  width: 32px;
  vertical-align: middle;
}

.support p {
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  .support p {
    margin-bottom: 7.33vw;
  }
}

.flow .item {
  color: #272727;
  float: left;
  margin-top: 40px;
  margin-left: 50px;
  position: relative;
  text-align: center;
  width: 224px;
}

.flow .item:after {
  content: "";
  background: transparent url("../img/counseling/counseling_next.png") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 74px;
  left: -29px;
  height: 31px;
  width: 17px;
}

.flow .item:nth-child(4n + 1) {
  margin-left: 0;
  clear: left;
}

.flow .item:nth-child(-n + 4) {
  margin-top: 0;
}

.flow .item:nth-child(5) {
  margin-left: 274px;
}

@media only screen and (max-width: 750px) {
  .flow .item:nth-child(5) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 750px) {
  .flow .item {
    float: left;
    margin-top: 6.66vw;
    margin-bottom: 12.8vw;
    margin-left: 0;
    width: 100%;
  }
  .flow .item:after {
    content: "";
    background: transparent url("../img/counseling/sp_counseling_next.png") no-repeat;
    background-size: 100%;
    top: initial;
    bottom: -6.4vw;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 3.86vw;
    max-height: 29vw;
    width: 7.2vw;
    max-width: 54px;
  }
  .flow .item:nth-child(6) {
    margin-bottom: 0;
  }
  .flow .item:nth-child(6):after {
    background: none;
  }
}

.flow .item img {
  max-width: 179px;
}

@media only screen and (max-width: 750px) {
  .flow .item img {
    width: 35.86vw;
    max-width: 269px;
  }
}

.flow .item strong {
  display: block;
  font-size: 2.2rem;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .flow .item strong {
    font-size: 1.65rem;
  }
}

.flow .item p {
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .flow .item small {
    display: inline-block;
  }
}

.reserve .table-wrap {
  display: table;
}

@media only screen and (max-width: 750px) {
  .reserve .table-wrap {
    display: block;
  }
}

.reserve .tel,
.reserve .attention {
  color: #009944;
  display: table-cell;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  height: 188px;
  width: 524px;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .reserve .tel,
  .reserve .attention {
    box-sizing: border-box;
    display: block;
    font-size: 1.44rem;
    padding: 7.2vw;
    height: 39vw;
    width: 100%;
  }
}

.reserve .tel {
  background-color: #e2f6eb;
}

.reserve .tel .number {
  color: #000;
  display: inline-block;
  font-size: 2.7rem;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .reserve .tel .number {
    font-size: 2.128rem;
  }
}

.reserve .tel .number:before {
  content: "";
  background: transparent url("../img/counseling/tel_ico.png") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: -25px;
  height: 26px;
  width: 26px;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 750px) {
  .reserve .tel .number:before {
    left: -4vw;
    height: 5.46vw;
    max-height: 41px;
    width: 5.46vw;
    max-width: 41px;
  }
}

.reserve .attention {
  background-color: #daf65c;
  position: relative;
}

.reserve .attention p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.reserve ul.info {
  list-style-type: none;
  margin-top: 35px;
  margin-left: 1.4rem;
}

.reserve ul.info li:before {
  content: '※';
  margin-left: -1.4rem;
}

/*===============================================
 training
===============================================*/
.training-menu h4 {
  background-color: #eee;
  color: #009944;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 35px;
  padding-left: 25px;
}

@media only screen and (max-width: 750px) {
  .training-menu h4 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 3.33vw;
    padding: 3.33vw;
  }
}

.training-mv {
  background-color: #fff;
  margin-bottom: 50px;
  padding-top: 115px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .training-mv {
    margin-bottom: 30px;
    padding-top: 20px;
  }
}

.training-mv h2 {
  color: #40b373;
  font-size: 3.2rem;
  margin: 0 auto 35px;
  padding: 0;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .training-mv h2 {
    box-sizing: border-box;
    font-size: 2rem;
    line-height: 1.35;
    margin: 0;
    padding: 0 5.33vw 6vw;
    text-align: right;
    width: 100%;
  }
}

.training-mv div.pc-only {
  background: url("../img/training/training_mv.jpg") left top;
  height: 269px;
}

@media only screen and (max-width: 750px) {
  .training-mv img {
    width: 100%;
    max-width: 750px;
  }
}

.training-menu,
.advise,
.support {
  font-size: 1.4rem;
  line-height: 2;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .training-menu,
  .advise,
  .support {
    box-sizing: border-box;
    font-size: 1.4rem;
    margin-left: 1.4rem;
    margin: 0;
    padding: 0 5.33vw 9.06vw;
    width: 100%;
  }
}

.training.feature ul,
.training-menu ul,
.advise ul {
  list-style-type: none;
  margin-top: 35px;
  margin-left: 1.4rem;
}

.training.feature ul li:before,
.training-menu ul li:before,
.advise ul li:before {
  content: '※';
  margin-left: -1.4rem;
}

.training.feature h3:before {
  content: "";
  background: transparent url("../img/training/training_ico.png") no-repeat;
  height: 30px;
  width: 30px;
}

/*===============================================
 hello_work
===============================================*/
/*
a {
    color: #000;
}
a:hover {
    opacity: 0.7;
    text-decoration: none;
}
*/
.pc-only {
  display: block;
}

@media only screen and (max-width: 750px) {
  .pc-only {
    display: none!important;
  }
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 750px) {
  .sp-only {
    display: block;
  }
}

.hello-work-mv {
  background-color: #fff;
  margin-bottom: 50px;
  padding-top: 115px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .hello-work-mv {
    margin-bottom: 30px;
    padding-top: 20px;
  }
}

.hello-work-mv h2 {
  color: #40b373;
  font-size: 3.2rem;
  margin: 0 auto 35px;
  padding: 0;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .hello-work-mv h2 {
    box-sizing: border-box;
    font-size: 2rem;
    line-height: 1.35;
    margin: 0;
    padding: 0 5.33vw 6vw;
    text-align: right;
    width: 100%;
  }
}

.hello-work-mv h2 span.floor {
  background-color: #daf65c;
  border-radius: 100%;
  display: inline-block;
  font-size: 2.7rem;
  line-height: 2.166;
  margin-right: 25px;
  text-align: center;
  height: 5.85rem;
  width: 5.85rem;
}

@media only screen and (max-width: 750px) {
  .hello-work-mv h2 span.floor {
    display: block;
    font-size: 1.68rem;
    margin: auto 0 2.66vw auto;
    height: 3.5rem;
    width: 3.5rem;
  }
}

.hello-work-mv div.pc-only {
  background: url("../img/hello_work/hello_work_mv.jpg") left top;
  height: 269px;
}

@media only screen and (max-width: 750px) {
  .hello-work-mv img {
    width: 100%;
    max-width: 750px;
  }
}

.summary {
  margin: 0 auto;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .summary {
    box-sizing: border-box;
    margin: 0;
    padding: 0 5.33vw 4vw;
    width: 100%;
  }
}

.summary:after {
  clear: both;
  display: block;
  content: "";
}

.summary p.lead {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 55px;
}

@media only screen and (max-width: 750px) {
  .summary p.lead {
    font-size: 1.4rem;
    margin-bottom: 6vw;
  }
}

.summary h3 {
  background-color: #40b373;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 38px;
  padding: 0 70px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .summary h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 5.33vw;
    padding: 2.53vw 0 2.53vw 70px;
  }
}

.summary h3:before {
  content: "";
  background: transparent url("../img/hello_work/hello_work_ico.png") no-repeat;
  position: absolute;
  top: 50%;
  left: 25px;
  height: 25px;
  width: 25px;
  transform: translate(-50%, -50%);
}

.summary .text {
  float: left;
  width: 496px;
}

@media only screen and (max-width: 750px) {
  .summary .text {
    float: none;
    width: 100%;
  }
}

.summary .text ul {
  font-size: 1.4rem;
  line-height: 2;
  list-style-type: square;
  margin-left: 2rem;
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  .summary .text ul {
    font-size: 1.4rem;
    margin-left: 1.4rem;
    margin-bottom: 5.33vw;
  }
}

.summary .text ul.info {
  margin-left: 1.4rem;
  list-style-type: none;
}

.summary .text ul.info li:before {
  content: '※';
  margin-left: -1.4rem;
}

.summary .text p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  .summary .text p {
    font-size: 1.4rem;
    margin-bottom: 5.33vw;
  }
}


.summary .photo {
  float: right;
  width: 478px;
}

@media only screen and (max-width: 750px) {
  .summary .photo {
    float: none;
    text-align: center;
    width: 100%;
  }
  .summary .photo img {
    width: 100%;
    max-width: 478px;
  }
}

.footer-space {
  background-color: #fff;
  height: 320px;
  width: 100%;
}

@media only screen and (max-width: 750px) {
  .footer-space {
    height: 42.66vw;
  }
}

/*===============================================
 workspace
===============================================*/
.workspace-mv {
  background-color: #fff;
  margin-bottom: 50px;
  padding-top: 115px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .workspace-mv {
    margin-bottom: 30px;
    padding-top: 20px;
  }
}

.workspace-mv h2 {
  color: #40b373;
  font-size: 3.2rem;
  margin: 0 auto 35px;
  padding: 0;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .workspace-mv h2 {
    box-sizing: border-box;
    font-size: 2rem;
    line-height: 1.35;
    margin: 0;
    padding: 0 5.33vw 6vw;
    text-align: right;
    width: 100%;
  }
}

.workspace-mv div.pc-only {
  background: url("../img/workspace/workspace_mv.jpg") left top;
  height: 269px;
}

@media only screen and (max-width: 750px) {
  .workspace-mv img {
    width: 100%;
    max-width: 750px;
  }
}

.workspace-section {
  font-size: 1.4rem;
  line-height: 2;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .workspace-section {
    box-sizing: border-box;
    font-size: 1.4rem;
    margin-left: 1.4rem;
    margin: 0;
    padding: 0 5.33vw 9.06vw;
    width: 100%;
  }
}

.workspace-section h3 {
  background-color: #eee;
  color: #009944;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 35px;
  padding-left: 25px;
}

@media only screen and (max-width: 750px) {
  .workspace-section h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 3.33vw;
    padding: 3.33vw;
  }
}

.workspace-section p.lead {
  margin-bottom: 55px;
}

@media only screen and (max-width: 750px) {
  .workspace-section p.lead {
    font-size: 1.4rem;
    margin-bottom: 6vw;
  }
}

.workspace-section ul {
  list-style-type: none;
  margin-top: 35px;
  margin-left: 1.4rem;
}

.workspace-section ul li:before {
  content: '※';
  margin-left: -1.4rem;
}

/*===============================================
 nursing
===============================================*/
.nursing-mv {
  background-color: #fff;
  margin-bottom: 50px;
  padding-top: 115px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .nursing-mv {
    margin-bottom: 30px;
    padding-top: 20px;
  }
}

.nursing-mv h2 {
  color: #40b373;
  font-size: 3.2rem;
  margin: 0 auto 35px;
  padding: 0;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .nursing-mv h2 {
    box-sizing: border-box;
    font-size: 2rem;
    line-height: 1.35;
    margin: 0;
    padding: 0 5.33vw 6vw;
    text-align: right;
    width: 100%;
  }
}

.nursing-mv div.pc-only {
  background: url("../img/nursing/nursing_mv.jpg") left top;
  height: 269px;
}

@media only screen and (max-width: 750px) {
  .nursing-mv img {
    width: 100%;
    max-width: 750px;
  }
}

.nursing-section {
  font-size: 1.4rem;
  line-height: 2;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  width: 1047px;
}

@media only screen and (max-width: 750px) {
  .nursing-section {
    box-sizing: border-box;
    font-size: 1.4rem;
    margin-left: 1.4rem;
    margin: 0;
    padding: 0 5.33vw 9.06vw;
    width: 100%;
  }
}

.nursing-section h3 {
  background-color: #eee;
  color: #009944;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 35px;
  padding-left: 25px;
}

@media only screen and (max-width: 750px) {
  .nursing-section h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 3.33vw;
    padding: 3.33vw;
  }
}

.nursing-section h4 {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 35px;
}

@media only screen and (max-width: 750px) {
  .nursing-section h4 {
    font-size: 1.3rem;
    margin-top: 4.66vw;
  }
}

.nursing-section p.lead {
  margin-bottom: 55px;
}

@media only screen and (max-width: 750px) {
  .nursing-section p.lead {
    font-size: 1.4rem;
    margin-bottom: 6vw;
  }
}

.nursing-section ul {
  list-style-type: disc;
  margin-left: 2rem;
}

.nursing-section ul.info {
  list-style-type: none;
  margin-left: 1.4rem;
}

.nursing-section ul.info li:before {
  content: '※';
  margin-left: -1.4rem;
}

.open-hours {
  background-color: #fff;
  border: 1px solid rgba(46, 46, 46, 0.17);
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 2;
  padding: 25px;
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width: 750px) {
.open-hours {
    font-size: 1.4rem;
    margin-bottom: 5.33vw;
  }
}

.nursing-section table {
  width: 100%;
}

.nursing-section table td {
  background-color: #fff;
  border: 1px solid #eee;
  border-collapse: collapse;
  padding: 25px;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .nursing-section table td {
    padding: 2vw;
  }
}

.nursing-section table td:first-child {
  white-space: nowrap;
}

.nursing-section .dl-item {
  float: left;
  margin-top: 35px;
  margin-left: 60px;
  position: relative;
  width: 309px;
}

.nursing-section .dl-item:after {
  content: "";
  background: transparent url("../img/nursing/dl_ico.png") no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 25px;
  right: 25px;
  height: 25px;
  width: 25px;
  max-width: 64px;
}

.nursing-section .dl-item:first-child {
  margin-left: 0;
  clear: left;
}

@media only screen and (max-width: 750px) {
  .nursing-section .dl-item {
    float: none;
    margin-top: 4vw;
    margin-left: 0;
    width: 100%;
  }
  .nursing-section .dl-item:after {
    bottom: 6.66vw;
    right: 6;
    height: 7.33vw;
    width: 7.33vw;
  }
  .nursing-section .dl-item:first-child {
    margin-top: 0;
  }
}

.nursing-section .dl-item a {
  background-color: #daf65c;
  box-sizing: border-box;
  color: #009944;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.875;
  height: 140px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  .nursing-section .dl-item a {
    font-size: 1.5rem;
    line-height: 2.5rem;
    height: auto;
    padding: 5.33vw 8vw;
  }
}

.nursing-section .dl-item a:hover {
  opacity: 0.7;
}

.access {
  padding: 44px 0;
}

@media only screen and (max-width: 750px) {
  .access {
    padding: 0;
  }
}

.access .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
  overflow: hidden;
}

.access .container:after {
  clear: both;
  display: block;
  content: "";
}

.access .container .image {
  float: right;
  width: 480px;
}

@media only screen and (max-width: 750px) {
  .access .container .image {
    float: none;
    width: 100%;
  }
  .access .container .image img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.access .container .info {
  float: left;
}

@media only screen and (max-width: 750px) {
  .access .container .info {
    float: none;
    padding: 5.33333%;
  }
}

.access .container .info .info-section {
  margin-top: 32px;
}

@media only screen and (max-width: 750px) {
  .access .container .info .info-section {
    margin-top: 8.95522%;
  }
}

.access .container .info .info-section:first-child {
  margin-top: 0;
}

.access .container .info .info-section h3 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}

.access .container .info .info-section .info-container {
  margin-top: 12px;
}

.access .container .info .info-sub {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .access .container .info .info-sub {
    margin-top: 4.47761%;
  }
}

.access .container .info .info-sub:first-child {
  margin-top: 0;
}

.access .container .info .info-sub h4 {
  color: #009944;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}

.access .container .info .info-sub table {
  margin-top: 4px;
  font-size: 1.4rem;
  line-height: 2;
}

.access .container .info .info-sub table th,
.access .container .info .info-sub table td {
  text-align: left;
}

.access .container .info .info-sub p {
  margin-top: 4px;
  font-size: 1.4rem;
  line-height: 2;
}

.access .container .info .info-sub a.map-anchor {
  display: inline-block;
  padding: 5px 10px;
  background-color: #e2f95d;
  text-decoration: none;
  color: #009944;
  line-height: 1;
}

.access .container .info .info-sub a.map-anchor:before {
  display: inline-block;
  width: 6px;
  height: 17px;
  margin-right: 10px;
  background: url("../img/common/arw_down.png") no-repeat;
  vertical-align: -3px;
  content: "";
}

.access-route {
  padding: 0 0 72px 0;
}

@media only screen and (max-width: 750px) {
  .access-route {
    padding: 5.33333% 5.33333% 10.66667% 5.33333%;
  }
}

.access-route .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
  overflow: hidden;
}

.access-route .container:after {
  clear: both;
  display: block;
  content: "";
}

.access-route .container .left {
  float: left;
  width: 46.88995%;
}

@media only screen and (max-width: 750px) {
  .access-route .container .left {
    float: none;
    width: 100%;
  }
}

.access-route .container .right {
  float: right;
  width: 46.88995%;
}

@media only screen and (max-width: 750px) {
  .access-route .container .right {
    float: none;
    width: 100%;
    margin-top: 5.97015%;
  }
}

.access-route .container .item {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .access-route .container .item {
    margin-top: 5.97015%;
  }
}

.access-route .container .item:first-child {
  margin-top: 0;
}

.access-route .container .item h3 {
  position: relative;
  padding-left: 54px;
  color: #009944;
  font-size: 1.9rem;
  line-height: 1.52632;
}

.access-route .container .item h3:before {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 42px;
  height: 29px;
  margin-top: -14px;
  background-repeat: no-repeat;
  content: "";
}

.access-route .container .item p {
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 2;
}

.access-route .container .route-train h3:before {
  background-image: url("../img/access/icon_train.png");
}

.access-route .container .route-car h3:before {
  background-image: url("../img/access/icon_car.png");
}

.access-route .container .route-bike h3:before {
  background-image: url("../img/access/icon_bike.png");
}

.access-map {
  position: relative;
  width: 100%;
  height: 390px;
  background-color: #ccc;
}

@media only screen and (max-width: 750px) {
  .access-map {
    width: 89.33333%;
    margin: 0 auto;
  }
}

.access-map #gmap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.access-facility {
  padding: 56px 0 288px 0;
}

@media only screen and (max-width: 750px) {
  .access-facility {
    padding: 8% 0 51.33333%;
  }
}

.access-facility h3 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .access-facility h3 {
    font-size: 1.8rem;
  }
}

.access-facility .container {
  position: relative;
  padding: 48px 0 80px;
  margin-top: 36px;
  background-color: #40b373;
}

@media only screen and (max-width: 750px) {
  .access-facility .container {
    padding: 5.33333%;
    margin-top: 5.33333%;
  }
}

.access-facility .container .floor-item {
  max-width: 1045px;
  margin: 48px auto 0;
}

.access-facility .container .floor-item:first-child {
  margin-top: 0;
}

.access-facility .container .floor-item h4 {
  text-align: center;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .access-facility .container .floor-item h4 {
    font-size: 1.8rem;
  }
}

.access-facility .container .floor-item .floor-container {
  margin-top: 36px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .access-facility .container .floor-item .floor-container {
    margin-top: 4.47761%;
  }
}

.access-facility .container .floor-item .floor-container:after {
  clear: both;
  display: block;
  content: "";
}

.access-facility .container .floor-item .floor-container .item {
  float: left;
  position: relative;
  width: 48.80383%;
  min-height: 211px;
  padding: 15px;
  margin-left: 2.39234%;
  margin-top: 25px;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
}

.access-facility .container .floor-item .floor-container .item:nth-child(2n+1) {
  margin-left: 0;
}

.access-facility .container .floor-item .floor-container .item:nth-child(-n+2) {
  margin-top: 0;
}

@media only screen and (max-width: 750px) {
  .access-facility .container .floor-item .floor-container .item {
    float: none;
    width: 100%;
    min-height: 0;
    padding: 4.47761%;
    margin-left: 0;
    margin-top: 4.47761%;
  }
  .access-facility .container .floor-item .floor-container .item:nth-child(-n+2) {
    margin-top: 4.47761%;
  }
  .access-facility .container .floor-item .floor-container .item:first-child {
    margin-top: 0;
  }
}

.access-facility .container .floor-item .floor-container .item:after {
  clear: both;
  display: block;
  content: "";
}

.access-facility .container .floor-item .floor-container .item .info {
  float: left;
  width: 47.05882%;
}

@media only screen and (max-width: 750px) {
  .access-facility .container .floor-item .floor-container .item .info {
    float: none;
    width: 100%;
  }
}

.access-facility .container .floor-item .floor-container .item .info h5 {
  color: #009944;
  font-size: 2.2rem;
  line-height: 1.18182;
}

@media only screen and (max-width: 750px) {
  .access-facility .container .floor-item .floor-container .item .info h5 {
    font-size: 1.8rem;
  }
}

.access-facility .container .floor-item .floor-container .item .info p {
  margin-top: 12px;
  font-size: 1.3rem;
  line-height: 1.53846;
}

.access-facility .container .floor-item .floor-container .item .thumb {
  float: right;
  width: 42.35294%;
}

@media only screen and (max-width: 750px) {
  .access-facility .container .floor-item .floor-container .item .thumb {
    float: none;
    width: 100%;
    margin-top: 4.91803%;
  }
}

.access-facility .container .floor-item .floor-container .item .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.access-facility .container .floor-item .floor-container .item .target {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 80px;
  height: 80px;
  padding: 35px 0 0 40px;
  box-sizing: border-box;
  background: url("../img/access/facility_target_bg.png") no-repeat;
}

.access-facility .container .floor-item .floor-container .item .target:before {
  display: block;
  width: 23px;
  height: 22px;
}

.access-facility .container .floor-item .floor-container .item .target span {
  display: block;
  text-align: center;
  color: #049900;
  font-size: 1.2rem;
  line-height: 1.4;
}

.access-facility .container .floor-item .floor-container .item .target span:before {
  display: block;
  width: 23px;
  height: 22px;
  margin: 0 auto 4px;
  content: "";
}

.access-facility .container .floor-item .floor-container .item .target span.target-1:before {
  background-image: url("../img/access/facility_target_1.png");
}

.access-facility .container .floor-item .floor-container .item .target span.target-2:before {
  background-image: url("../img/access/facility_target_2.png");
}

.access-facility .container .floor-item .floor-container .item-blank {
  opacity: 0.25;
}

@media only screen and (max-width: 750px) {
  .access-facility .container .floor-item .floor-container .item-blank {
    display: none;
  }
}

.member-index {
  padding: 60px 0 365px;
}

@media only screen and (max-width: 750px) {
  .member-index {
    padding: 0 0 51.33333%;
  }
}

.member-index .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.inquiry-index {
  padding: 35px 0 340px;
}

@media only screen and (max-width: 750px) {
  .inquiry-index {
    padding: 0 0 51.33333%;
  }
}

.inquiry-index .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
  overflow: hidden;
}

.inquiry-index .container .inquiry-section {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section {
    margin-top: 8%;
  }
}

.inquiry-index .container .inquiry-section:first-child {
  margin-top: 0;
}

.inquiry-index .container .inquiry-section h3 {
  position: relative;
  padding: 10px 10px 10px 72px;
  background-color: #15a956;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section h3 {
    padding-left: 56px;
    font-size: 1.8rem;
  }
}

.inquiry-index .container .inquiry-section h3:before {
  position: absolute;
  left: 26px;
  top: 50%;
  display: block;
  content: "";
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section h3:before {
    left: 16px;
  }
}

.inquiry-index .container .inquiry-section:nth-child(1) h3:before {
  width: 22px;
  height: 22px;
  margin-top: -11px;
  background: url("../img/inquiry/tel_title.png") no-repeat;
}

.inquiry-index .container .inquiry-section:nth-child(2) h3:before {
  width: 24px;
  height: 20px;
  margin-top: -10px;
  background: url("../img/inquiry/mail_title.png") no-repeat;
}

.inquiry-index .container .inquiry-section .inquiry-container {
  margin-top: 45px;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container {
    margin-top: 8%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel {
  position: relative;
  margin-top: 55px;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel {
    margin-top: 5.97015%;
  }
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel:first-child {
  margin-top: 0;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel h4 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel h4 {
    font-size: 1.8rem;
  }
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel > p {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel > p {
    margin-top: 2.98507%;
  }
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container {
  margin-top: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container {
    margin-top: 2.98507%;
  }
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container:after {
  clear: both;
  display: block;
  content: "";
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section {
  float: left;
  width: 49.2823%;
  padding: 25px 30px;
  margin-left: 1.43541%;
  margin-top: 20px;
  border: 1px solid #15a956;
  box-sizing: border-box;
  background-color: #fff;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section:nth-child(-n+2) {
  margin-top: 0;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section {
    float: none;
    width: 100%;
    padding: 2.98507%;
    margin-top: 2.98507%;
    margin-left: 0;
  }
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section:nth-child(-n+2) {
    margin-top: 2.98507%;
  }
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section:first-child {
    margin-top: 0;
  }
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section h5 {
  color: #15a956;
  font-size: 2.2rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section h5 {
    font-size: 1.8rem;
  }
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section p {
  margin-top: 15px;
  font-size: 1.3rem;
  line-height: 1.53846;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section .tel {
  font-size: 1.8rem;
  line-height: 1.16667;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section .tel a {
  text-decoration: none;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section .tel a:before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.8em;
  background: url("../img/inquiry/tel.png") no-repeat;
  background-size: cover;
  content: "";
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section table {
  margin-top: 20px;
  font-size: 1.3rem;
  line-height: 1.53846;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section table th,
.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section table td {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section table th {
  white-space: nowrap;
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-tel-container .inquiry-tel-section table td:before {
  content: "：";
}

.inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-service {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .inquiry-container .inquiry-tel .inquiry-service {
    position: relative;
    margin-top: 8.95522%;
  }
}

.inquiry-index .container .inquiry-section .form-container {
  max-width: 710px;
  margin: 40px auto 0;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container {
    margin: 8% 5.33333% 0;
  }
}

.inquiry-index .container .inquiry-section .form-container p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.inquiry-index .container .inquiry-section .form-container table {
  width: 100%;
  margin-top: 35px;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container table {
    display: block;
    margin-top: 5.97015%;
  }
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container table tbody {
    display: block;
  }
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container table tr {
    display: block;
  }
}

.inquiry-index .container .inquiry-section .form-container table th {
  width: 38.02817%;
  padding: 25px 0 0 0;
  text-align: left;
  vertical-align: top;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container table th {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 1.8rem;
  }
}

.inquiry-index .container .inquiry-section .form-container table th small {
  font-size: 1.6rem;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container table th small {
    font-size: 1.4rem;
  }
}

.inquiry-index .container .inquiry-section .form-container table th small.neccessary {
  color: #e60012;
}

.inquiry-index .container .inquiry-section .form-container table td {
  width: 61.97183%;
  padding: 10px 0 10px 25px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: top;
  font-size: 1.6rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container table td {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
}

.inquiry-index .container .inquiry-section .form-container table td input {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #15a956;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 1.6rem;
}

.inquiry-index .container .inquiry-section .form-container table td input:-ms-input-placeholder {
  color: #9dd7b7;
}

.inquiry-index .container .inquiry-section .form-container table td input::-webkit-input-placeholder {
  color: #9dd7b7;
}

.inquiry-index .container .inquiry-section .form-container table td input::-moz-placeholder {
  color: #9dd7b7;
}

.inquiry-index .container .inquiry-section .form-container table td input::-placeholder {
  color: #9dd7b7;
}

.inquiry-index .container .inquiry-section .form-container table td textarea {
  display: block;
  width: 100%;
  height: 210px;
  padding: 15px;
  border: 1px solid #15a956;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 1.6rem;
  resize: vertical;
}

.inquiry-index .container .inquiry-section .form-container .buttons {
  margin-top: 65px;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container .buttons {
    margin-top: 8.95522%;
  }
}

.inquiry-index .container .inquiry-section .form-container .buttons button {
  display: inline-block;
  width: 235px;
  padding: 1em 0;
  margin: 0 10px;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .inquiry-index .container .inquiry-section .form-container .buttons button {
    width: 130px;
    margin: 0 5px;
    font-size: 1.4rem;
  }
}

.inquiry-index .container .inquiry-section .form-container .buttons button[type="submit"] {
  background-color: #daf65c;
  color: #15a956;
}

.inquiry-index .container .inquiry-section .form-container .buttons button[type="reset"] {
  background-color: #c7c7c7;
  color: #6d6d6d;
}

.inquiry-index .container .inquiry-section .form-container .buttons button:hover {
  opacity: 0.7;
}

.privacy {
  padding: 50px 0 395px;
}

@media only screen and (max-width: 750px) {
  .privacy {
    padding: 6.66667% 5.33333% 51.33333%;
  }
}

.privacy .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.privacy .container .privacy-section {
  margin-top: 45px;
}

@media only screen and (max-width: 750px) {
  .privacy .container .privacy-section {
    margin-top: 8.95522%;
  }
}

.privacy .container .privacy-section:first-child {
  margin-top: 0;
}

.privacy .container .privacy-section .title {
  color: #009944;
  font-size: 2.2rem;
}

@media only screen and (max-width: 750px) {
  .privacy .container .privacy-section .title {
    font-size: 1.6rem;
  }
}

.privacy .container .privacy-section p {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 2;
}

.privacy .container .privacy-section p:first-child {
  margin-top: 0;
}

.privacy .container .privacy-section .privacy-contact {
  padding: 28px 36px;
  margin-top: 40px;
  background-color: #eeeeee;
}

@media only screen and (max-width: 750px) {
  .privacy .container .privacy-section .privacy-contact {
    padding: 4.47761% 5.97015%;
    margin-top: 5.97015%;
  }
}

.privacy .container .privacy-section .privacy-contact dl {
  font-size: 1.4rem;
  line-height: 2;
}

.privacy .container .privacy-section .privacy-contact dl dt {
  font-weight: bold;
}

.sitepolicy {
  padding: 50px 0 395px;
}

@media only screen and (max-width: 750px) {
  .sitepolicy {
    padding: 6.66667% 5.33333% 51.33333%;
  }
}

.sitepolicy .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.sitepolicy .container .sitepolicy-section {
  margin-top: 45px;
}

@media only screen and (max-width: 750px) {
  .sitepolicy .container .sitepolicy-section {
    margin-top: 8.95522%;
  }
}

.sitepolicy .container .sitepolicy-section:first-child {
  margin-top: 0;
}

.sitepolicy .container .sitepolicy-section .title {
  color: #009944;
  font-size: 2.2rem;
}

@media only screen and (max-width: 750px) {
  .sitepolicy .container .sitepolicy-section .title {
    font-size: 1.6rem;
  }
}

.sitepolicy .container .sitepolicy-section p {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 2;
}

.sitepolicy .container .sitepolicy-section p:first-child {
  margin-top: 0;
}

.faq {
  padding: 50px 0 395px;
}

@media only screen and (max-width: 750px) {
  .faq {
    padding: 6.66667% 5.33333% 51.33333%;
  }
}

.faq .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}

.faq .container p {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 35px;
}

.faq .container p:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 750px) {
.faq .container p {
  margin-bottom: 3.33vw;
}
}
.faq h3 {
    background-color: #eee;
    color: #009944;
    font-size: 2.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
    padding-left: 25px;
}
@media only screen and (max-width: 750px) {
.faq h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 3vw;
    padding: 3.33vw;
}
}
.interview-index {
  padding: 349px 0 365px;
  background: rgba(0, 0, 0, 0) url("/img/interview/01/main.jpg") no-repeat scroll top left;
}
@media only screen and (max-width: 750px) {
.interview-index {
  padding: 349px 0 365px;
  background: none;
}
}

@media only screen and (max-width: 750px) {
  .interview-index {
    padding: 0 0 51.33333%;
  }
  .interview-index img {
    width: 100%;
	display: block;
  }
}
.interview-mv {
  background-color: #fff;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .interview-mv {
    margin-bottom: 30px;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .interview-mv img {
    width: 100%;
    max-width: 750px;
  }
}
.interview-index .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
.interview-index .container {
  max-width: 100%;
}
}
.interview-index .container section{
  width: 875px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width: 750px) {
.interview-index .container section{
  width: 100%;
  font-size: 1.4rem;
}
}
.interview-index .container section p{
	padding:0 20px 30px 20px;
}
@media only screen and (max-width: 750px) {
.interview-index .container section p{
	padding:0 20px 20px 20px;
}
}
.interview-index .container section.interview-sec01{
	padding-bottom: 30px;
}
.interview-index .container section.interview-sec01 h3{
    color: #40b373;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    line-height: 1.46429;
	padding:0 20px 55px 20px;
	margin-top: -210px;
	z-index: 100;
	position: relative;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec01 h3{
    font-size: 1.8rem;
	padding:0 20px 20px 20px;
	margin-top: -50px;
}
}
.interview-index .container section.interview-sec01{
	background: rgba(0, 0, 0, 0) url("/img/interview/01/illu01.png") no-repeat scroll 528px 365px;
}
.interview-index .container section.interview-sec01 .title img{
	margin-top: -30px;
	background-blend-mode: multiply;
	opacity: 0.8;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec01 .title img{
	margin-top: -50px;
	display: block;
}
}
.interview-index .container section.interview-sec01 strong{
	font-size: 130%;
	color: #2ca6bc;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec01 .sp-only img{
	width: 70%;
	margin: 0 auto;
	margin-top: -20px;
	margin-bottom: 20px;
}
}
.interview-index .container section.interview-sec02{
	padding-bottom: 34px;
}
.interview-index .container section.interview-sec02:after {
  clear: both;
  display: block;
  content: "";
}
.interview-index .container section.interview-sec02 h4 {
    background-color: #40b373;
    color: #FFF;
    font-size: 2.2rem;
    line-height: 1.9;
    margin-bottom: 14px;
    padding-left: 25px;
}
.interview-index .container section.interview-sec02 img{
	line-height: 0;
	display:block;
	padding-bottom: 1px;
}
.interview-index .container section.interview-sec02 .section-container-left{
	background-color: #daf65c;
	float: left;
	padding: 40px;
	width: 357px;
}
.interview-index .container section.interview-sec02 .section-container-right{
	background-color: #daf65c;
	float: right;
	padding: 40px;
	width: 357px;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec02 .section-container-left{
	float: none;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	margin-bottom: 1px;
}
.interview-index .container section.interview-sec02 .section-container-right{
	float: none;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
}
}
.interview-index .container section.interview-sec02 .section-container-left h5,
.interview-index .container section.interview-sec02 .section-container-right h5{
	color: #40b373;
	font-size: 2.2rem;
    line-height: 1.9;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec02 .section-container-left h5,
.interview-index .container section.interview-sec02 .section-container-right h5{
	font-size: 1.8rem;
    line-height: 1.9;
}
}
.interview-index .container section.interview-sec02 .section-container-left p,
.interview-index .container section.interview-sec02 .section-container-right p{
	padding:0!important;
}
.interview-index .container section.interview-sec03{
	padding-bottom: 70px;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec03{
	padding-bottom: 30px;
}
}
.interview-index .container section.interview-sec03 dl{
	padding:0 10px 20px 7px;
}
.interview-index .container section.interview-sec03 dl:after {
  clear: both;
  display: block;
  content: "";
}
.interview-index .container section.interview-sec03 dt{
	float: left;
	width: 15%;
	box-sizing: border-box;
}
.interview-index .container section.interview-sec03 dd{
	float: left;
	width: 85%;
	box-sizing: border-box;
	line-height: 1.6;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec03 dt{
	width: 25%;
	padding-right: 10px;
}
.interview-index .container section.interview-sec03 dd{
	width: 75%;
}
}
.interview-index .container section.interview-sec03 dd.line01{
	padding-top: 45px;
}
.interview-index .container section.interview-sec03 dd.line02{
	padding-top: 30px;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec03 dd.line01{
	padding-top: 10px;
}
.interview-index .container section.interview-sec03 dd.line02{
	padding-top: 10px;
}
}
.interview-index .container section.interview-sec03 h4{
	background: rgba(0, 0, 0, 0) url("/img/interview/01/line.png") no-repeat scroll top left;
	padding-bottom: 50px;
}
.interview-index .container section.interview-sec03 h4 span.bg{
	background-color: #40b373;
	font-size: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 2.3;
	color: #fff;
	padding: 10px;
}
.interview-index .container section.interview-sec03 h4 span.num{
	color: #40b373;
	font-size: 1.3rem;
    letter-spacing: 0.05em;
	display: block;
	padding: 26px 0 16px 0;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec03 h4{
	padding: 0 20px 30px 20px;
	background-position: 20px top;
	
}
.interview-index .container section.interview-sec03 h4 span.bg{
	font-size: 2rem;
    line-height: 2.3;
	padding: 7px;
	letter-spacing: 0em;
}
.interview-index .container section.interview-sec03 h4 span.num{
	font-size: 1.3rem;
	padding: 20px 0 5px 0;
}
}
.interview-index .container section.interview-sec03 .image{
	padding: 67px 0 26px 0;
}
.interview-index .container section.interview-sec03 .image2{
	padding: 26px 0 26px 0;
}
.interview-index .container section.interview-sec03 img.sp-only{
    display:none!important;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec03 .image{
	padding: 20px 0 20px 0;
}
.interview-index .container section.interview-sec03 .image2{
	padding: 20px 0 20px 0;
}
.interview-index .container section.interview-sec03 img.pc-only{
    display:none!important;
}
.interview-index .container section.interview-sec03 img.sp-only{
    display:block!important;
}
}
.interview-index .container section.interview-sec03 .image img,
.interview-index .container section.interview-sec03 .image2 img{
	line-height: 0;
	display:block;
}
.interview-index .container section.interview-sec03 p.caption{
	padding: 0!important;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec03 p.caption{
	padding: 0 20px 0 20px!important;
}
}
.interview-index .container section.interview-sec03 strong.green,
.interview-index .container section.interview-last strong.green{
	font-size: 2rem;
	color: #40b373;
}
.interview-index .container section.interview-sec03 strong.blue,
.interview-index .container section.interview-last strong.blue{
	font-size: 2rem;
	color: #2ca6bc;
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-sec03 strong.green,
.interview-index .container section.interview-last strong.green{
	font-size: 1.8rem;
}
.interview-index .container section.interview-sec03 strong.blue,
.interview-index .container section.interview-last strong.blue{
	font-size: 1.8rem;
}
}
.interview-index .container section.interview-last{
	background: rgba(0, 0, 0, 0) url("/img/interview/01/line.png") no-repeat scroll top left;
	padding: 40px 0 66px 0;	
}
@media only screen and (max-width: 750px) {
.interview-index .container section.interview-last{
	background-position: 20px top;
	padding: 40px 0 30px 0;
}
}
.interview-contact{
  display: table;
  width: 100%;
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.77778;
}

@media only screen and (max-width: 750px) {
  .interview-contact {
    display: block;
  }
}

.interview-contact .interview-contact-tel,
.interview-contact .interview-contact-business {
  display: table-cell;
  width: 50%;
  height: 185px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  color: #15a956;
}

@media only screen and (max-width: 750px) {
  .interview-contact .interview-contact-tel,
  .interview-contact .interview-contact-business {
    display: block;
    width: 100%;
    padding: 5.33333%;
    box-sizing: border-box;
    height: auto;
  }
}

.interview-contact .interview-contact-tel {
  background-color: #e2f6eb;
}

.interview-contact .interview-contact-tel .tel {
  margin-top: 32px;
  color: #000;
  font-size: 2.6rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .interview-contact .interview-contact-tel .tel {
    margin-top: 2.66667%;
  }
}

.interview-contact .interview-contact-tel .tel:before {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 1rem;
  vertical-align: -0.15em;
  background: url("../img/first/index_contact_tel.png") no-repeat;
  background-size: cover;
  content: "";
}

.interview-contact .interview-contact-business {
  position: relative;
  background-color: #daf65c;
}

.interview-contact .interview-contact-business:before {
  position: absolute;
  right: 36px;
  bottom: 32px;
  display: block;
  width: 32px;
  height: 6px;
  background: url("../img/common/arw.png") no-repeat;
  background-size: cover;
  content: "";
}

@media only screen and (max-width: 750px) {
  .interview-contact .interview-contact-business:before {
    right: 2.66667%;
    bottom: 0;
    margin-bottom: 5.33333%;
  }
}

.interview-contact .interview-contact-business:after {
  display: inline-block;
  width: 42px;
  height: 37px;
  margin-top: 16px;
  background: url("../img/first/index_contact_business.png") no-repeat;
  background-size: cover;
  content: "";
}

@media only screen and (max-width: 750px) {
  .interview-contact .interview-contact-business:after {
    margin-top: 2.66667%;
  }
}
.seminar_registration {
  padding: 60px 0 365px;
}

@media only screen and (max-width: 750px) {
  .seminar_registration {
    padding: 0 0 51.33333%;
  }
}

.seminar_registration .container {
  position: relative;
  max-width: 1045px;
  margin: 0 auto;
  overflow: hidden;
}

.seminar_registration .container h3 {
  font-size: 2.3rem;
  line-height: 1.2;
}


#seminar_apply {
  max-width: 710px;
  margin: 40px auto 0;
}

@media only screen and (max-width: 750px) {
  #seminar_apply {
    margin: 8% 5.33333% 0;
  }
}

#seminar_apply p {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
}

#seminar_apply table {
  width: 100%;
  margin-top: 35px;
}

@media only screen and (max-width: 750px) {
  #seminar_apply table {
    display: block;
    margin-top: 5.97015%;
  }
}

@media only screen and (max-width: 750px) {
  #seminar_apply table tbody {
    display: block;
  }
}

@media only screen and (max-width: 750px) {
  #seminar_apply table tr {
    display: block;
  }
}

#seminar_apply table th {
  width: 25%;
  padding: 25px 0 0 0;
  text-align: left;
  vertical-align: top;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}

@media only screen and (max-width: 750px) {
  #seminar_apply table th {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 1.8rem;
  }
}

#seminar_apply table th span {
  color: #e60012;
  font-size: 1.6rem;
}

@media only screen and (max-width: 750px) {
  #seminar_apply table th span {
    font-size: 1.4rem;
  }
}

#seminar_apply table td {
  width: 75%;
  padding: 10px 0 10px 25px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: top;
  font-size: 1.6rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  #seminar_apply table td {
    display: block;
    width: 100%;
    padding: 1em 0;
  }
}

#seminar_apply table td input {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #15a956;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 1.6rem;
}
#seminar_apply table td input[name="birth_year"],
#seminar_apply table td input[name="birth_month"],
#seminar_apply table td input[name="birth_day"] {
  display: inline-block;
  margin: 0 0.5em;
}
#seminar_apply table td input[name="birth_year"] {
  min-width: 5em;
}
#seminar_apply table td input[name="birth_month"],
#seminar_apply table td input[name="birth_day"] {
  min-width: 3em;
}

#seminar_apply table td input:-ms-input-placeholder {
  color: #9dd7b7;
}

#seminar_apply table td input::-webkit-input-placeholder {
  color: #9dd7b7;
}

#seminar_apply table td input::-moz-placeholder {
  color: #9dd7b7;
}

#seminar_apply table td input::-placeholder {
  color: #9dd7b7;
}

#seminar_apply table td textarea {
  display: block;
  width: 100%;
  height: 210px;
  padding: 15px;
  border: 1px solid #15a956;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 1.6rem;
  resize: vertical;
}

#seminar_apply .btn_form {
  margin-top: 65px;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  #seminar_apply .btn_form {
    margin-top: 8.95522%;
  }
}

#seminar_apply .btn_form button,
#seminar_apply .btn_form input[type="submit"] {
  display: inline-block;
  width: 235px;
  padding: 1em 0;
  margin: 0 10px;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  #seminar_apply .btn_form button [type="submit"] {
    width: 130px;
    margin: 0 5px;
    background-color: #daf65c;
    color: #15a956;
    font-size: 1.4rem;
  }
}

#seminar_apply .btn_form button [type="submit"]:hover {
  opacity: 0.7;
}



/* 適性診断テスト関連 */
.syusyokuseikou-section{font-size:16px;line-height:1.6;}
.syusyokuseikou-section table{margin:30px 0 45px 0;}
.syusyokuseikou-section table th{color:#15a956;padding-right:10px;}
.syusyokuseikou-section table th,
.syusyokuseikou-section table td{border-bottom:1px solid #999;padding:5px;}
.syusyokuseikou-section .test_Q{font-size:22px;font-weight:bold;color:#15a956;margin-top:20px;}
.syusyokuseikou-section .text_right{font-size: 14px;border: 2px solid #15a956;padding: 20px;margin-top: 30px;display:inline-block;}

 .container .syusyokuseikou-section h3{
    position: relative;
    padding: 10px 10px 10px 10px;
    background-color: #15a956;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom:30px;
}

.syusyokuseikou-section .leftbox{width:48%;float:left;}
.syusyokuseikou-section .rightbox{width:48%;float:left;}

.syusyokuseikou-section .leftbox_top,
.syusyokuseikou-section .rightbox_top{margin-top:15px;}

.syusyokuseikou-section .leftbox_top ul,
.syusyokuseikou-section .rightbox_top ul,
.syusyokuseikou-section .leftbox_top p,
.syusyokuseikou-section .rightbox_top p{margin-top:15px;margin-bottom:15px;}

.syusyokuseikou-section  .h2_line{margin-bottom:20px;}

.syusyokuseikou-section .left_button,
.syusyokuseikou-section .right_button{display:inline-block;}


/*--------------------------------------------*
  就職成功率診断
 *--------------------------------------------*/

.g2_1box{
	width: 45%;
	height: 385px;
	margin-right: 26px;
	float: left;
	background: #fff;
	border: #eee 1px solid;
	position: relative;
	margin-bottom:30px;
}
.g2_1box p{
	padding:10px 25px 10px 25px;
}
.g2_1box br {
    display: none;
}
.g2_1box .text_r{
	    float: right;
    margin-top: 10px;
    margin-right: 30px;
}

.g2_1box_s{
	width: 45%;
	height: 450px;
	margin-right: 26px;
	float: left;
	background: #fff;
	border: #eee 1px solid;
	position: relative;
}

.g2_1box_s p{
	padding:5px 20px 5px 20px;
}
.g2_1box_s:last-child p{
	padding:5px 20px 5px 20px;
}

p#mkResult{
	text-align: center;
	font-size: 400%;
	color: red;
   line-height: 1;
   font-weight: bold;
}
p#itResult{
	text-align:center;
	font-size:400%;
	color:red;
    line-height: 1;
}
p#svResult {
  color: red;
  font-size: 400%;
  line-height: 1;
  text-align: center;
}
p#jmResult{
	text-align:center;
	font-size:400%;
	color:red;
   line-height: 1;
}
.h2_line_works{margin:0 0 30px 0}

.result{text-align: center;font-size: 20px;font-weight: bold;}
.test_Q{
	margin-top: 20px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 120%;
	font-weight: bold;
	color: #999;	
}
.test_Q_serectbox{
	margin-top: 20px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 25px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 120%;
	font-weight: bold;
	color: #999;	
}

.hantei1{
	width:120px;
	padding:0 ;
	position:relative;
	margin: 0 auto ;
}
.hantei1:after {
	content:"判定";
	position:absolute;
	left: 100%;
	top:45% ;
	width: 100px ;
	color: #f00 ;
	font-size: 150% ;
	font-weight: bold ;	
}

.koumokubetu{
	font-size: 130% ;
	width:110px;
	margin: 30px auto 10px ;
	color: #fff ;
	background-color:#d3d3d3;
	border-radius:5px;
	
}
.sect{max-width:980px;}
.sect_works .text_left{ }
.sect_works .photo_r{}

/*===============================================
 report
===============================================*/
.report-mv {
  max-width: 1280px;
  margin: 0 auto;
}
.report-mv img {
  display: block;
  width: 100%;
  height: auto;
}

.report-container {
  position: relative;
  max-width: 1047px;
  margin: 0 auto;
  background-color: #fff;
}
.report-container:before {
  position: absolute;
  left: 86px;
  top: -15px;
  width: 610px;
  height: 84px;
  background: url(/img/report/title.png) no-repeat;
  content: "";
}
@media only screen and (max-width: 750px) {
  .report-container:before {
    left: 2%;
    top: 0;
    margin-top: -4%;
    width: 81.33333333333333%;
    height: 0;
    padding-top: 11.200000000000001%;
    background-size: 100% 100%;
  }
}
.report-inner {
  position: relative;
  padding: 40px 86px 100px;
}
@media only screen and (max-width: 750px) {
  .report-inner {
    padding: 4vw 5.33vw;
  }
}

.report-lead {
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .report-lead {
    margin-top: 8%;
  }
}
.report-lead:first-child {
  margin-top: 0;
}
.report-lead-title {
  color: #40b373;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-lead-title {
    font-size: 1.8rem;
    line-height: 1.35;
    margin: 0;
  }
}
.report-lead > p {
  display: block;
  padding: 0 12px;
  margin-top: 32px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-lead > p {
    padding: 0;
    margin-top: 3.73134%;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.report-section {
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .report-section {
    margin-top: 8%;
  }
}
.report-section:first-child {
  margin-top: 0;
}
.report-section-title {
  padding: 0 32px;
  background-color: #40b373;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.9;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .report-section-title {
    padding: 10px;
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0;
  }
}
.report-section-title em {
  color: #e0f766;
  font-style: normal;
}
.report-section > p {
  display: block;
  padding: 0 12px;
  margin-top: 32px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-section > p {
    padding: 0;
    margin-top: 3.73134%;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.report-question {
  position: relative;
  margin-top: 72px;
}
@media only screen and (max-width: 750px) {
  .report-question {
    margin-top: 9.6%;
  }
}
.report-question:before {
  position: absolute;
  right: 36px;
  top: -40px;
  display: block;
  width: 58px;
  height: 79px;
  background: url("../img/report/ico-q.png") no-repeat;
  content: "";
}
@media only screen and (max-width: 750px) {
  .report-question:before {
    right: 4.8%;
    top: 0;
    margin-top: -5.333333333333334%;
    width: 7.733333333333333%;
    height: 0;
    padding-top: 10.533333333333333%;
    background-size: 100% 100%;
  }
}
.report-question.no-icon:before {
  display: none;
}
.report-question-title {
  position: relative;
  padding: 0.25em;
  border: 2px solid #40b373;
  text-align: center;
  color: #40b373;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-question-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

ul.dotted {
  margin-top: 32px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  ul.dotted {
    margin-top: 4.266666666666667%;
    font-size: 1.4rem;
    line-height: 2;
  }
}
ul.dotted > li {
  padding-left: 1em;
  margin-top: 28px;
  text-indent: -1em;
}
@media only screen and (max-width: 750px) {
  ul.dotted > li {
    margin-top: 2em;
  }
}
ul.dotted > li:first-child {
  margin-top: 0;
}
ul.dotted > li:before {
  content: "・";
}

ul.dotted-l {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  ul.dotted-l {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
ul.dotted-l > li {
  margin-top: 1em;
}
ul.dotted-l > li:first-child {
  margin-top: 0;
}
ul.dotted-l > li:before {
  content: "● ";
}

.report-graph-1 {
  position: relative;
  margin: 40px 0 0 0;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .report-graph-1 {
    margin-top: 5.333333333333334%;
  }
  .report-graph-1 img {
    max-width: 100%;
  }
}
.report-graph-1 .graph-notes {
  position: absolute;
  right: 0;
  top: 0;
  color: #17a154;
  text-align: right;
  font-size: 1.8rem;
}
@media only screen and (max-width: 750px) {
  .report-graph-1 .graph-notes {
    font-size: 1.2rem;
  }
}
.report-graph-1 > ul {
  margin: 20px 0 0 75px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-graph-1 > ul {
    margin: 2.666666666666667% 0 0 0;
    font-size: 1.2rem;
    line-height: 2;
  }
}
.report-graph-1 > ul > li {
  padding-left: 1em;
  text-indent: -1em;
  color: #40b373;
}
.report-graph-1 > ul > li:before {
  content: "・";
}

.report-graph-2 {
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .report-graph-2 {
    margin-top: 8%;
  }
}
.report-graph-2:after {
  clear: both;
  display: block;
  content: "";
}
.report-graph-2 .graph-circle {
  float: left;
  width: 56.91428571428572%; /* 498 / 875 */
  text-align: right;
}
@media only screen and (max-width: 750px) {
  .report-graph-2 .graph-circle {
    float: none;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
}
.report-graph-2 .graph-circle img {
  max-width: 100%;
}
.report-graph-2 .graph-legend {
  float: right;
  width: 34.742857142857%; /* 304 / 875 */
}
@media only screen and (max-width: 750px) {
  .report-graph-2 .graph-legend {
    width: 100%;
    margin-top: 5.333333333333334%;
  }
  .report-graph-2 .graph-legend:after {
    clear: both;
    display: block;
    content: "";
  }
  .report-graph-2 .graph-legend img {
    float: left;
    width: 48%;
    margin-left: 4%;
  }
  .report-graph-2 .graph-legend img:first-child {
    margin-left: 0;
  }
}
.report-graph-2 .graph-legend img {
  max-width: 100%;
}

.report-pic {
  margin: 36px 0 0 0;
}
@media only screen and (max-width: 750px) {
  .report-pic {
    margin-top: 4.8%;
  }
}
.report-pic > img {
  display: block;
  width: 100%;
  height: auto;
}
.report-pic > figcaption {
  display: block;
  padding: 0 12px;
  margin-top: 12px;
  color: #40b373;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-pic > figcaption {
    padding: 0;
    margin-top: 1em;
    font-size: 1.2rem;
  }
}

.report-time-table {
  margin-top: 40px;
  font-size: 2.0rem;
  line-height: 1.9;
}
@media only screen and (max-width: 750px) {
  .report-time-table {
    margin-top: 5.333333333333334%;
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.report-time-table td {
  padding-left: 1em;
}

.report-themes {
  margin-top: 28px;
}
@media only screen and (max-width: 750px) {
  .report-themes {
    margin-top: 3.733333333333334%;
  }
}
.report-themes > dl {
  margin-top: 8px;
}
@media only screen and (max-width: 750px) {
  .report-themes > dl {
    margin-top: 1rem;
  }
}
.report-themes > dl > dt {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 750px) {
  .report-themes > dl > dt {
    font-size: 1.4rem;
  }
}
.report-themes > dl > dt:before {
  content: "● ";
}
.report-themes > dl > dd {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-themes > dl > dd {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.report-themes > dl > dd > ul {
  padding-left: 1em;
  margin-top: 0.25em;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-themes > dl > dd > ul {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.report-themes > dl > dd > ul > li {
  padding-left: 1em;
  text-indent: -1em;
}
.report-themes > dl > dd > ul > li:before {
  content: "・";
}

.report-graph-1 {
  
}

.report-box-1 {
  padding: 40px;
  margin-top: 16px;
  background-color: #e0f766;
}
@media only screen and (max-width: 750px) {
  .report-box-1 {
    padding: 4%;
  }
}
.report-box-1 .report-box-title {
  color: #40b373;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 750px) {
  .report-box-1 .report-box-title {
    font-size: 1.6rem;
  }
}
.report-box-1 dl.inline {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-box-1 dl.inline {
    font-size: 1.4rem;
  }
}
.report-box-1 dl.inline dt,
.report-box-1 dl.inline dd {
  display: inline;
}
.report-box-1 dl.inline dt:after {
  content: "：";
}
.report-box-1 dl.green {
  color: #40b373;
}

.report-box-2 {
  padding: 24px 54px;
  margin-top: 40px;
  border: 2px solid #40b373;
}
@media only screen and (max-width: 750px) {
  .report-box-2 {
    padding: 4%;
    margin-top: 5.333333333333334%;
  }
}
.report-box-2 .report-box-title {
  color: #40b373;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2;
}
@media only screen and (max-width: 750px) {
  .report-box-2 .report-box-title {
    font-size: 1.6rem;
  }
}
.report-box-2 > p {
  margin-top: 4px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 750px) {
  .report-box-2 > p {
    margin-top: 0.25em;
    font-size: 1.4rem;
  }
}

.report-box-3 {
  padding: 32px;
  margin-top: 24px;
  background-color: #eeeeee;
}
@media only screen and (max-width: 750px) {
  .report-box-3 {
    padding: 4%;
    margin-top: 3.2%;
  }
}
.report-box-3 > ul {
  font-size: 1.8rem;
  line-height: 2.2;
}
@media only screen and (max-width: 750px) {
  .report-box-3 > ul {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.report-box-3 > ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.report-box-3 > ul li:before {
  content: "・";
}

.catch{
    color: #009944;
    font-size: 2.2rem;
    line-height: 1.9;
    margin: 20px 0;
    text-align: center;
    display:block;
}
@media only screen and (max-width: 750px) {
.description img{
    max-width:100%;
    height:auto;
}
}
.onlysp{
    display:none;
}
@media only screen and (max-width: 750px) {
.onlysp{
    display:block;
}
}