@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;
}

/*===============================================
 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;
}
.fs70{font-size: 70%;}

@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: 10000;
  width: 100%;
  min-width: 1150px;
  height: 51px;
  background-color: #114827;
}

@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: 94px;
  height: 51px;
  background: #eeeeee url("../img/common/header_inquiry.png") no-repeat;
  background-size: contain;
  background-position: center center;
}

.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 0.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;
}

.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%;
  height: 100%;
  min-height: 100%;
  padding: 20% 6.66667% 6.66667%;
  box-sizing: border-box;
  background-color: #15a956;
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

#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 .gnav-icon{
  width: 38px;
  height: auto;
  max-width: 100%;
}
#sp-nav .gnav ul li a {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  position: relative;
  width: 100%;
  height: 37.33333vw;
  padding: 2.66667vw;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
}


#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.15rem;
  line-height: 1;
}
#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: 100%;
  height: 7vw;
  margin: 0 auto;
  background: url(../img/common/sp_nav_inquiry.png) no-repeat;
  background-size: contain;
  background-position: center center;
  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;
    overflow: hidden;
  }
}

.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 .gnav-icon{
  width: 38px;
  height: auto;
}

.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 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;
}
.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: #114827;
  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;
  }
}

/*固定ページ*/
.page-content p{
  font-size: 1.4rem;
  line-height: 2;
}
.page-content img{
  width: 100%;
  max-width: 100%;
  height: auto;
}
.page-content .link-btn{
  width: 200px;
}
.page-content .link-btn a{
  display: block;
  padding: 10px 30px 10px 20px;
  border-radius: 0;
  background-color: #daf65c;
  text-decoration: none;
  color: #009944;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.page-content .link-btn a::before{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 5px solid #009944;
}
.page-content h3{
  margin-bottom: 25px;
    padding: 10px 16px;
    background-color: #114827;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
}
.page-content h4{
  margin-bottom: 25px;
    padding: 10px 16px;
    color: #114827;
    font-size: 2.2rem;
    font-weight: bold;
}
.page-content .container{
  position: relative;
  z-index: 1;
  max-width: 1045px;
  margin: 0 auto;
  padding: 0 0 360px;
}
@media only screen and (max-width: 750px){
.page-content .container{
padding: 0 5.33333% 51.33333%;
}
.page-content .seminar-index{
  padding: 0;
}
.page-content h4{
    padding: 10px 0;
}
}

.page-content .lead-text{
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 50px;
}
/*求職者との出会いの機会--meet-client*/
.main-menu_block_item__title{
  margin-bottom: 0;
  padding: 10px 0;
  color: #000000;
  font-size: 1.8rem!important;
  font-weight: bold;
}
.main-menu_block_wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-menu_block_container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  margin-left: 16px;
}
.main-menu_block_item{
  width: 48%;
}
.main-menu_block--row2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-menu_block--row2 .main-menu_block{
  width: 48%;
}
.main-menu_block--row2 .main-menu_block_item{
  width: 100%;
}
.main-menu_block--row4 .main-menu_block_item{
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px){
  .main-menu_block_container{
    margin-left: 0;
    margin-bottom: 20px;
  }
  .main-menu_block_item{
    width: 100%;
    margin-bottom: 30px;
  }
  .main-menu_block--row2 .main-menu_block{
    width: 100%;
  }
}
.main-menu_block_item_inner{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-menu_block_item--imagebox{
  width: 35%;
}
.main-menu_block_item--image{
  max-width: 100%;
  width: 155px!important;
  height: 82px!important;
  object-fit: cover;
  vertical-align: middle;
}
.main-menu_block_title{
  margin-bottom: 5px!important;
}
.main-menu_block_item--text{
  width: 63%;
}
.main-menu_block_item--text p{
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 25px;
}
.main-menu_block_item__linkbox{
  position: absolute;
  right: 0;
  bottom: -10px;
}
@media only screen and (max-width: 750px){
  .main-menu_block_item--imagebox{
    width: 100%;
  }
  .main-menu_block_item--image{
    max-width: 100%;
    width: 100%!important;
    height: auto!important;
    object-fit: inherit;
  }
  .main-menu_block_item--text{
    width: 100%;
    margin-top: 10px;
  }
  .main-menu_block_item__linkbox{
    position: static;
    width: 43%;
    margin: 0 0 0 auto;
  }
}
.main-menu_block_item__linkbox--link{
  display: block;
  padding: 10px 30px 10px 20px;
  border-radius: 0;
  background-color: #daf65c;
  text-decoration: none;
  color: #009944;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.main-menu_block_item__linkbox--link::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 5px solid #009944;
}
/*解決策を知りたい*/
.bizevent__image{
  width: 80%!important;
  margin: 0 0 auto;
  margin-bottom: 20px;
}
.bizevent__image--01--pc{
  display: block;
}
.bizevent__image--01--sp{
  display: none;
}
@media only screen and (max-width: 750px) {
  .bizevent__image{
    width: 100%!important;
    margin:0 auto;
    margin-bottom: 10px;
  }
  .bizevent__image--01--pc{
    display: none;
  }
  .bizevent__image--01--sp{
    display: block;
  }
}
.recommend-contents{
  margin-bottom: 40px;
}
.recommend-contents__text{
  margin-bottom: 20px;
}


.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;
  }
}

/*===============================================
 header
===============================================*/
.header {
  background-color: #114827;
}

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

.header .header-nav ul li.user a {
  background-color: #f2fb93;
  color: #2f9f20;
}

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

/*===============================================
 footer
===============================================*/
.footer .footer-catch {
  position: absolute;
  left: 0;
  top: -274px;
  width: 100%;
  height: 385px;
  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 .footer-nav .footer-nav-col .footer-nav-sec ul li:before {
  background-color: #00a41f;
}

@media only screen and (max-width: 750px) {
  .footer
    .container
    .footer-nav
    .footer-nav-col
    .footer-nav-sec
    ul
    li
    a:before {
    background-color: #00a41f;
  }
}

.footer .container .footer-info .footer-info-sec h2 {
  color: #00a41f;
}

.footer .footer-copyright {
  background-color: #114827;
}

/*===============================================
 sp
===============================================*/
.sp-header:before {
  background-color: #114827;
}

#sp-nav {
  background-color: #114827;
}

#sp-nav .gnav ul li a span {
  color: #114827;
}
#sp-nav .util ul li a {
  color: #2f9f20;
}

#sp-nav .util ul li.user a {
  background-color: #f2fb93;
}

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

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

.side .gnav ul li a:before {
  width: 32px;
}

.side .gnav ul li a span {
  color: #114827;
}


/*===============================================
 top
===============================================*/
.top-mv {
  position: relative;
  background:rgba(189,213,199,0.5);
}
.top-mv-container{
  max-width: 1080px;
  margin: 0 auto;
}
.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: #114827;
}

.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: #eeeeee;
  margin-top: 5px;
}

.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: #00a41f;
  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: #00a41f;
  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-trouble {
max-width: 1045px;
margin: 0 auto;
margin-top: 30px;
}
.top-trouble__wrapper{
  position: relative;
}
.top-trouble__title{
  font-size: 3rem;
  font-feature-settings: "palt";
  font-weight: bold;
  color:#114827;
  padding-left: 180px;
  margin-bottom: 10px;
  margin-top: 80px;
}
.top-trouble__image{
  position: absolute;
  right: 20px;
  bottom: 0;
}
.top-trouble__image img{
  width: 440px;
  height: auto;
}
.top-trouble__inner{
  width: 100%;
  padding: 30px 0;
  background-color:#F6F5F1;
}
.top-trouble__list{
  width: 620px;
  margin: 0 0 auto 60px;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  font-weight: bold;
  color: #000;
  column-count: 2;
  column-gap: 30px;
}
.top-trouble__list li{
  margin-bottom: 10px;
}
.top-trouble__list li::before{
  content: "";
  background: url(../img/top/trouble_check.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 17px;
  margin-right: 10px;
  position: relative;
  top: 1px;
  left: 0;
}
.top-trouble__list li span{
  padding-left: 3em;
}
@media only screen and (max-width: 750px) {
  .top-trouble{
    margin-top: 70px;
  }
  .top-trouble__titlebox{
    position: relative;
    bottom: -10px;
  }
  .top-trouble__title{
    font-size: 2.4rem;
    line-height: 1.3;
    text-align: left;
    width: 40%;
    padding-left: 33px;
    padding-bottom: 20px;
  }
  .top-trouble__list{
    position: relative;
    width: 80%;
    margin: 0 auto;
    font-size: 1.8rem;
    column-count: auto;
    column-gap: inherit;
  }
  .top-trouble__list li{
    margin-bottom: 14px;
  }
  .top-trouble__list li span{
    padding-left: 4.5em;
  }
  .top-trouble__image img{
    width: 220px;
    height: auto;
  }
  .top-trouble__image {
    position: absolute;
    right: 20px;
    bottom: 0;
}
}
/*サポートします！*/
.top-support{
  overflow: hidden;
}
.top-support__inner{
  max-width: 1045px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 10px;
  padding: 76px 0;
}
.top-support__image{
  position: absolute;
  left: -30px;
  bottom: 0;
}
.top-support__image img{
  width: 488px;
  height: auto;
}
.top-support__text{
  position: relative;
  font-feature-settings: "palt";
    z-index: 1;
  width: 600px;
  margin: 0 20px 0 auto;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  color:#114827;
}
.top-support__text--strong{
  background-color: #F4FBA0;
  font-size: 140%;
  padding: 1px 0.3em;
  margin-right: 4px;
}
.top-support__btns{
  width: 750px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.top-support__btn{
  width: 50%;
  display: block;
  padding: 20px 0;
  text-decoration: none;
  position: relative;
  margin-right: 2%;
  background-color:#114827;
  font-size: 1.8rem;
  font-feature-settings: "palt";
    letter-spacing: .1em;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
}
.top-support__btn:first-of-type{
  padding-top: 30px;
}
.top-support__btn::after{
  content:"";
  display: inline-block;
  background-image: url(https://business.shigotofield.jp/biz-osf-wp/wp-content/uploads/2025/08/spin-white.png);
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center right;
  position: absolute;
  top: 45%;
  right: 10px;
  font-size: 1rem;
  color: #ffffff;
}
.top-support__btn:last-of-type{
  margin-right: 0;
}
@media only screen and (max-width: 750px) {
  .top-support{
    margin-bottom: 60px;
  }
  .top-support__inner {
    padding: 0;
    padding-top: 220px;
}
.top-support__text{
  width: 88%;
  margin: 0 auto;
  font-size: 2rem;
  text-align: center;
}
  .top-support__image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    text-align: center;
}
  .top-support__image img {
    width: 378px;
    height: auto;
}
.top-support__btns{
  display: block;
  width: 88%;
  margin: 0 auto;
}
.top-support__btn{
  width: 100%;
  display: block;
}
.top-support__btn:first-of-type{
  padding-top: 27px;
  padding-bottom: 27px;
  margin-bottom: 10px;
}
}
/*サービスメニュー*/
.top-service {
  max-width: 1045px;
  margin: 50px auto;
}
.top-service .service-container .service-section .link-btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.top-service .service-container .service-section .link-btn-wrapper a.link-btn {
  display: block;
  width: 40%;
  text-align: center;
  padding: 10px 20px;
  margin: 20px 0px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background: #114827;
  border-radius: 5px;
}
.top-service .service-container .service-section a.link-btn {
  display: block;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 2.3rem;
  font-feature-settings: "palt";
  text-decoration: none;
  color: #fff;
  background: #114827;
  border-radius: 5px;
}

@media only screen and (max-width: 750px) {
  .top-service {
    margin: 8% 5.33333%;
  }
  .top-service .service-container .service-section .link-btn-wrapper {
    display: block;
  }
  .top-service .service-container .service-section .link-btn-wrapper a.link-btn {
    display: block;
    width: 100%;
    margin: 15px auto 0;
    padding: 15px 0;
  }
  .top-service .service-container .service-section a.link-btn {
    display: block;
    width: 90%;
    padding: 15px 0;
    font-size: 2rem;
  }
}

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

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

.top-service h2:before {
  display: inline-block;
  width: 28px;
  height: 26px;
  margin-right: 16px;
  background: url("../img/top/service_title.png") no-repeat;
  vertical-align: -4px;
  content: "";
}

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

.top-service .service-container {
  margin-top: 28px;
}

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

.top-service .service-container .service-section {
  position: relative;
  background-color: #eeeeee;
}

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

.top-service .service-container .service-section .inner {
  padding: 15px 30px 10px;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .inner {
    padding: 5.97015% 4.47761%;
  }
}
.top-service .service-container .service-section .inner .title-box{
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.top-service .service-container .service-section .inner .title-box .title{
  color: #114827;
  font-size: 2.2rem;
  line-height: 1.4;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .inner .title-box .title{
    font-size: 1.8rem;
  }
}

.top-service .service-container .service-section .inner .title-box .circle {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 1em;
  padding-top: 10px;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #fff;
  color: #00a41f;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .inner .title-box .circle {
    width: 48px;
    height: 48px;
    padding-top: 8px;
  }
}

.top-service .service-container .service-section .inner .title-box .circle small {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #114827;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .inner .title-box .circle small {
    font-size: 0.9rem;
  }
}

.top-service .service-container .service-section .inner .title-box .circle .num {
  display: block;
  margin-top: 2px;
  font-size: 2.7rem;
  line-height: 1;
  color: #114827;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .inner .title-box .circle .num {
    font-size: 2.2rem;
  }
}
.top-service .service-container .service-section .inner p {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .inner p {
    padding-left: 0;
    margin-top: 6.55738%;
  }
}

.top-service .service-container .service-section .sub {
  margin-top: 25px;
  padding-left: 10px;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .sub {
    margin-top: 4.91803%;
    padding-left: 0;
  }
}

.top-service .service-container .service-section .sub h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.top-service .service-container .service-section .sub h4:before {
  content: "■ ";
}

.top-service .service-container .service-section .sub p {
  margin-top: 15px;
  padding-left: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .sub p {
    margin-top: 3.27869%;
    padding-left: 0;
  }
}

.top-service .service-container .service-section .sub ul {
  margin-top: 35px;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .sub ul {
    margin-top: 4.91803%;
    padding-left: 0;
  }
}

.top-service .service-container .service-section .sub ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.top-service .service-container .service-section .service-flow {
  margin-top: 10px;
  padding-bottom: 30px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .service-flow {
    margin-top: 6.55738%;
    padding-bottom: 3.27869%;
  }
}

.top-service .service-container .service-section .service-flow:after {
  clear: both;
  display: block;
  content: "";
}

.top-service .service-container .service-section .service-flow .flow-section {
  float: left;
  position: relative;
  width: 18.09045%;
  padding-left: 6.03015%;
}

.top-service
  .service-container
  .service-section
  .service-flow
  .flow-section:nth-child(4n + 1) {
  clear: left;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .service-flow .flow-section {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-top: 19.67213%;
  }
  .top-service
    .service-container
    .service-section
    .service-flow
    .flow-section:first-child {
    padding-top: 0;
  }
}

.top-service
  .service-container
  .service-section
  .service-flow
  .flow-section:before {
  position: absolute;
  left: 10%;
  top: 75px;
  display: block;
  width: 18px;
  height: 31px;
  background: url("../img/top/service_3_arw.png") no-repeat;
  content: "";
}

@media only screen and (max-width: 750px) {
  .top-service
    .service-container
    .service-section
    .service-flow
    .flow-section:before {
    left: 50%;
    top: 0;
    width: 8.85246%;
    height: 0;
    padding-top: 5.08197%;
    margin-left: -8.85246%;
    margin-top: 6.55738%;
    background-image: url("../img/top/service_3_arw_sp.png");
    background-size: cover;
  }
}

.top-service
  .service-container
  .service-section
  .service-flow
  .flow-section:first-child:before {
  display: none;
}

@media only screen and (max-width: 750px) {
  .top-service
    .service-container
    .service-section
    .service-flow
    .flow-section
    .flow-image {
    width: 180px;
    margin: 0 auto;
  }
}

.top-service
  .service-container
  .service-section
  .service-flow
  .flow-section
  .flow-image
  img {
  display: block;
  width: 100%;
  height: auto;
}

.top-service
  .service-container
  .service-section
  .service-flow
  .flow-section
  .flow-text {
  margin-top: 20px;
}

.top-service
  .service-container
  .service-section
  .service-flow
  .flow-section
  .flow-text
  h5 {
  margin-left: -25px;
  margin-right: -25px;
  font-size: 2.2rem;
  line-height: 1.2;
  text-align: center;
}

.top-service .service-container .service-section .service-inquiry {
  margin: 40px 10px 0;
  padding: 25px;
  box-sizing: border-box;
  border: 1px solid #114827;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .service-inquiry {
    padding: 4.91803%;
    margin: 4.91803% 0 0 0;
  }
}

.top-service .service-container .service-section .service-inquiry h4 {
  /*color: #00a41f;*/
  color: #114827;
  font-size: 2.2rem;
  line-height: 1.45455;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .service-inquiry h4 {
    font-size: 1.8rem;
  }
}

.top-service .service-container .service-section .service-inquiry .tel {
  padding-left: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.top-service .service-container .service-section .service-inquiry .tel a {
  text-decoration: none;
}

.top-service
  .service-container
  .service-section
  .service-inquiry
  .tel
  a:before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.77778em;
  background: url("../img/top/service_tel.png") no-repeat;
  background-size: cover;
  vertical-align: -0.2em;
  content: "";
}

.top-service .service-container .service-section .service-inquiry table {
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.top-service .service-container .service-section .service-inquiry table th,
.top-service .service-container .service-section .service-inquiry table td {
  text-align: left;
  font-weight: normal;
}

.top-service .service-container .service-section .service-inquiry-container {
  margin: 40px 10px 0;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .service-section .service-inquiry-container {
    margin: 6.55738% 0 0;
  }
}

.top-service
  .service-container
  .service-section
  .service-inquiry-container:after {
  clear: both;
  display: block;
  content: "";
}

.top-service
  .service-container
  .service-section
  .service-inquiry-container
  .service-inquiry {
  float: left;
  width: 49.20635%;
  margin: 0 0 0 1.5873%;
}

@media only screen and (max-width: 750px) {
  .top-service
    .service-container
    .service-section
    .service-inquiry-container
    .service-inquiry {
    float: none;
    width: 100%;
    margin: 4.91803% 0 0 0;
  }
}

.top-service
  .service-container
  .service-section
  .service-inquiry-container
  .service-inquiry:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 750px) {
  .top-service
    .service-container
    .service-section
    .service-inquiry-container
    .service-inquiry:first-child {
    margin-top: 0;
  }
}

.top-service .service-container .row-1 {
  overflow: hidden;
}
.top-service .service-container .row-1 .service-section {
  width: 49%;
  padding-bottom: 120px;
  margin-bottom: 24px;
}
.top-service .service-container .row-2 .service-section {
  width: 32%;
  padding-bottom: 7.5vw;
}
.top-service .service-container .service-box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 750px) {
  .top-service .service-container .row-1 {
    margin-bottom: 0;
  }
  .top-service .service-container .row-1 .service-section {
    width: 100%;
    margin-left: 0;
    margin-top: 5.97015%;
    padding-bottom: 23vw;
    margin-bottom: 0;
  }
  .top-service .service-container .row-2 .service-section {
    width: 100%;
    margin-left: 0;
    margin-top: 5.97015%;
    padding-bottom: 80px;
  }
}

.top-service .service-container .row-1 .service-section:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .row-1 .service-section:first-child {
    margin-top: 0;
  }
  .top-service .service-container .row-1 .service-section:first-child .inner-text{
    margin-bottom:40px;
  }
}

.top-service .service-container .row-3 .service-section .image {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 32.05742%;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .row-3 .service-section .image {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
  }
}

.top-service .service-container .row-3 .service-section .inner > p {
  width: 57.71144%;
}

@media only screen and (max-width: 750px) {
  .top-service .service-container .row-3 .service-section .inner > p {
    width: 100%;
  }
}

.top-service
  .service-container
  .row-3
  .service-section
  .inner
  .service-inquiry {
  margin-top: 65px;
}

@media only screen and (max-width: 750px) {
  .top-service
    .service-container
    .row-3
    .service-section
    .inner
    .service-inquiry {
    margin-top: 4.91803%;
  }
}

.top-seminar,
.top-school {
  padding: 56px 40px 46px;
  overflow: hidden;
}

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

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

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

@media only screen and (max-width: 750px) {
  .top-seminar .top-seminar-list h2,
  .top-school .top-school-list h2 {
    padding-left: 1.8em;
    text-indent: -1.8em;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
  }
}

.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: "";
}
/*その他の支援*/
.top-others .text{
  margin: 10px 0;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000;
}
.top-others .service-container .service-section .inner{
  padding: 35px 30px 10px;
}
.top-others .service-container .service-section .inner .title-box .title{
  text-align: center;
}
.top-others .service-container .row-1 .service-section:nth-of-type(2){
  padding-bottom: 2vw;
}
.top-others .service-container .service-section .detail-info{
  position: relative;
  left: 20px;
  margin-top: 20px;
  font-size:1.4rem;
  line-height: 1.4;
  font-weight: bold;
  color:#000
}
.top-others .service-container .service-section .detail-info::before{
  content:"◆";
  display:block;
  color:#000;
  position: absolute;
  top: 0;
  left: -20px;
}
.top-others .service-container .service-section .detail-info .detail-info--tel{
  display: flex;
  flex-wrap: wrap;
}
.top-others .service-container .service-section .detail-info .detail-info--tel .detail-info--tel__title{
  position: relative;
  width: 16%;
  margin-right: 2%;
}
.top-others .service-container .service-section .detail-info .detail-info--tel .detail-info--tel__title::after{
  content:":";
  display:block;
  position: absolute;
  top: 0;
  right: 0;
  color:#000;
}
.top-others .service-container .service-section .detail-info .detail-info--tel .detail-info--tel__text{
  width: 82%;
}
.others-box{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.others-button{
  position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #114827;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px;
    font-size:clamp(14px,4vw,18px);
    font-weight: bold;
    line-height: 1.6;
    background: #fff;
    border: 1px solid #114827;
    text-decoration: none;
    border-radius: 5px;
    height: 100px;
}
.others-button::after {
    content: "";
    display: inline-block;
    background-image: url("https://business.shigotofield.jp/biz-osf-wp/wp-content/uploads/2025/08/spin-green.png");
    background-repeat: no-repeat;
    width: 11px;
    height: 11px;
    background-size: contain;
    background-position: center right;
    position: absolute;
    top: 45%;
    right: 10px;
    font-size: 1rem;
    color: #114827;
}
@media only screen and (max-width: 750px) {
.others-box{
    grid-template-columns: repeat(2, 1fr);
}
.others-button{
    padding: 12px;
    text-align: left;
    height: 130px;
}
.others-button br{
  display: none;
}
.others-button::after {
    top: auto;
    bottom: 10px;
}
}
.top-school h2:before {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 16px;
  background: url("../img/top/school_title.png") no-repeat;
  vertical-align: -5px;
  content: "";
}
.top-school p {
  margin-top: 15px;
  padding-left: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

@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: #f2fb93;
  border-radius: 30px;
  text-align: center;
  color: #114827;
  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-0 {
  background-color: #e2e2e2;
  color: #a5a5a5;
}

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

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

.top-seminar .top-seminar-list .container .item a .category span.category-3 {
  background-color: #d5ffbe;
  color: #006e15;
}
.top-seminar .top-seminar-list .container .item a .category span.category-4 {
  background-color: #ebffcd;
  color: #1d9f01;
}

.top-seminar .top-seminar-list .container .item a .category span.category-5 {
  background-color: #fdd6cc;
  color: #ff4c0f;
}

.top-seminar .top-seminar-list .container .item a .category span.category-6 {
  background-color: #fdd9c2;
  color: #fd5801;
}
.top-seminar .top-seminar-list .container .item a .category span.category-7 {
  background-color: #fce5cd;
  color: #ff7b00;
}

.top-seminar .top-seminar-list .container .item a .category span.category-8 {
  background-color: #d1f3ff;
  color: #366cc4;
}

.top-seminar .top-seminar-list .container .item a .category span.category-9 {
  background-color: #bae0ff;
  color: #294ead;
}
.top-seminar .top-seminar-list .container .item a .category span.category-10 {
  background-color: #c4daff;
  color: #132987;
}
.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.2rem;
  }
}

.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.2rem;
  line-height: 1.2;
}

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

.top-seminar .top-seminar-calendar .container .categories ul li:first-child {
  margin-left: 0;
}

.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: #f377cd;
}

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

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

.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: #114827;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
}

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

@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.2rem;
  }
}

.top-seminar .top-seminar-calendar .container .calendar tbody td .item ul {
  min-height: 4.5em;
  font-size: 1.2rem;
  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.2rem;
  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-0
  a {
  color: #a5a5a5;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-0
  a
  .hover
  .category {
  background-color: #e2e2e2;
  color: #a5a5a5;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-1
  a {
  color: #f377cd;
}

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

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

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

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

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

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

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

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-3
  a
  .hover
  .category {
  background-color: #d5ffbe;
  color: #006e15;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-4
  a {
  color: #1d9f01;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-4
  a
  .hover
  .category {
  background-color: #ebffcd;
  color: #1d9f01;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-5
  a {
  color: #ff4c0f;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-5
  a
  .hover
  .category {
  background-color: #fdd6cc;
  color: #ff4c0f;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-6
  a {
  color: #fd5801;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-6
  a
  .hover
  .category {
  background-color: #fdd9c2;
  color: #fd5801;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-7
  a {
  color: #ff7b00;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-7
  a
  .hover
  .category {
  background-color: #fce5cd;
  color: #ff7b00;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-8
  a {
  color: #366cc4;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-8
  a
  .hover
  .category {
  background-color: #d1f3ff;
  color: #366cc4;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-9
  a {
  color: #294ead;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-9
  a
  .hover
  .category {
  background-color: #bae0ff;
  color: #294ead;
}
.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-10
  a {
  color: #132987;
}

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

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

.top-seminar
  .top-seminar-calendar
  .container
  .calendar
  tbody
  td
  .item
  ul
  li.category-10
  a
  .hover
  .category {
  background-color: #c4daff;
  color: #132987;
}
.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: #114827;
  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: #f2fb93;
  color: #114827;
}

.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_2.png") no-repeat;
  content: "";
}

.top-inquiry {
  padding: 58px 0;
  background: #e3e3e3;
  background-size: auto 100%;
}

@media only screen and (max-width: 750px) {
  .top-inquiry {
    padding: 5.33333%;
    background-image: #e3e3e3;
    background-position: center bottom;
    background-size: 100% auto;
  }
}
.top-inquiry a.link-btn{
  display: block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 2.3rem;
    text-decoration: none;
    color: #fff;
    background: #114827;
    border-radius: 5px;
}
@media only screen and (max-width: 750px) {
.top-inquiry a.link-btn{
  font-size: 1.8rem;
    padding: 15px 0;
}
}

.top-inquiry .center {
  max-width: 1045px;
  margin: 0 auto;
}

.top-inquiry .center .inner {
      width: 50%;
    padding: 5%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .top-inquiry .center .inner {
    width: 100%;
    padding: 4.91803%;
  }
}

.top-inquiry .center .inner h2 {
  text-align: center;
  color: #114827;
  font-size: 2.5rem;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .top-inquiry .center .inner h2 {
    font-size: 1.8rem;
  }
}

.top-inquiry .center .inner p {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.top-inquiry .center .inner dl {
  margin-top: 25px;
}

@media only screen and (max-width: 750px) {
  .top-inquiry .center .inner dl {
    margin-top: 4.91803%;
  }
}

.top-inquiry .center .inner dl dt {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .top-inquiry .center .inner dl dt {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.top-inquiry .center .inner dl dd {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 1;
}

.top-inquiry .center .inner dl dd a {
  text-decoration: none;
}

.top-inquiry .center .inner dl dd a:before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: -0.15em;
  background: url("../img/top/service_tel.png") no-repeat;
  background-size: cover;
  content: "";
}

.top-sns {
  padding: 54px 0 338px;
}

@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 {
  width: 455px;
  margin: 0 auto;
  height: 300px;
  box-sizing: border-box;
}

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


@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 {
    display: none;
  }
}

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

.seminar-index .container .print a:before {
  display: inline-block;
  width: 32px;
  height: 6px;
  margin-right: 6px;
  background: url("../img/common/arw_2.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: #114827;
    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;
}

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

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

.seminar-index .container .list .list-section table thead th {
  padding: 10px 4px;
  background-color: #114827;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  vertical-align: middle;
}

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

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table tbody tr {
    position: relative;
    display: block;
    padding: 4.47761% 8.95522% 4.47761% 4.47761%;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    background-color: #fff;
  }
}

.seminar-index .container .list .list-section table tbody 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 tbody td {
    padding: 0;
  }
}

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

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table tbody td.date {
    display: inline;
    text-align: left;
  }
}

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

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table tbody td.wday {
    display: inline;
    text-align: left;
  }
}

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

@media only screen and (max-width: 750px) {
  .seminar-index .container .list .list-section table tbody td.time {
    display: inline;
    text-align: left;
  }
}

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

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

@media only screen and (max-width: 750px) {
  .seminar-index
    .container
    .list
    .list-section
    table
    tbody
    td.category
    .recommend {
    display: inline-block;
    padding: 5px;
    background-color: #eee;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
  }
}

.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category
  .category-1 {
  display: inline-block;
  padding: 5px;
  margin-left: 15px;
  background-color: #ffddf5;
  vertical-align: middle;
  color: #f377cd;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .seminar-index
    .container
    .list
    .list-section
    table
    tbody
    td.category
    .category-1 {
    font-size: 1.2rem;
  }
}

.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category
  .category-2 {
  display: inline-block;
  padding: 5px;
  margin-left: 15px;
  background-color: #daeec9;
  vertical-align: middle;
  color: #5db714;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .seminar-index
    .container
    .list
    .list-section
    table
    tbody
    td.category
    .category-2 {
    font-size: 1.2rem;
  }
}

.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category
  .category-3 {
  display: inline-block;
  padding: 5px;
  margin-left: 15px;
  background-color: #e2e2e2;
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .seminar-index
    .container
    .list
    .list-section
    table
    tbody
    td.category
    .category-3 {
    font-size: 1.2rem;
  }
}

.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 {
    display: block;
    margin-top: 3%;
    font-size: 1.3rem;
  }
}

.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-index .container .list .list-section table tbody td .recommend {
  padding: 6px 9px;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-0
  .recommend {
  background-color: #e2e2e2;
  color: #a5a5a5;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-1
  .recommend {
  background-color: #ffddf5;
  color: #f377cd;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-2
  .recommend {
  background-color: #daeec9;
  color: #5db714;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-3
  .recommend {
  background-color: #d5ffbe;
  color: #006e15;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-4
  .recommend {
  background-color: #ebffcd;
  color: #1d9f01;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-5
  .recommend {
  background-color: #fdd6cc;
  color: #ff4c0f;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-6
  .recommend {
  background-color: #fdd9c2;
  color: #fd5801;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-7
  .recommend {
  background-color: #fce5cd;
  color: #ff7b00;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-8
  .recommend {
  background-color: #d1f3ff;
  color: #366cc4;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-9
  .recommend {
  background-color: #bae0ff;
  color: #294ead;
}
.seminar-index
  .container
  .list
  .list-section
  table
  tbody
  td.category-10
  .recommend {
  background-color: #c4daff;
  color: #132987;
}

.seminar-index .container .list .list-section table tbody td.category-0 a {
  color: #a5a5a5;
}
.seminar-index .container .list .list-section table tbody td.category-1 a {
  color: #f377cd;
}
.seminar-index .container .list .list-section table tbody td.category-2 a {
  color: #5db714;
}
.seminar-index .container .list .list-section table tbody td.category-3 a {
  color: #1d9f01;
}
.seminar-index .container .list .list-section table tbody td.category-4 a {
  color: #ff4c0f;
}
.seminar-index .container .list .list-section table tbody td.category-5 a {
  color: #fd5801;
}
.seminar-index .container .list .list-section table tbody td.category-6 a {
  color: #ff7b00;
}
.seminar-index .container .list .list-section table tbody td.category-7 a {
  color: #366cc4;
}
.seminar-index .container .list .list-section table tbody td.category-8 a {
  color: #294ead;
}
.seminar-index .container .list .list-section table tbody td.category-9 a {
  color: #132987;
}
.seminar-index .container .list .list-section table tbody td.category-10 a {
  color: #a5a5a5;
}
.seminar-index .container .list .list-section table tbody td.category {
  text-align: left;
}

.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 {
  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: #ffddf5;
  color: #f377cd;
}

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

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

.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;
}
.seminar-detail .container .detail .application-btn {
  width: 200px;
  display: block;
  text-align: center;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  font-size: 1.6rem;
  background: #ec3b49;
  padding: 0.5em 1em;
  border-radius: 3px;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 2px;
}
@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;
}

.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: #f2fb93;
  text-decoration: none;
  color: #114827;
  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_2.png") no-repeat;
  vertical-align: 3px;
  content: "";
}
/*===============================================
 single-biz-events
===============================================*/
#seminar_detail{display:none}
.event-entry-submit a,
.event-entry-submit a:hover{text-decoration: none;}
.event-entry-submit button{
display: block;
width: 235px;
margin: 30px 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;
cursor: pointer;
border:none;
}
.event-entry-submit button:hover{opacity:.6;}

/*===============================================
 nursing
===============================================*/

.nursing-section {
  margin-top: 60px;
}
.nursing-section .riyou-image{
  margin-bottom: 30px;
}
.nursing-section .riyou-image img{
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 750px) {
  .nursing-section {
    margin-top: 4%;
  }
  .nursing-section .riyou-image img{
    margin: 0 auto;
  }
}

.nursing-section h3 {
  position: relative;
  padding: 10px 10px 10px 24px;
  background-color: #eee;
  color: #00a41f;
  font-size: 2.2rem;
  font-weight: bold;
}

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

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

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

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

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

.nursing-contact .nursing-contact-tel {
  background-color: #eeeeee;
}

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

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

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

.nursing-contact .nursing-contact-business {
  position: relative;
  background-color: #f2fb93;
}

.nursing-contact .nursing-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) {
  .nursing-contact .nursing-contact-business:before {
    right: 2.66667%;
    bottom: 0;
    margin-bottom: 5.33333%;
  }
}

.nursing-index {
  padding: 50px 0 415px;
}
.nursing-index .container .nursing-service .koeki-table {
  font-size: 1.4rem;
  line-height: 2;
}
.nursing-index .container .nursing-service .koeki-table th{
  padding-right:15px;
}
@media only screen and (max-width: 750px) {
  .nursing-index {
    padding: 0 0 51.33333%;
  }
}

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

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

.nursing-index .container .description {
  margin-top: 35px;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .description {
    margin: 4% 5.33333% 0;
  }
}

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

.nursing-index .container .nursing-outline-section {
  margin-top: 35px;
}
.nursing-index .bnr-wrapper{
  margin-top: 30px;
}
.nursing-index .bnr-wrapper h4{
  font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.6;
}
.nursing-index .bnr-wrapper .bnr-inner {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-top: 20px;
}
.nursing-index .bnr-wrapper .bnr-inner div a{
  display: block;
}
.nursing-index .bnr-wrapper .bnr-inner div {
  width: 40%;
  margin-right: 20px;
}
@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-outline-section {
    margin-top: 4%;
  }
  .nursing-index .bnr-wrapper .bnr-inner div {
    width: 100%;
    margin: 10px;
  }
  .nursing-index .bnr-wrapper{
  margin: 4% 5.33333% 0;
  }
}

.nursing-index .container .nursing-outline-section h3 {
  position: relative;
  padding: 10px 10px 10px 72px;
  background-color: #114827;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-outline-section h3 {
    font-size: 1.8rem;
  }
}

.nursing-index .container .nursing-outline-section h3:before {
  position: absolute;
  left: 26px;
  top: 50%;
  display: block;
  width: 30px;
  height: 22px;
  margin-top: -12px;
  background: url("../img/nursing/outline_title.png") no-repeat;
  content: "";
}

.nursing-index .container .nursing-outline-section p {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 2;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-outline-section p {
    margin: 4% 5.33333% 0;
  }
}

.nursing-index .container .nursing-merit {
  margin-top: 32px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit {
    margin: 4% 5.33333% 0;
  }
}

.nursing-index .container .nursing-merit:after {
  clear: both;
  display: block;
  content: "";
}

.nursing-index .container .nursing-merit .nursing-merit-company {
  float: left;
  position: relative;
  width: 48.32536%;
  padding: 40px 50px 40px 40px;
  box-sizing: border-box;
  background-color: #114827;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit .nursing-merit-company {
    float: none;
    width: 100%;
    padding: 5.97015% 4.47761% 17.91045%;
  }
}

.nursing-index .container .nursing-merit .nursing-merit-company h4 {
  text-align: center;
  color: #fff;
  font-size: 1.9rem;
}

.nursing-index .container .nursing-merit .nursing-merit-company h4:before {
  display: inline-block;
  width: 28px;
  height: 26px;
  margin-right: 15px;
  vertical-align: -3px;
  background: url("../img/nursing/merit_company.png") no-repeat;
  content: "";
}

.nursing-index .container .nursing-merit .nursing-merit-company .text {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit .nursing-merit-company .text {
    margin-top: 6.55738%;
  }
}

.nursing-index .container .nursing-merit .nursing-merit-company .text dl {
  margin-top: 30px;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit .nursing-merit-company .text dl {
    margin-top: 4.91803%;
  }
}

.nursing-index
  .container
  .nursing-merit
  .nursing-merit-company
  .text
  dl:first-child {
  margin-top: 0;
}

.nursing-index .container .nursing-merit .nursing-merit-company .text dl dt {
  font-size: 1.7rem;
  line-height: 1.35294;
}

.nursing-index
  .container
  .nursing-merit
  .nursing-merit-company
  .text
  dl
  dt:before {
  content: "・";
}

.nursing-index .container .nursing-merit .nursing-merit-company .text dl dd {
  padding-left: 1.6em;
  font-size: 1.4rem;
  line-height: 1.64286;
}

.nursing-index .container .nursing-merit .nursing-merit-company:after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  margin-top: -50px;
  margin-right: -13.86139%;
  background: #fff url("../img/nursing/merit_plus.png") no-repeat center center;
  content: "";
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit .nursing-merit-company:after {
    right: auto;
    top: auto;
    bottom: 0;
    left: 50%;
    width: 26.66667%;
    height: 0;
    padding-top: 26.66667%;
    border-radius: 50%;
    margin-bottom: -13.33333%;
    margin-left: -13.33333%;
  }
}

.nursing-index .container .nursing-merit .nursing-merit-worker {
  float: right;
  width: 48.32536%;
  padding: 40px 40px 40px 50px;
  box-sizing: border-box;
  background-color: #f2fb93;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit .nursing-merit-worker {
    float: none;
    width: 100%;
    padding: 17.91045% 4.47761% 4.47761%;
  }
}

.nursing-index .container .nursing-merit .nursing-merit-worker h4 {
  margin-top: -5px;
  text-align: center;
  color: #00a41f;
  font-size: 1.9rem;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit .nursing-merit-worker h4 {
    margin-top: 0;
  }
}

.nursing-index .container .nursing-merit .nursing-merit-worker h4:before {
  display: inline-block;
  width: 29px;
  height: 32px;
  margin-right: 15px;
  vertical-align: -8px;
  background: url("../img/nursing/merit_worker.png") no-repeat;
  content: "";
}

.nursing-index .container .nursing-merit .nursing-merit-worker .text {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-merit .nursing-merit-worker .text {
    margin-top: 4.91803%;
  }
}

.nursing-index .container .nursing-merit .nursing-merit-worker .text ul {
  font-size: 1.4rem;
  line-height: 1.64286;
}

.nursing-index .container .nursing-merit .nursing-merit-worker .text ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.nursing-index
  .container
  .nursing-merit
  .nursing-merit-worker
  .text
  ul
  li:before {
  content: "・";
}

.nursing-index .container .nursing-feature {
  margin-top: 30px;
}

.nursing-index .container .nursing-feature .image img {
  display: block;
  width: 100%;
  height: auto;
}

.nursing-index .container .nursing-feature ul {
  margin-top: 30px;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.42857;
}

.nursing-index .container .nursing-feature ul:after {
  clear: both;
  display: block;
  content: "";
}

.nursing-index .container .nursing-feature ul li {
  float: left;
  display: table;
  width: 49.2823%;
  padding: 15px;
  margin-left: 1.43541%;
  margin-top: 18px;
  border: 1px solid #2f9f20;
  background-color: #fff;
  box-sizing: border-box;
}

.nursing-index .container .nursing-feature ul li:nth-child(2n + 1) {
  margin-left: 0;
  clear: left;
}

.nursing-index .container .nursing-feature ul li:nth-child(-n + 2) {
  margin-top: 0;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-feature ul li {
    float: none;
    display: block;
    width: auto;
    margin: 2.66667% 5.33333% 0;
  }
  .nursing-index .container .nursing-feature ul li:nth-child(2n + 1) {
    margin-left: 5.33333%;
  }
  .nursing-index .container .nursing-feature ul li:nth-child(-n + 2) {
    margin-top: 2.66667%;
  }
  .nursing-index .container .nursing-feature ul li:first-child {
    margin-top: 0;
  }
}

.nursing-index .container .nursing-feature ul li span {
  display: table-cell;
  width: 100%;
  height: 2.8em;
  box-sizing: border-box;
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-feature ul li span {
    display: block;
    height: auto;
  }
}

.nursing-index .container .nursing-feature ul li span:before {
  content: "・";
}

.nursing-index .container .nursing-service {
  margin-top: 30px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-service {
    margin: 4% 5.33333% 0;
  }
}

.nursing-index .container .nursing-service:after {
  clear: both;
  display: block;
  content: "";
}

.nursing-index .container .nursing-service .sub {
  margin-top: 40px;
}

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

.nursing-index .container .nursing-service .sub:first-child {
  margin-top: 0;
}

.nursing-index .container .nursing-service .sub h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

.nursing-index .container .nursing-service .sub h4:before {
  content: "■";
}
.nursing-index
  .container
  .nursing-service
  .sub
  .nursing-service-contact
  h4:before {
  content: "";
  display: none;
}

.nursing-index .container .nursing-service .sub p {
  font-size: 1.4rem;
  line-height: 2;
}

.nursing-index .container .nursing-service .sub ul {
  font-size: 1.4rem;
  line-height: 2;
}

.nursing-index .container .nursing-service .sub ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.nursing-index .container .nursing-service .sub ul li:before {
  content: "・";
}

.nursing-index .container .nursing-service .nursing-service-contact {
  float: left;
  margin-top: 30px;
  padding: 20px 30px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-service .nursing-service-contact {
    padding: 2.98507%;
  }
}

.nursing-index .container .nursing-service .nursing-service-contact h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

.nursing-index .container .nursing-service .nursing-service-contact table {
  font-size: 1.4rem;
  line-height: 2;
}

.nursing-index .container .nursing-service .nursing-service-contact table th,
.nursing-index .container .nursing-service .nursing-service-contact table td {
  text-align: left;
  font-weight: normal;
}

.nursing-index
  .container
  .nursing-service
  .nursing-service-contact
  table
  td:before {
  content: "：";
}

.nursing-index .container .nursing-inquiry-section {
  margin-top: 70px;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-inquiry-section {
    margin-top: 8%;
    margin-left: 5.33333%;
    margin-right: 5.33333%;
  }
}

.nursing-index .container .nursing-inquiry-section h3 {
  text-align: center;
  color: #114827;
  font-size: 2.2rem;
  line-height: 1.70455;
}

@media only screen and (max-width: 750px) {
  .nursing-index .container .nursing-inquiry-section h3 {
    font-size: 1.4rem;
  }
}

.nursing-section .nursing-service h4.green-ttl{
  font-size: 2rem!important;
  line-height: 1.6;
  color: #114827;
  margin-top: 30px;
}

.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 10px;
  background-color: #114827;
  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: 48.2823%;
    height: 260px;
    padding: 25px 30px;
    margin-left: 1.43541%;
    margin-top: 0;
    margin-bottom:40px;
    border: 1px solid #114827;
    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: 1.43541%;
    clear:none;
}

.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 {
    width: 100%;
    height:auto;
margin-left: 0!important;
  }
}

.inquiry-index
  .container
  .inquiry-section
  .inquiry-container
  .inquiry-tel
  .inquiry-tel-container
  .inquiry-tel-section
  h5 {
  color: #114827;
  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-section a.link-btn {
display: block;
    max-width: 380px;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    font-size: 2.3rem;
    text-decoration: none;
    color: #fff;
    background: #114827;
    border-radius: 5px;
}
.inquiry-section .inquiry-container p{
      margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.5;
}
.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 #114827;
  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 #114827;
  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
  [type="submit"] {
  background-color: #daf65c;
  color: #114827;
}

.inquiry-index
  .container
  .inquiry-section
  .form-container
  .buttons
  [type="reset"] {
  background-color: #c7c7c7;
  color: #6d6d6d;
}

.inquiry-index
  .container
  .inquiry-section
  .form-container
  .buttons
  button:hover {
  opacity: 0.7;
}

/*===============================================
 single-news2
===============================================*/
.news-detail .container .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}
.news-detail .container .info {
  margin-top: 20px;
  overflow: hidden;
}
.news-detail .container .info .date {
  float: left;
  font-size: 1.4rem;
  line-height: 1.4;
}
.news-detail {
  padding: 40px 0 360px;
}
.news-detail .container {
  position: relative;
  max-width: 902px;
  margin: 0 auto;
}
.news-detail .container .detail {
  margin-top: 36px;
}
.news-detail .container .detail p {
  font-size: 1.4rem;
  line-height: 2;
}

.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_2.png") no-repeat;
  vertical-align: 3px;
  content: "";
}
@media only screen and (max-width: 750px){
  .news-detail .container .title {
      font-size: 1.8rem;
  }
  .news-detail {
      padding: 6.66667% 5.33333% 51.33333%;
  }
}

/*===============================================
 archive-news2
===============================================*/
.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;
}
.iframe-wrapper,
.wp-block-embed__wrapper{
  overflow: hidden;
  position: relative;
  width:100%;
margin-bottom:30px;
}
.wp-block-embed__wrapper:after,
.iframe-wrapper:after {
    padding-top: 56.25%;
    display: block;
    content: '';  
}
.wp-block-embed__wrapper>iframe,
.iframe-wrapper>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*各ページ参加者の声*/
.page-voice{
  font-size:1.4rem;
  line-height: 2;
  margin-top:60px;
  margin-bottom:60px;
}
.page-voice .page-voice-title{
  margin: 8rem 0 2rem;
  line-height: 2.5rem;
  display: block;
  padding: 8px 24px;
  background-color: #114827;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.2;
}
.page-voice .page-voice-box{
  display:flex;
  justify-content: space-between;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.page-voice .page-voice-box .page-voice-box-img img{
  max-width: 100%;
  height:auto;
}
.page-voice .page-voice-box .page-voice-box-img{
  width:40%;
}
.page-voice .page-voice-box .page-voice-box-text{
  width:57%;
}
  @media only screen and (max-width: 750px){
    .page-voice .page-voice-box .page-voice-box-img{
      width:100%;
      margin-bottom:20px;
    }
    .page-voice .page-voice-box .page-voice-box-text{
      width:100%;
    }
    .page-voice .page-voice-title{
      margin: 8rem 0 2rem;
      line-height: 2.5rem;
      display: block;
      padding: 8px 24px;
      background-color: #114827;
      color: #fff;
      font-size: 2.4rem;
      line-height: 1.2;
  }
  }
/*トップページ利用者の声*/
.top-voice{
padding-top:64px;
padding-bottom: 64px;
padding-left:64px;
padding-right:16px;
background:#f6f5f0;
}
.top-voice .inner h2{
color:#000;
font-size: 2.3rem;
font-weight: bold;
margin-bottom: 32px;
}
.top-voice .inner h2:before {
display: inline-block;
width: 25px;
height: 25px;
margin-right: 14px;
background: url(../img/top/voice/hukidashi.png) no-repeat;
vertical-align: -5px;
content: "";
background-size: cover;
}

.top-voice-container{
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
display:flex;
}
.top-voice-container::-webkit-scrollbar {
  width: 8px;
  height:8px;
}
.top-voice-container::-webkit-scrollbar-track {
  background: #ece9da;
  border-radius: 8px;
}
.top-voice-container::-webkit-scrollbar-thumb {
  background: #114827;
  border-radius: 8px;
}

.top-voice-container .top-voice-box{
min-width:400px;
white-space: normal;
flex: 0 0 400px;
margin:0 20px 40px 20px;
}
.top-voice-link a{
  background:#114827;
  padding: 5px 10px;
    width: 214px;
    margin: 0 0 0 auto;
  color:#fff;
font-weight:bold;
font-size: 1.4rem;
line-height: 1.6;
text-decoration:none;
display: block;
position:relative;
}
.top-voice-link--long a{
  width: 300px;
}
.top-voice-link a:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border: 5px solid transparent;
    border-left: 5px solid #fff;
}
.top-voice-container .top-voice-box:first-child{
margin-left:0;
}
.top-voice-container .top-voice-box h3{
margin-bottom:20px;
}
.top-voice-container .top-voice-box h3 img{
max-width:100%;
}
.top-voice-container .top-voice-box p{
font-size: 1.4rem;
line-height: 1.6;
margin-bottom:20px;
}
@media only screen and (max-width: 750px){
  .top-voice .inner h2{
font-size: 1.5rem;
}
.top-voice .inner h2:before {
    width: 1.13333em;
    height: 1.13333em;
    margin-right: 0.5em;
    background-image: url(../img/top/voice/hukidashi.png);
    background-size: cover;
    vertical-align: -0.2em;
}
.top-voice{
  padding: 6.66667% 4% 10% 6.66667%;
}
.top-voice-container{
  -ms-overflow-style: none;    /* IE, Edge 対応 */
        scrollbar-width: none;       /* Firefox 対応 */
}
.top-voice-container .top-voice-box p{
  font-size:1.4rem;
}
.top-voice-container::-webkit-scrollbar {
  display:none;
}
.top-voice-container .top-voice-box{
min-width: 80%;
    white-space: normal;
    flex: 0 0 80%;
    margin-bottom:0;
  }

.top-voice-link{
 margin: 0 0 0 auto;
    margin-top: 0;
    text-align:center;
}
.top-voice-link a{
  width: 100%;
  padding:5px;
}
.top-voice-link--long a{
  width: 100%;
  padding:5px;
}
}

.top-snsvoice{
background:#d7dfd3;
padding-top:64px;
padding-bottom:64px;
padding-left:64px;
}
.top-snsvoice img{
  max-width:100%;
  height:auto;
}
.top-snsvoice .inner h2{
color:#009944;
font-size: 1.9rem;
font-weight: bold;
margin-bottom: 32px;
}
.top-snsvoice .inner h2:before {
display: inline-block;
width: 25px;
height: 25px;
margin-right: 14px;
background: url(./img/top/voice/heart.png) no-repeat;
vertical-align: -5px;
content: "";
background-size: cover;
}
.top-snsvoice-box:first-child{
margin-left:0;
}
.top-snsvoice-container{
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
display:flex;
}
.top-snsvoice-container .top-snsvoice-box{
min-width:400px;
flex: 0 0 400px;
margin:0 20px 0 20px;
}
.top-snsvoice-container .top-snsvoice-box:first-child{
  margin-left:0;
}
.top-snsvoice-container::-webkit-scrollbar {
  width: 8px;
  height:8px;
}
.top-snsvoice-container::-webkit-scrollbar-track {
  background: #ccd4c8;
  border-radius: 8px;
}
.top-snsvoice-container::-webkit-scrollbar-thumb {
  background: #009944;
  border-radius: 8px;
}
@media only screen and (max-width: 750px){
  .top-snsvoice{
    padding: 6.66667% 0 10% 6.66667%;
  }
  .top-snsvoice .inner h2{
font-size: 1.5rem;
line-height:1.6;
margin-bottom:10px;
}
.top-snsvoice .inner h2:before {
    width: 1.13333em;
    height: 1.13333em;
    margin-right: 0.5em;
    background-image: url(../img/top/voice/heart.png);
    background-size: cover;
    vertical-align: -0.2em;
}
.top-snsvoice-container{
  -ms-overflow-style: none;    /* IE, Edge 対応 */
        scrollbar-width: none;       /* Firefox 対応 */
}
.top-snsvoice-container::-webkit-scrollbar {
  display:none;
}
.top-snsvoice-container .top-snsvoice-box {
    white-space: normal;
    margin-bottom: 0;
    min-width: 280px;
    flex: 0 0 280px;
    margin: 0 10px 0 20px;
}
}

/*===============================================
 page-entry
===============================================*/
.page-entry .content-header .content-title{color:#114827;}
.page-entry .contact-entry{padding: 40px 0 360px;}
.page-entry .contact-entry .container{
    position: relative;
    max-width: 902px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.4;
}
.page-entry .contact-entry .title{
    font-size: 2rem;
    padding:3px;
    font-weight: bold;
    line-height: 1.4;
    color:#fff;
    background:#114827;
    margin-bottom:45px;
}
.page-entry .contact-entry .entry-info dl{overflow:hidden;margin-bottom:15px;}
.page-entry .contact-entry .entry-info dt{
  float:left;
  width:15%;
  color:#fff;
  background:#114827;
  padding:4px;
  text-align:center;
}
.page-entry .contact-entry .entry-info dd{
  float:left;
  width:79%;
  text-indent:20px;
}


.page-entry form 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;
}
.page-entry form 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;
}
.page-entry form table th small.neccessary{
  color:#e60012;
}
.page-entry form table td input[type=text]{
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid #114827;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 1.6rem;
}
.page-entry form table td textarea{
  display: block;
    width: 100%;
    height: 210px;
    padding: 15px;
    border: 1px solid #114827;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 1.6rem;
    resize: vertical;
}
.page-entry form input[type=submit]{    
  background-color: #daf65c;
  color: #15a956;
  font-size:1.4rem;
  display:block;
  margin:45px auto 0;
  width: 40%;
    font-weight: bold;
    padding: 11px;
}
.page-entry .formset{
      max-width: 710px;
    margin: 40px auto 0;
}
@media only screen and (max-width: 750px){
  .page-entry .contact-entry .entry-info{
    width: 90%;
    margin: 0 auto;
  }
  .page-entry .contact-entry .entry-info dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
.page-entry .contact-entry .entry-info dt{
  float:unset;
  width: 25%;
  color:#fff;
  background:#114827;
  padding:4px;
  text-align:center;
}
.page-entry .contact-entry .entry-info dd{
  float:unset;
  width: 68%;
  margin-top: 5px;
  text-indent:0;
}
  .page-entry form table{
    width: 90%;
    margin: 0 auto;
  }
  .page-entry form table th{
    width: 100%;
    display: block;
    font-size: 1.8rem;
}
.page-entry form table td{
  width: 100%;
  display: block;
  padding: 10px 0 10px;
}
}