@charset "UTF-8";
/* /////////////////////////////////

  _reset.scss

///////////////////////////////// */
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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.5;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* /////////////////////////////////

  _base.scss

///////////////////////////////// */
/*---------------------------------

  #Base Modules

---------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
}

main {
  display: block;
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

hr {
  border-top-width: 1px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

code, kbd, pre, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

/* for IE7 */
* + html code, kbd, pre, samp, tt {
  font-size: 108%;
}

article > * + * {
  margin-top: 1.5em;
}

article a:not[class] {
  color: #333;
  text-decoration: underline;
}

a {
  color: #333;
}

a[href*="tel:"] {
  display: inline-block;
  text-decoration: none;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }

  a[href*="tel:"]:not([class]) {
    text-decoration: underline;
  }
}
/* ------ form --------------------------------- */
button, fieldset, form, input,
label, legend, select, textarea {
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

input, textarea {
  vertical-align: middle;
  padding: 1px;
}

textarea {
  max-width: 98%;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: baseline;
  margin-right: 3px;
}

figcaption {
  margin: 5px 0 0;
  text-align: center;
}

/* ------ clearfix scheme ---------------------- */
.clearfix::after {
  content: " ";
  display: block;
  visibility: hidden;
  height: 0;
  font-size: 0;
  clear: both;
}

* html div {
  zoom: 1;
}

/* IE6 */
*:first-child + html div {
  zoom: 1;
}

/* IE7 */
/* /////////////////////////////////

  _common.scss

///////////////////////////////// */
/*---------------------------------
  Base
---------------------------------*/
body {
  min-width: 1200px;
  max-width: 1300px;
  margin: 0 auto;
}

._inner {
  width: 1200px;
  margin: 0 auto;
}

.container {
  padding-top: 80px;
  background: #fff;
}

.content {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
}

/*---------------------------------
  header
---------------------------------*/
.header {
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.header--wrap {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  max-width: 1300px;
  min-width: 1200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.header--wrap::after {
  content: none;
}
.header--logo img {
  margin-left: 40px;
  width: 325px;
}

@media screen and (min-width: 769px) {
  .header--wrap {
    padding-right: 80px;
  }
}
.globalNav--list {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin-right: 40px;
}
.globalNav--item {
  margin-right: 15px;
}
.globalNav--item.stay a {
  border-bottom: 2px solid #8ec31f;
}
.home .globalNav--item a.nav-home,
.technology .globalNav--item a.nav-technology,
.about .globalNav--item a.nav-about,
.recruit .globalNav--item a.nav-recruit,
.news .globalNav--item a.nav-news {
  border-bottom: 2px solid #8ec31f;
}
.globalNav--item a {
  display: block;
  padding: 5px 20px 5px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.globalNav--item a:hover {
  border-bottom: 2px solid #8ec31f;
}

.contactBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  background: #8ec31f;
  border: 1px solid #8ec31f;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
}
.contactBtn:hover {
  background: #ffffff;
}
.contactBtn:hover .contactBtn--icon {
  background-image: url(/themes/main/images/common/icon_contact_green.png);
}
.contactBtn:hover .contactBtn--text a,
.contactBtn:hover .contactBtn--text {
  color: #8ec31f;
}
.contactBtn--icon {
  width: 36px;
  height: 34px;
  background: url(/themes/main/images/common/icon_contact_white.png) no-repeat center center/cover;
  margin-bottom: 10px;
}
.contactBtn--text {
  font-weight: bold;
  color: #ffffff;
  font-size: 1.4rem;
  white-space: nowrap;
}
.contactBtn--text a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  color: #ffffff;
}

.hamburgerBtn,
.hamburgerMenu {
  display: none;
}

/*---------------------------------
  Page Title
---------------------------------*/
.pageTitle {
  width: 100%;
  height: 180px;
  padding: 0 20px;
  background: url(/themes/main/images/common/bg_page-title.png) no-repeat center center/cover;
  position: relative;
}
.pageTitle--wrap {
  display: block;
  width: 100%;
  height: 100%;
}
.pageTitle--heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  height: 100%;
  letter-spacing: 5px;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 3.0rem;
  color: #ffffff;
}

/*---------------------------------
  Breadcrumb List
---------------------------------*/
.breadcrumb {
  margin: 15px 0 35px;
}
.breadcrumb--list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumb--item {
  display: inline-block;
  list-style: none;
  position: relative;
  font-size: 1.2rem;
}
.breadcrumb--item a {
  font-size: 1.2rem;
  text-decoration: underline;
}
.breadcrumb--item a:hover {
  text-decoration: none;
}
.breadcrumb--item::before {
  content: none;
}
.breadcrumb--item::after {
  content: "　/　";
}
.breadcrumb--item:last-child::after {
  content: none;
}

/*---------------------------------
  navgation area
---------------------------------*/
.navigationArea {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
.navigationArea::after {
  content: none;
}

/*---------------------------------
  Local Nav
---------------------------------*/
.localNav {
  margin: 40px 0 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #8ec31f;
}
.localNav--list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.localNav--item {
  width: 33%;
  background: #eeeeee;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.localNav--item a {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 40px;
  text-decoration: none;
  font-size: 1.6rem;
  position: relative;
}
.localNav--item a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
}

/*---------------------------------
  Banner Area
---------------------------------*/
/*---------------------------------
  Pagetop Button
---------------------------------*/
.footer ._inner {
  position: relative;
}

.pageTop {
  width: 50px;
  height: 50px;
  background: #8ec31f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -25px;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.pageTop:hover {
  opacity: 0.5;
}
.pageTop::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-45deg) translateY(-50%);
}

/*---------------------------------
  Product Flow
---------------------------------*/
.productFlow--unit {
  display: flex;
  justify-content: space-between;
  margin: 25px 0 0;
  padding: 15px 15px 15px 90px;
  border: 3px solid #eee;
  position: relative;
}
.productFlow--unit:last-of-type .productFlow--number::before, .productFlow--unit:last-of-type .productFlow--number::after {
  content: none;
  display: none;
}
.productFlow--number {
  height: 100%;
  text-align: center;
  letter-spacing: 1px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 3.4rem;
  color: #005A49;
  position: absolute;
  top: 5px;
  left: 20px;
}
.productFlow--number span {
  display: block;
  margin: 0 -10px -15px 0;
  font-size: 1.4rem;
}
.productFlow--number::before {
  content: "";
  display: block;
  width: 4px;
  height: calc(100% - 50px);
  background: #005A49;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.productFlow--number::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-right: solid 4px #005A49;
  border-bottom: solid 4px #005A49;
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%) rotate(45deg);
}
.productFlow--text {
  width: 409px;
  margin-right: 30px;
}
.productFlow--title {
  font-weight: bold;
  font-size: 2.4rem;
}
.productFlow--summary {
  margin: 10px 0 0;
}
.productFlow--images {
  display: flex;
  justify-content: space-between;
  width: 650px;
}
.productFlow--image {
  width: 320px;
}
.productFlow--image:nth-of-type(2n) {
  margin-left: 10px;
}

/*---------------------------------
  footer
---------------------------------*/
.footer {
  width: 100%;
  margin: 80px 0 0;
}
.footer .current a {
  pointer-events: none;
}
.footer li.current {
  cursor: text;
}
.footer--wrap {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  margin: 0;
  width: 100%;
}
.companyInfo {
  padding-left: 40px;
}
.companyInfo--logo img {
  width: 325px;
}
.companyInfo--address {
  font-size: 1.6rem;
  text-align: center;
}

.contactArea {
  padding: 50px 0;
  background: #8ec31f;
  color: #ffffff;
}
.contactArea--wrap {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.contactArea--btn {
  margin-left: 30px;
}
.contactArea--btn a {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #fff;
  background: #ffffff;
  text-align: center;
  color: #8ec31f;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contactArea--btn a:hover {
  background: #8ec31f;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .contactArea--btn a {
    min-width: 300px;
  }
}
.companyInfo--logo {
  margin-bottom: 15px;
}
.companyInfo address {
  font-style: normal;
}

.megaMenu--wrap {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  width: 620px;
  padding-left: 20px;
}
.megaMenu--item {
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  transition: all 0.3s ease;
}
.megaMenu--item a {
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
}
.megaMenu--item::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  position: absolute;
  top: 45%;
  left: -15px;
  transform: rotate(45deg) translateY(-50%);
}
.megaMenu--item + .megaMenu--item {
  margin: 20px 0 0;
}
.megaMenu--item:hover {
  opacity: 0.5;
}
.megaMenu--childItem {
  margin: 8px 0 0;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}
.megaMenu--childItem a {
  text-decoration: none;
}
.megaMenu--childItem:hover {
  opacity: 0.5;
}

.group {
  display: flex;
  flex-direction: column;
  width: 145px;
}
.group--kaneka {
  position: relative;
  transition: all 0.3s ease;
  width: 130px;
  left: 8px;
}
.group--aoi {
  margin: 0 auto;
  text-align: center;
  padding-top: 15px;
  transition: all 0.3s ease;
  width: 145px;
}
.group--aoi a ,
.group--kaneka a {
  text-decoration: none;
}
.group--kaneka img {
  width: 108px;
  position: relative;
  left: 10px;
}
.group--kaneka .group--summary {
  left: -22px;
  height: 20px;
}
.group--summary {
  text-align: center;
  font-size: 10px;
  transform: scale(0.9);
  display: block;
  width: 180px;
  position: relative;
  left: -18px;
}
.group--kaneka:hover,
.group--aoi:hover {
  opacity: 0.5;
}

.copyright {
  padding: 10px 0;
  background: #eeeeee;
}
.copyright--wrap {
  display: flex;
  justify-content: space-between;
}
.copyright--link .link li {
  font-size: 1.3rem;
  margin-top: 12px;
}
.copyright--link .link li::before {
  border-color: #000;
}
.copyright--link .link li a {
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.copyright--link .link li.current a {
  font-size: 1.3rem;
  color: #000;
}
.copyright--link .link li a:hover {
  opacity: 0.5;
}
.copyright--text {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.2rem;
  color: #666666;
  text-align: right;
}
.copyright--trademark {
  font-size: 10px;
  position: relative;
  left: 35px;
  display: block;
  transform: scale(0.8);
}
/* /////////////////////////////////

  _parts.scss

///////////////////////////////// */
/*---------------------------------

  #Layout Modules

---------------------------------*/
.content p,
.content ul,
.content dl,
.content ol,
.content table,
.content blockquote {
  margin: 20px 0 0;
  line-height: 1.7;
}
.content ul ul,
.content ul ol,
.content ol ul,
.content dl ul,
.content dl ol,
.content table p,
.content table ul,
.content table dl,
.content table ol {
  margin: 0;
}
.content .column-image-left,
.content .column-image-center,
.content .column-image-right {
  margin-top: 20px !important;
}
.content a:not[class] {
  color: #333;
}

/*---------------------------------

  #Helper Modules

---------------------------------*/
._small {
  font-size: 87%;
}

._x-small {
  font-size: 78%;
}

._large {
  font-size: 107%;
}

._x-large {
  font-size: 120%;
}

._attention {
  color: #FF3366;
}

._bold {
  font-weight: bold;
}

._center {
  text-align: center !important;
}

._right {
  text-align: right !important;
}

._left {
  text-align: left !important;
}

._pos-center {
  margin-left: auto;
  margin-right: auto;
}

._pos-right {
  margin-left: auto;
  margin-right: 0;
}

._pos-left {
  margin-left: 0;
  margin-right: auto;
}

._float-l {
  float: left;
}

._float-r {
  float: right;
}

._clear {
  clear: both;
}

._img-l {
  float: left;
  margin: 0 25px 10px 0 !important;
}

._img-r {
  float: right;
  margin: 0 0 10px 25px !important;
}

._nocss {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

._flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

._flexBw {
  display: flex;
  justify-content: space-between;
}

._flexcenter {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.btn_large {
  font-size: 2.2rem !important;
}

._centering {
  display: flex;
  justify-content: center;
}
  /*
@media screen and (max-width: 768px) {

  ._flex,
._flexBw,
._flexcenter {
    display: block;
  }
}
*/
._extend-anchor::before {
  content: "";
  pointer-events: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

._external::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 11px;
  background: url(/themes/main/images/common/icon_win_g.png);
  background-size: cover;
  top: 50%;
  margin-top: -6px;
  margin-left: 10px;
}

._clearfix::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: transparent;
  clear: both;
  float: none;
}

._pc {
  display: block !important;
}

._sp {
  display: none !important;
}

span._pc {
  display: inline !important;
}

br._pc {
  display: block;
}

br._sp {
  display: none;
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }

  ._sp {
    display: block !important;
  }

  span._pc {
    display: none !important;
  }

  span._sp {
    display: inline-block !important;
  }

  br._pc {
    display: none;
  }

  br._sp {
    display: block;
  }

  ._img-l,
._img-r {
    width: 100%;
    float: none;
    clear: both;
    margin: 20px 0 0 !important;
  }
}
._m0 {
  margin: 0 !important;
}

._mt0 {
  margin-top: 0 !important;
}

._mb0 {
  margin-bottom: 0 !important;
}

._mr0 {
  margin-right: 0 !important;
}

._ml0 {
  margin-left: 0 !important;
}

._mx0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

._my0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

._mxa {
  margin-left: auto !important;
  margin-right: auto !important;
}

._mt10 {
  margin-top: 10px !important;
}

._mb10 {
  margin-bottom: 10px !important;
}

._mr10 {
  margin-right: 10px !important;
}

._ml10 {
  margin-left: 10px !important;
}

._mx10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

._my10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

._mt20 {
  margin-top: 20px !important;
}

._mb20 {
  margin-bottom: 20px !important;
}

._mr20 {
  margin-right: 20px !important;
}

._ml20 {
  margin-left: 20px !important;
}

._mx20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

._my20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

._mt30 {
  margin-top: 30px !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mr30 {
  margin-right: 30px !important;
}

._ml30 {
  margin-left: 30px !important;
}

._mx30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

._my30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

._mt40 {
  margin-top: 40px !important;
}

._mb40 {
  margin-bottom: 40px !important;
}

._mr40 {
  margin-right: 40px !important;
}

._ml40 {
  margin-left: 40px !important;
}

._mx40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

._my40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

._mt50 {
  margin-top: 50px !important;
}

._mb50 {
  margin-bottom: 50px !important;
}

._mr50 {
  margin-right: 50px !important;
}

._ml50 {
  margin-left: 50px !important;
}

._mx50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

._my50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

._mt60 {
  margin-top: 60px !important;
}

._mb60 {
  margin-bottom: 60px !important;
}

._mr60 {
  margin-right: 60px !important;
}

._ml60 {
  margin-left: 60px !important;
}

._mx60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

._my60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

._mt70 {
  margin-top: 70px !important;
}

._mb70 {
  margin-bottom: 70px !important;
}

._mr70 {
  margin-right: 70px !important;
}

._ml70 {
  margin-left: 70px !important;
}

._mx70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

._my70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

._mt80 {
  margin-top: 80px !important;
}

._mb80 {
  margin-bottom: 80px !important;
}

._mr80 {
  margin-right: 80px !important;
}

._ml80 {
  margin-left: 80px !important;
}

._mx80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

._my80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

._mt90 {
  margin-top: 90px !important;
}

._mb90 {
  margin-bottom: 90px !important;
}

._mr90 {
  margin-right: 90px !important;
}

._ml90 {
  margin-left: 90px !important;
}

._mx90 {
  margin-left: 90px !important;
  margin-right: 90px !important;
}

._my90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

._mt100 {
  margin-top: 100px !important;
}

._mb100 {
  margin-bottom: 100px !important;
}

._mr100 {
  margin-right: 100px !important;
}

._ml100 {
  margin-left: 100px !important;
}

._mx100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

._my100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

._p0 {
  padding: 0 !important;
}

._pt0 {
  padding-top: 0 !important;
}

._pb0 {
  padding-bottom: 0 !important;
}

._pr0 {
  padding-right: 0 !important;
}

._pl0 {
  padding-left: 0 !important;
}

._px0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

._py0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

._pt10 {
  padding-top: 10px !important;
}

._pb10 {
  padding-bottom: 10px !important;
}

._pr10 {
  padding-right: 10px !important;
}

._pl10 {
  padding-left: 10px !important;
}

._px10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

._py10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

._pt20 {
  padding-top: 20px !important;
}

._pb20 {
  padding-bottom: 20px !important;
}

._pr20 {
  padding-right: 20px !important;
}

._pl20 {
  padding-left: 20px !important;
}

._px20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

._py20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

._pt30 {
  padding-top: 30px !important;
}

._pb30 {
  padding-bottom: 30px !important;
}

._pr30 {
  padding-right: 30px !important;
}

._pl30 {
  padding-left: 30px !important;
}

._px30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

._py30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

._pt40 {
  padding-top: 40px !important;
}

._pb40 {
  padding-bottom: 40px !important;
}

._pr40 {
  padding-right: 40px !important;
}

._pl40 {
  padding-left: 40px !important;
}

._px40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

._py40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

._pt50 {
  padding-top: 50px !important;
}

._pb50 {
  padding-bottom: 50px !important;
}

._pr50 {
  padding-right: 50px !important;
}

._pl50 {
  padding-left: 50px !important;
}

._px50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

._py50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

._pt60 {
  padding-top: 60px !important;
}

._pb60 {
  padding-bottom: 60px !important;
}

._pr60 {
  padding-right: 60px !important;
}

._pl60 {
  padding-left: 60px !important;
}

._px60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

._py60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

._pt70 {
  padding-top: 70px !important;
}

._pb70 {
  padding-bottom: 70px !important;
}

._pr70 {
  padding-right: 70px !important;
}

._pl70 {
  padding-left: 70px !important;
}

._px70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

._py70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

._pt80 {
  padding-top: 80px !important;
}

._pb80 {
  padding-bottom: 80px !important;
}

._pr80 {
  padding-right: 80px !important;
}

._pl80 {
  padding-left: 80px !important;
}

._px80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

._py80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

._pt90 {
  padding-top: 90px !important;
}

._pb90 {
  padding-bottom: 90px !important;
}

._pr90 {
  padding-right: 90px !important;
}

._pl90 {
  padding-left: 90px !important;
}

._px90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

._py90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

._pt100 {
  padding-top: 100px !important;
}

._pb100 {
  padding-bottom: 100px !important;
}

._pr100 {
  padding-right: 100px !important;
}

._pl100 {
  padding-left: 100px !important;
}

._px100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

._py100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

._w1p {
  width: 1%;
}

._w2p {
  width: 2%;
}

._w3p {
  width: 3%;
}

._w4p {
  width: 4%;
}

._w5p {
  width: 5%;
}

._w6p {
  width: 6%;
}

._w7p {
  width: 7%;
}

._w8p {
  width: 8%;
}

._w9p {
  width: 9%;
}

._w10p {
  width: 10%;
}

._w11p {
  width: 11%;
}

._w12p {
  width: 12%;
}

._w13p {
  width: 13%;
}

._w14p {
  width: 14%;
}

._w15p {
  width: 15%;
}

._w16p {
  width: 16%;
}

._w17p {
  width: 17%;
}

._w18p {
  width: 18%;
}

._w19p {
  width: 19%;
}

._w20p {
  width: 20%;
}

._w21p {
  width: 21%;
}

._w22p {
  width: 22%;
}

._w23p {
  width: 23%;
}

._w24p {
  width: 24%;
}

._w25p {
  width: 25%;
}

._w26p {
  width: 26%;
}

._w27p {
  width: 27%;
}

._w28p {
  width: 28%;
}

._w29p {
  width: 29%;
}

._w30p {
  width: 30%;
}

._w31p {
  width: 31%;
}

._w32p {
  width: 32%;
}

._w33p {
  width: 33%;
}

._w34p {
  width: 34%;
}

._w35p {
  width: 35%;
}

._w36p {
  width: 36%;
}

._w37p {
  width: 37%;
}

._w38p {
  width: 38%;
}

._w39p {
  width: 39%;
}

._w40p {
  width: 40%;
}

._w41p {
  width: 41%;
}

._w42p {
  width: 42%;
}

._w43p {
  width: 43%;
}

._w44p {
  width: 44%;
}

._w45p {
  width: 45%;
}

._w46p {
  width: 46%;
}

._w47p {
  width: 47%;
}

._w48p {
  width: 48%;
}

._w49p {
  width: 49%;
}

._w50p {
  width: 50%;
}

._w51p {
  width: 51%;
}

._w52p {
  width: 52%;
}

._w53p {
  width: 53%;
}

._w54p {
  width: 54%;
}

._w55p {
  width: 55%;
}

._w56p {
  width: 56%;
}

._w57p {
  width: 57%;
}

._w58p {
  width: 58%;
}

._w59p {
  width: 59%;
}

._w60p {
  width: 60%;
}

._w61p {
  width: 61%;
}

._w62p {
  width: 62%;
}

._w63p {
  width: 63%;
}

._w64p {
  width: 64%;
}

._w65p {
  width: 65%;
}

._w66p {
  width: 66%;
}

._w67p {
  width: 67%;
}

._w68p {
  width: 68%;
}

._w69p {
  width: 69%;
}

._w70p {
  width: 70%;
}

._w71p {
  width: 71%;
}

._w72p {
  width: 72%;
}

._w73p {
  width: 73%;
}

._w74p {
  width: 74%;
}

._w75p {
  width: 75%;
}

._w76p {
  width: 76%;
}

._w77p {
  width: 77%;
}

._w78p {
  width: 78%;
}

._w79p {
  width: 79%;
}

._w80p {
  width: 80%;
}

._w81p {
  width: 81%;
}

._w82p {
  width: 82%;
}

._w83p {
  width: 83%;
}

._w84p {
  width: 84%;
}

._w85p {
  width: 85%;
}

._w86p {
  width: 86%;
}

._w87p {
  width: 87%;
}

._w88p {
  width: 88%;
}

._w89p {
  width: 89%;
}

._w90p {
  width: 90%;
}

._w91p {
  width: 91%;
}

._w92p {
  width: 92%;
}

._w93p {
  width: 93%;
}

._w94p {
  width: 94%;
}

._w95p {
  width: 95%;
}

._w96p {
  width: 96%;
}

._w97p {
  width: 97%;
}

._w98p {
  width: 98%;
}

._w99p {
  width: 99%;
}

._w100p {
  width: 100%;
}

/* --- ext icon --- */
a[href$=".xls"], a[href$=".xlsx"] {
  background: url(/themes/main/images/icon/xls.png) no-repeat 100% 50%;
  padding-right: 25px;
}

a[href$=".doc"], a[href$=".docx"] {
  background: url(/themes/main/images/icon/doc.png) no-repeat 100% 50%;
  padding-right: 25px;
}

a[href$=pdf] {
  background: url(/themes/main/images/icon/pdf.png) no-repeat 100% 50%;
  padding-right: 25px;
}

a[href$=ppt] {
  background: url(/themes/main/images/icon/ppt.png) no-repeat 100% 50%;
  padding-right: 25px;
}

/*---------------------------------
  Catchcopy
---------------------------------*/
.catchcopy {
  margin: 30px 0 0;
  font-weight: bold;
  font-size: 2.6rem;
  color: #005A49;
  text-align: center;
}

/*---------------------------------

  #Heading

---------------------------------*/
.content ._ttl-h2,
.content ._ttl-h3,
.content ._ttl-h4,
.content ._ttl-h5,
.content .wysiwyg h1,
.content .wysiwyg h2,
.content .wysiwyg h3,
.content .wysiwyg h4 {
  font-weight: bold;
}
.content ._ttl-h2,
.content .wysiwyg h1 {
  text-align: center;
  margin: 90px 0 0;
  font-size: 3.4rem;
}
.content ._ttl-h2 span,
.content .wysiwyg h1 span {
  display: block;
  letter-spacing: 1px;
  font-weight: normal;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 2.1rem;
  color: #005A49;
}
.content ._ttl-h2 a:link {
  text-decoration: underline;
}
.content ._ttl-h2 a:visited {
  text-decoration: underline;
}
.content ._ttl-h2 a:hover,
.content ._ttl-h2 a:active {
  text-decoration: none;
}
.content ._ttl-h3,
.content .wysiwyg h2 {
  margin: 70px 0 0;
  font-size: 2.8rem;
  position: relative;
}
.content ._ttl-h3 span,
.content .wysiwyg h2 span {
  position: relative;
  z-index: 2;
}
.content ._ttl-h3 span::after,
.content .wysiwyg h2 span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background: #bbdb79;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
}
.content ._ttl-h4,
.content .wysiwyg h3 {
  margin: 50px 0 0;
  font-size: 1.8rem;
  color: #005A49;
}
.content ._ttl-h5,
.content .wysiwyg h4 {
  margin: 15px 0 0;
  font-size: 1.6rem;
}

.anchor {
  padding-top: 50px;
  margin-top: -50px;
}

/*---------------------------------

  #Catchcopy

---------------------------------*/
.catchCopy {
  font-weight: bold;
  font-size: 2.6rem;
  color: #8ec31f;
}

/*---------------------------------
  Blockquote
---------------------------------*/
blockquote {
  background: #fafafa;
  padding: 30px 30px 30px 145px !important;
  line-height: 2 !important;
  position: relative;
}
blockquote::before {
  content: "";
  width: 86px;
  height: 69px;
  background: url(/themes/main/images/common/icon_blockquote.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
}

/*---------------------------------

  #List

---------------------------------*/
.list li {
  padding-left: 15px;
  margin-bottom: 5px;
  position: relative;
}

.list li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #8ec31f;
  /*border-radius: 4px;*/
  position: absolute;
  top: 1.4rem;
  left: 0;
  transform: translateY(-50%);
}

.link li {
  padding-left: 15px;
  margin-bottom: 5px;
  position: relative;
}

.link li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-top: solid 1px #8ec31f;
  border-right: solid 1px #8ec31f;
  position: absolute;
  top: 1rem;
  left: 2px;
  transform: rotate(45deg) translateY(-50%);
}

.flowList li {
  display: inline-block;
  margin-right: 2em;
}

ol {
  counter-reset: number;
  padding: 0;
  /* paddingキャンセル */
  list-style: none;
  /* olがはき出す数字を消す */
}

ol li {
  text-indent: -30px;
  padding-left: 30px;
  margin-bottom: 5px;
}

ol li:before {
  counter-increment: number;
  content: counter(number) ". ";
  font-weight: bold;
  text-align: right;
  display: inline-block;
  width: 25px;
  margin-right: 5px;
}

ol ol {
  margin: 5px 0 0 !important;
}

.rice li {
  margin: 0 0 5px 1em;
  text-indent: -1em;
}

dl.list dt {
  margin: 5px 0 0;
  padding-left: 1em;
  font-weight: bold;
  position: relative;
}
dl.list dt::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #8ec31f;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
dl.list dd {
  padding-left: 1em;
}

/*---------------------------------

  #Img List

---------------------------------*/
.imgList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px 0;
}
.imgList.col3 .imgList--item {
  width: 32%;
  margin-left: 0;
  margin-right: 2%;
}
.imgList.col3 .imgList--item:nth-child(3n) {
  margin-right: 0;
}
.imgList--item {
  width: 48%;
}
.imgList--item:nth-child(2n) {
  margin-left: 4%;
}

/*---------------------------------

  #SNS Share Button

---------------------------------*/
.social-icon ul {
  margin: 20px auto;
  text-align: center;
}

.social-icon ul li {
  display: inline-block;
}

.social-icon ul li a {
  display: block;
  width: 60px;
  height: 60px;
  text-indent: -99999px;
  font-size: 50%;
  border-radius: 50%;
}

@media screen and (min-width: 750px) {
  .facebook:hover {
    background: url(/themes/main/images/svg/facebook.svg) center center no-repeat;
    background-size: 100%;
    background-color: #3b5998 !important;
  }
}
.facebook {
  background: url(/themes/main/images/svg/facebookClick.svg) center center no-repeat;
  background-size: 100%;
  background-color: #ffffff !important;
  border: 1px solid #3b5998;
}

@media screen and (min-width: 750px) {
  .twitter:hover {
    background: url(/themes/main/images/svg/twitter.svg) center center no-repeat;
    background-size: 100%;
    background-color: #00aced !important;
  }
}
.twitter {
  background: url(/themes/main/images/svg/twitterClick.svg) center center no-repeat;
  background-size: 100%;
  background-color: #ffffff !important;
  border: 1px solid #00aced;
}

@media screen and (min-width: 750px) {
  .line:hover {
    background: url(/themes/main/images/svg/line.svg) center center no-repeat;
    background-size: 100%;
    background-color: #2cbf13 !important;
  }
}
.line {
  background: url(/themes/main/images/svg/lineClick.svg) center center no-repeat;
  background-size: 100%;
  background-color: #ffffff !important;
  border: 1px solid #2cbf13;
}

/*---------------------------------

  #Table

---------------------------------*/
table {
  border-collapse: collapse;
  border: 1px solid #8ec31f;
  width: 100%;
  box-sizing: border-box;
}

table th,
table td {
  padding: 15px 20px;
  vertical-align: top;
  border: 1px solid #8ec31f;
  background: #fff;
}

table th {
  background: #eee;
  border-right: none;
  font-weight: bold;
  vertical-align: middle;
}

table td {
  border-left: none;
  border-right: none;
}

table tr td:last-of-type {
  border-right: 1px solid #8ec31f;
}

table thead th,
th.head {
  background: #8ec31f;
  text-align: center;
  color: #ffffff;
}

table._noBorder,
table._noBorder * {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

table._noBorder th,
table._noBorder td {
  text-align: left;
}

/*---------------------------------
  button
---------------------------------*/
.btn a {
  display: inline-block;
  min-width: 220px;
  padding: 15px 40px;
  background: transparent;
  border: 1px solid #8ec31f;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  font-size: 1.8rem;
  color: #8ec31f;
  position: relative;
  transition: all 0.3s ease;
}
.btn a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 2px #8ec31f;
  border-right: solid 2px #8ec31f;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
}
.btn a:hover, .btn a:active {
  background: #8ec31f;
  color: #fff;
}
.btn a:hover::after, .btn a:active::after {
  border-color: #fff;
}
.btn a.btn-02 a {
  background: #eee;
  border-color: #eee;
  color: #333333;
}
.btn a.btn-02 a:hover, .btn a.btn-02 a:active {
  background: #ffffff;
  color: #000;
}

/*---------------------------------
  about
---------------------------------*/

.presidentName {
  width: 225px;
  margin: 0 0 0 auto;
}
.philosophy {
font-weight: bold;
font-size: 2.2rem;
text-align: center;
}


/*---------------------------------
  privacy
---------------------------------*/
.conditions {
  border-top: 1px solid #cccccc;
  padding-top: 60px;
}

/*---------------------------------
  IE調整
---------------------------------*/
@media all and (-ms-high-contrast: none) {
  .group--logo {
    height: 55px;
  }
  .group--aoi {
    padding-top: 25px;
  }

  .btn a {
    padding-bottom: 8px;
  }
  .contactArea--btn a {
    padding: 12px 0 6px 0;
  }

  .footer--wrap {
    height: 210px;
  }

}
/*# sourceMappingURL=main.css.map */