@charset "UTF-8";
/* Scss Document */
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, 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;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, 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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

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

em {
  font-style: normal; }

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

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

input, select {
  vertical-align: middle; }

img, svg {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom; }

a img {
  border: none; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

/* Scss Document */
/* フォントサイズ可変 */
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeZoomout {
  from {
    opacity: 0;
    transform: scale(2); }
  to {
    opacity: 1;
    transform: scale(1); } }
@-webkit-keyframes fadeZoomout {
  from {
    opacity: 0;
    transform: scale(2); }
  to {
    opacity: 1;
    transform: scale(1); } }
@keyframes fadeZoomin {
  from {
    opacity: 0;
    transform: scale(0); }
  to {
    opacity: 1;
    transform: scale(1); } }
@-webkit-keyframes fadeZoomin {
  from {
    opacity: 0;
    transform: scale(0); }
  to {
    opacity: 1;
    transform: scale(1); } }
/* General Style
/* --------------------------------------------------- */
a, a:visited, a:active {
  color: #009999;
  text-decoration: underline; }

a:hover {
  text-decoration: none; }

html {
  font-size: 62.5%;
  /* 16pxに625%を掛けると100pxになる */
  height: 100%; }

body {
  width: 100%;
  height: 100%;
  color: #000;
  background: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1.4em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  -webkit-text-size-adjust: 100%; }
  @media print, screen and (min-width: 769px) {
    body {
      font-size: 1.6em; } }

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

/* レスポンシブルimages */
.rpimg {
  width: 100%;
  height: auto; }

/* header                                         
/* --------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }
  #header.hide {
    -webkit-transform: translateY(-85px);
    transform: translateY(-85px); }
  #header .inner {
    z-index: 999;
    text-align: left;
    position: relative;
    padding: 0 2%;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    height: 60px; }
    @media print, screen and (min-width: 769px) {
      #header .inner {
        margin: 0 auto;
        height: 80px;
        padding: 0 0 0 20px; } }
  #header .logo {
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    height: 60px; }
    @media print, screen and (min-width: 769px) {
      #header .logo {
        height: 80px; } }
  #header .logo h1 {
    color: #009999;
    font-size: 2rem;
    font-weight: 900; }
    @media print, screen and (min-width: 1200px) {
      #header .logo h1 {
        font-size: 2.6rem; } }

/* Key common */
.key-common {
  padding-top: 60px; }
  @media print, screen and (min-width: 769px) {
    .key-common {
      padding-top: 80px; } }

/* contents                                           
/* --------------------------------------------------- */
.main-contents {
  position: relative;
  overflow: hidden;
  background-color: #f6f7f9; }
  #home .main-contents {
    background-color: #fff; }
  .main-contents .main-inner {
    padding: 3em 4%;
    margin: 0 auto;
    line-height: 1.6; }
    @media print, screen and (min-width: 769px) {
      .main-contents .main-inner {
        max-width: 1020px;
        padding: 5em 20px;
        margin: 0 auto; } }
  .main-contents section {
    text-align: left; }
  .main-contents section + section {
    margin-top: 8em; }
    @media print, screen and (min-width: 769px) {
      .main-contents section + section {
        margin-top: 10em; } }
  .main-contents article {
    margin-bottom: 30px; }
    @media print, screen and (min-width: 769px) {
      .main-contents article {
        margin-bottom: 50px; } }
    .main-contents article:last-child {
      margin-bottom: 0; }
  .main-contents h1, .main-contents h2, .main-contents h3, .main-contents h4, .main-contents h5, .main-contents h6 {
    font-weight: 500; }
  .main-contents a {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out; }
  .main-contents a img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out; }
  .main-contents a:hover img {
    opacity: 0.7; }

/* パンくずナビ */
.breadcrumb {
  padding: 0.7em 4%;
  text-align: left;
  max-width: 1020px;
  margin: 0 auto; }
  @media print, screen and (min-width: 769px) {
    .breadcrumb {
      padding: 0.7em 20px; } }
  .breadcrumb li {
    display: inline;
    font-size: 1.2rem; }
    @media print, screen and (min-width: 769px) {
      .breadcrumb li {
        font-size: 1.4rem; } }
    .breadcrumb li:after {
      content: "";
      width: 4px;
      height: 4px;
      display: inline-block;
      vertical-align: middle;
      margin: 0 5px;
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      border-top: 1px solid #009999;
      border-right: 1px solid #009999;
      margin-left: 10px; }
    .breadcrumb li:last-child:after {
      display: none; }

/* footer                                           
/* --------------------------------------------------- */
#footer {
  background: #fff;
  width: 100%; }
  @media print, screen and (min-width: 1025px) {
    #footer .inner {
      display: -webkit-flex;
      display: flex; } }

.foot-add {
  background-color: #009999;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  padding: 30px 4%;
  display: block;
  font-size: 1.4rem; }
  @media print, screen and (max-width: 375px) {
    .foot-add {
      font-size: 1.2rem; } }
  .foot-add a {
    color: #fff;
    text-decoration: none; }
  .foot-add .logo {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1em; }
    @media print, screen and (min-width: 1200px) {
      .foot-add .logo {
        font-size: 2.6rem; } }
  .foot-add section {
    display: inline-block;
    margin-right: auto;
    margin-left: auto; }
    @media print, screen and (min-width: 1025px) {
      .foot-add section {
        text-align: left; } }
  .foot-add .corp {
    margin-bottom: 20px; }
    @media print, screen and (min-width: 1025px) {
      .foot-add .corp {
        margin-bottom: 27px; } }
  .foot-add .i-privacy {
    margin-bottom: 30px; }
    @media print, screen and (min-width: 1025px) {
      .foot-add .i-privacy {
        margin-bottom: 36px; } }
  @media print, screen and (min-width: 1025px) {
    .foot-add {
      width: 40%;
      padding: 30px 20px; } }

.foot-nav {
  padding: 30px 4%; }
  @media print, screen and (max-width: 768px) {
    .foot-nav .pc {
      display: none; } }
  @media print, screen and (min-width: 1025px) {
    .foot-nav {
      padding: 50px 20px; } }
  @media print, screen and (min-width: 769px) {
    .foot-nav ul {
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      align-items: center;
      height: 100%; } }
  .foot-nav li {
    color: #009999;
    margin: 0 1em 0.5em;
    position: relative;
    text-align: left; }
    @media print, screen and (max-width: 768px) {
      .foot-nav li {
        display: inline-block; } }
  .foot-nav ul ul {
    margin-top: 0.5em; }
  .foot-nav ul ul > li {
    padding-left: 1em; }
  .foot-nav ul.contact ul li {
    padding-left: 0; }
  .foot-nav a {
    color: #009999;
    text-decoration: none;
    font-size: 1.2rem; }
    .foot-nav a:hover {
      text-decoration: underline; }
    @media print, screen and (min-width: 1025px) {
      .foot-nav a {
        font-size: 1.4rem; } }
    .foot-nav a.lv1 {
      font-weight: 500;
      font-size: 1.4rem; }
      @media print, screen and (min-width: 1025px) {
        .foot-nav a.lv1 {
          font-size: 1.6rem; } }
    .foot-nav a.lv2 {
      font-size: 1.3rem; }
      @media print, screen and (min-width: 1025px) {
        .foot-nav a.lv2 {
          font-size: 1.5rem; } }
  @media print, screen and (max-width: 768px) {
    .foot-nav {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .foot-nav li {
        text-align: center; }
      .foot-nav > ul {
        width: 100%; } }
  @media print, screen and (min-width: 769px) {
    .foot-nav {
      -webkit-box-pack: center;
      justify-content: center;
      line-height: 1.4; }
      .foot-nav > ul {
        padding-right: 1.5em; }
        .foot-nav > ul:last-child {
          padding-right: 0; } }
  @media print, screen and (min-width: 1025px) {
    .foot-nav {
      width: 60%;
      margin: 0; } }

#footer small {
  font-size: 1.2rem; }
  @media print, screen and (min-width: 1025px) {
    #footer small {
      font-size: 1.4rem; } }

/* page top */
#page-top {
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  color: #fff;
  text-decoration: none;
  background-color: #009999;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 0; }
  #page-top:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border: 1px solid;
    border-color: #fff #fff transparent transparent;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -3px; }
  #page-top.show {
    opacity: 1; }

/* NAV */
#g-nav {
  color: #000;
  text-align: center; }
  @media print, screen and (min-width: 769px) {
    #g-nav {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%; }
      #g-nav #g-nav-list {
        height: 100%; } }
  @media print, screen and (max-width: 768px) {
    #g-nav {
      background: rgba(255, 255, 255, 0.8);
      padding: 0;
      position: fixed;
      z-index: 99;
      top: 60px;
      left: -120%;
      width: 100%;
      height: 100vh;
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -ms-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out;
      border-top: 1px solid #ccc; } }
  #g-nav ul {
    list-style: none;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center; }
    @media print, screen and (max-width: 768px) {
      #g-nav ul {
        background-color: #fff; } }
    @media print, screen and (min-width: 769px) {
      #g-nav ul {
        height: 100%; } }
    #g-nav ul li {
      position: relative; }
      @media print, screen and (min-width: 769px) {
        #g-nav ul li {
          margin-right: 2px; }
          #g-nav ul li li {
            margin-right: 0; } }
      #g-nav ul li a, #g-nav ul li span {
        display: block;
        text-decoration: none;
        color: #000;
        padding: 18px 25px;
        overflow: hidden;
        position: relative; }
        @media print, screen and (min-width: 769px) {
          #g-nav ul li a, #g-nav ul li span {
            height: 100%;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            align-items: center;
            font-size: 1.4rem;
            padding: 18px 20px; } }
        @media only screen and (min-width: 900px) {
          #g-nav ul li a, #g-nav ul li span {
            font-size: 1.6rem;
            padding: 18px 0;
            width: 130px; } }
        #g-nav ul li a:after, #g-nav ul li span:after {
          content: "";
          position: absolute;
          width: 100%;
          height: 3px;
          background-color: #009999;
          bottom: 0;
          right: -100%;
          -webkit-transition: 0.3s ease-out;
          -moz-transition: 0.3s ease-out;
          -ms-transition: 0.3s ease-out;
          -o-transition: 0.3s ease-out;
          transition: 0.3s ease-out; }
          @media print, screen and (min-width: 769px) {
            #g-nav ul li a:after, #g-nav ul li span:after {
              bottom: 18px; } }
        #g-nav ul li a:hover, #g-nav ul li span:hover {
          color: #009999; }
        #g-nav ul li a:hover:after, #g-nav ul li span:hover:after {
          right: 0; }
        @media print, screen and (max-width: 768px) {
          #g-nav ul li a, #g-nav ul li span {
            border-bottom: 1px solid #ccc; } }
      #g-nav ul li.current a, #g-nav ul li.current span {
        color: #009999; }
        #g-nav ul li.current a:after, #g-nav ul li.current span:after {
          right: 0; }
      #g-nav ul li.has-child::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 25px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        transform: rotate(135deg);
        z-index: 99; }
        @media print, screen and (min-width: 769px) {
          #g-nav ul li.has-child::before {
            display: none; } }
      #g-nav ul li.has-child.current span::after, #g-nav ul li.has-child.current2 span::after {
        right: 0; }
      #g-nav ul li.has-child ul {
        position: absolute;
        left: 0;
        top: 62px;
        z-index: 4;
        width: 180px;
        background: #28BFE7;
        visibility: hidden;
        opacity: 0;
        transition: all .3s; }
        @media print, screen and (min-width: 769px) {
          #g-nav ul li.has-child ul {
            height: auto; } }
        #g-nav ul li.has-child ul ul {
          top: 0;
          left: 180px;
          width: 330px;
          background: #66ADF5; }
          @media print, screen and (max-width: 768px) {
            #g-nav ul li.has-child ul ul {
              position: relative;
              left: 0;
              top: 0;
              width: 100%;
              visibility: visible;
              opacity: 1;
              display: none;
              transition: none; } }
          @media print, screen and (min-width: 769px) {
            #g-nav ul li.has-child ul ul {
              height: auto; }
              #g-nav ul li.has-child ul ul li {
                width: 100%; } }
        @media print, screen and (max-width: 768px) {
          #g-nav ul li.has-child ul {
            position: relative;
            left: 0;
            top: 0;
            width: 100%;
            visibility: visible;
            opacity: 1;
            display: none;
            transition: none; } }
        #g-nav ul li.has-child ul a, #g-nav ul li.has-child ul span {
          color: #fff;
          border-bottom: solid 1px rgba(255, 255, 255, 0.6);
          overflow: visible; }
          #g-nav ul li.has-child ul a:after, #g-nav ul li.has-child ul span:after {
            content: none; }
          #g-nav ul li.has-child ul a:hover, #g-nav ul li.has-child ul a:active, #g-nav ul li.has-child ul span:hover, #g-nav ul li.has-child ul span:active {
            background: #3577CA; }
          @media print, screen and (min-width: 769px) {
            #g-nav ul li.has-child ul a, #g-nav ul li.has-child ul span {
              height: auto;
              padding: 15px 10px;
              width: 100%;
              -webkit-box-pack: start;
              justify-content: flex-start;
              text-align: left;
              font-size: 1.3rem;
              white-space: nowrap; } }
        #g-nav ul li.has-child ul > li.current2 > a, #g-nav ul li.has-child ul > li.current2 > span {
          background: #3577CA; }
      #g-nav ul li.has-child:hover > ul, #g-nav ul li.has-child:active > ul {
        visibility: visible;
        opacity: 1; }
      #g-nav ul li.has-child > ul > li:last-child > a, #g-nav ul li.has-child > ul > li:last-child > span {
        border-bottom: none; }
      @media print, screen and (max-width: 768px) {
        #g-nav ul li.has-child.active::before {
          transform: rotate(-45deg); } }
      @media print, screen and (min-width: 1200px) {
        #g-nav ul li.v2 {
          margin-left: 20px; } }
      #g-nav ul li.v2 a {
        background-color: #009999;
        color: #fff;
        -webkit-transition: 0.3s ease-out;
        -moz-transition: 0.3s ease-out;
        -ms-transition: 0.3s ease-out;
        -o-transition: 0.3s ease-out;
        transition: 0.3s ease-out; }
        @media print, screen and (min-width: 769px) {
          #g-nav ul li.v2 a {
            width: 130px; } }
        @media only screen and (min-width: 900px) {
          #g-nav ul li.v2 a {
            width: 180px; } }
        #g-nav ul li.v2 a:hover {
          opacity: 0.8; }
        #g-nav ul li.v2 a .iconMail {
          margin-left: 10px;
          padding-bottom: 3px; }
          #g-nav ul li.v2 a .iconMail .mail {
            fill: #fff;
            vertical-align: middle; }
        #g-nav ul li.v2 a em {
          background-image: url("../img/common/i_mail.png");
          background-size: cover;
          width: 16px;
          height: 12px;
          display: inline-block;
          margin-left: 10px; }
    #g-nav ul ul {
      display: block; }
      #g-nav ul ul li a, #g-nav ul ul li span {
        padding: 15px 35px; }
      #g-nav ul ul li.has-child::before {
        content: '';
        position: absolute;
        top: 17px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg); }
        @media print, screen and (min-width: 769px) {
          #g-nav ul ul li.has-child::before {
            display: block;
            left: auto;
            right: 6px; } }
        @media print, screen and (max-width: 768px) {
          #g-nav ul ul li.has-child::before {
            transform: rotate(135deg);
            left: 20px; } }
    @media print, screen and (max-width: 768px) {
      #g-nav ul {
        display: block; } }
  @media print, screen and (max-width: 768px) {
    #g-nav.panelactive {
      left: 0; }
      #g-nav.panelactive #g-nav-list {
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 60px; } }

/* ハンバーガーメニューボタン */
@media print, screen and (max-width: 768px) {
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px; }
    .openbtn span {
      display: inline-block;
      -webkit-transition: 0.3s ease-out;
      -moz-transition: 0.3s ease-out;
      -ms-transition: 0.3s ease-out;
      -o-transition: 0.3s ease-out;
      transition: 0.3s ease-out;
      position: absolute;
      left: 15px;
      height: 3px;
      border-radius: 2px;
      background-color: #009999;
      width: 30px; }
      .openbtn span:nth-of-type(1) {
        top: 20px; }
      .openbtn span:nth-of-type(2) {
        top: 28px; }
      .openbtn span:nth-of-type(3) {
        top: 36px; }
    .openbtn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%; }
    .openbtn.active span:nth-of-type(2) {
      opacity: 0; }
    .openbtn.active span:nth-of-type(3) {
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%; } }
/* Layout                                           
/* --------------------------------------------------- */
/* common */
.flex {
  display: -webkit-flex;
  display: flex; }

.flex-vm {
  -webkit-box-align: center;
  align-items: center; }

@media print, screen and (min-width: 769px) {
  .flexTxtImg {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between; } }
.flexTxtImg .txt {
  margin-bottom: 2em; }
  @media print, screen and (min-width: 769px) {
    .flexTxtImg .txt {
      margin-bottom: 0;
      -webkit-box-flex: 1;
      flex: 1; } }
.flexTxtImg figure {
  text-align: center; }
  @media print, screen and (min-width: 769px) {
    .flexTxtImg figure {
      margin-left: 2em; } }

.flexSet1 {
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap; }
  .flexSet1 * {
    margin-right: 1em; }

/* HOME */
.key-img {
  padding-top: 60px; }
  @media print, screen and (min-width: 769px) {
    .key-img {
      padding-top: 80px; } }
  .key-img img {
    width: 100%; }

@media print, screen and (min-width: 1025px) {
  .top-scl {
    display: -webkit-flex;
    display: flex; } }
.top-scl a {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  text-decoration: none; }
  @media print, screen and (max-width: 768px) {
    .top-scl a {
      width: 100%;
      height: 200px; } }
  @media print, screen and (min-width: 1025px) {
    .top-scl a {
      width: 50%;
      height: 265px; } }
  .top-scl a em {
    display: block;
    font-size: 1.8rem; }
  .top-scl a:first-child {
    background: url("../img/top/advantages_bg.jpg") no-repeat;
    background-size: cover; }
    @media print, screen and (max-width: 768px) {
      .top-scl a:first-child {
        border-bottom: 1px solid #fff; } }
    @media print, screen and (min-width: 1025px) {
      .top-scl a:first-child {
        border-right: 1px solid #fff; } }
  .top-scl a:last-child {
    background: url("../img/top/recruit_bg.jpg") no-repeat;
    background-size: cover; }
    @media print, screen and (max-width: 768px) {
      .top-scl a:last-child {
        border-top: 1px solid #fff; } }
    @media print, screen and (min-width: 1025px) {
      .top-scl a:last-child {
        border-left: 1px solid #fff; } }
  .top-scl a::after {
    position: absolute;
    top: 50%;
    right: 4%;
    margin: auto;
    margin-top: -20px;
    content: "";
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }
    @media print, screen and (min-width: 1025px) {
      .top-scl a::after {
        right: 30px;
        margin-top: -24px;
        width: 48px;
        height: 48px; } }

.topOurValues {
  position: relative; }
  .topOurValues .txt {
    background: #fff;
    text-align: left;
    margin: -20px 30% 0 0;
    position: relative;
    padding: 1.5em 1em 1em; }
    @media print, screen and (max-width: 375px) {
      .topOurValues .txt {
        margin: -10px 10% 0 0; } }
    @media only screen and (min-width: 980px) {
      .topOurValues .txt {
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 65px 45px;
        max-width: 415px; } }
  .topOurValues h3 {
    font-size: 2.4rem;
    margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2)); }
    @media only screen and (min-width: 980px) {
      .topOurValues h3 {
        font-size: 3rem; } }
    @media print, screen and (max-width: 375px) {
      .topOurValues h3 {
        font-size: 2rem; } }
  .topOurValues p {
    margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2)); }
  .topOurValues .btn01 {
    height: 50px; }
    @media only screen and (min-width: 980px) {
      .topOurValues .btn01 {
        height: 60px; } }
    @media print, screen and (max-width: 375px) {
      .topOurValues .btn01 {
        height: 40px; } }
  .topOurValues figure {
    width: 90%;
    margin: 0 0 0 10%; }
    @media print, screen and (max-width: 375px) {
      .topOurValues figure {
        width: 100%;
        margin: 0; } }
    @media only screen and (min-width: 980px) {
      .topOurValues figure {
        width: 70%;
        margin: 0 0 0 30%; } }

.pickUpContents {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap; }
  .pickUpContents > a {
    width: 48%;
    text-decoration: none;
    display: block;
    color: #000; }
    @media print, screen and (max-width: 375px) {
      .pickUpContents > a {
        width: 100%; } }
    @media print, screen and (min-width: 769px) {
      .pickUpContents > a {
        width: 31.03448275862069%; } }
    @media print, screen and (max-width: 768px) {
      .pickUpContents > a:nth-child(-n+2) {
        margin-bottom: 20px; } }
    .pickUpContents > a:hover img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
  .pickUpContents figure {
    margin-bottom: 20px;
    overflow: hidden; }
  .pickUpContents h3 {
    font-size: 1.6rem;
    margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2)); }
    @media print, screen and (min-width: 769px) {
      .pickUpContents h3 {
        font-size: 1.8rem; } }
  .pickUpContents p {
    margin-bottom: 1em; }

.topContactUs {
  padding: 30px 4%;
  margin-top: 0 !important;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .topContactUs.lazyloaded {
    background: url("../img/top/contactus_bg.jpg") no-repeat center center;
    background-size: 768px; }
  @media print, screen and (min-width: 769px) {
    .topContactUs {
      padding: 50px 4%; }
      .topContactUs.lazyloaded {
        background-size: 100%; } }
  .topContactUs > span {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 2.5em 4%;
    background: #fff;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out; }
  .topContactUs h3 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2)); }
    @media print, screen and (min-width: 769px) {
      .topContactUs h3 {
        font-size: 1.8rem; } }
  .topContactUs h4 {
    color: #009999;
    font-size: 2.4rem;
    font-family: 'Bebas Neue', cursive;
    margin-top: 1em;
    margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2)); }
    @media print, screen and (min-width: 769px) {
      .topContactUs h4 {
        font-size: 3rem; } }
    .topContactUs h4 em {
      font-size: 160%;
      margin-left: 5px; }
  .topContactUs .fsS {
    color: #666; }

.topNews dl {
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding: 1em;
  margin: 0; }
  .topNews dl:first-child {
    border-top: 1px solid #ccc; }
  .topNews dl:nth-child(odd) {
    background: #f5f7f8; }
.topNews dt {
  font-weight: 500; }
  @media print, screen and (min-width: 769px) {
    .topNews dt {
      float: left; } }
@media print, screen and (min-width: 769px) {
  .topNews dd {
    padding-left: 10em; } }

.topAccess {
  background: #f5f7f8;
  overflow: hidden; }
  @media print, screen and (min-width: 769px) {
    .topAccess {
      display: -webkit-flex;
      display: flex; } }
  @media print, screen and (min-width: 769px) {
    .topAccess > div {
      width: 50%; } }
  .topAccess iframe {
    width: 100%; }
  .topAccess .txt {
    padding: 1em;
    text-align: center; }
    @media print, screen and (max-width: 768px) {
      .topAccess .txt {
        padding: 3em 4%; }
        .topAccess .txt a {
          margin: 0 auto; } }
    @media print, screen and (min-width: 769px) {
      .topAccess .txt {
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
  .topAccess h3 {
    margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2)); }
  .topAccess p {
    margin-bottom: calc(2em - (((1em * 1.6) - 1em) / 2)); }
  .topAccess dl {
    margin: 0 auto;
    text-align: left; }
    .topAccess dl::before {
      display: none; }

.topBlock1 {
  max-width: 1020px;
  margin: 0 0 120px;
  overflow: hidden;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg); }
  @media print, screen and (max-width: 768px) {
    .topBlock1 {
      margin: 0 -4% 80px; } }
  .topBlock1 .inner {
    padding: 10px 0 380px;
    margin-bottom: -10%;
    background: url("../img/top/img_01.jpg") no-repeat center bottom;
    -webkit-transform: skewY(10deg);
    transform: skewY(10deg);
    text-align: center; }
    @media print, screen and (max-width: 768px) {
      .topBlock1 .inner {
        background-size: 700px; } }
    @media print, screen and (max-width: 375px) {
      .topBlock1 .inner {
        padding: 10px 0 280px;
        background-size: 500px; } }
    @media print, screen and (min-width: 769px) {
      .topBlock1 .inner {
        padding: 10px 0 530px;
        margin-bottom: -100px; } }
  .topBlock1.company {
    margin: 80px 0 0; }
    @media print, screen and (max-width: 768px) {
      .topBlock1.company {
        margin: 80px -4% 0; } }
    @media print, screen and (min-width: 769px) {
      .topBlock1.company {
        margin: 120px 0 0; } }
    .topBlock1.company .inner {
      margin: -60px 0 0;
      padding: 380px 0 30px; }
      .topBlock1.company .inner.lazyloaded {
        background: url("../img/top/img_02.jpg") no-repeat center top; }
      @media print, screen and (max-width: 768px) {
        .topBlock1.company .inner {
          background-size: 700px; } }
      @media print, screen and (max-width: 375px) {
        .topBlock1.company .inner {
          background-size: 500px;
          padding: 280px 0 30px; } }
      @media print, screen and (min-width: 769px) {
        .topBlock1.company .inner {
          margin: -100px 0 0;
          padding: 580px 0 50px; } }

.noneBlur {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.newsBox {
  text-align: center;
  padding: 0 4%; }
  .newsBox dl {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
    max-width: 700px; }
  .newsBox dt {
    color: #009999; }
    @media print, screen and (min-width: 769px) {
      .newsBox dt {
        float: left; } }
  .newsBox dl.v2 dt {
    position: relative; }
    @media print, screen and (min-width: 769px) {
      .newsBox dl.v2 dt {
        width: 8em; } }
    .newsBox dl.v2 dt::after {
      content: "："; }
      @media print, screen and (min-width: 769px) {
        .newsBox dl.v2 dt::after {
          position: absolute;
          right: 0; } }
  .newsBox dd {
    margin-bottom: 0.5em; }
    @media print, screen and (min-width: 769px) {
      .newsBox dd {
        padding-left: 9em; } }

.topBlock2 {
  padding: 0 4%; }
  @media print, screen and (min-width: 769px) {
    .topBlock2 {
      padding: 0 100px; } }
  .topBlock2 p {
    text-align: justify;
    /* ie */
    text-justify: inter-ideograph; }

/* Parts                                         
/* --------------------------------------------------- */
/* タイトル */
.h01Wrap {
  font-size: 0;
  text-align: center; }

.h01 {
  padding: 0 0.9em 0.5em;
  color: #009999;
  position: relative;
  font-size: 2.2rem;
  display: inline-block;
  margin: 0 auto 1.25em; }
  @media print, screen and (min-width: 769px) {
    .h01 {
      font-size: calc(2.2rem + (4 - 2.2 ) * ( 100vw - 76.8rem ) / (102 - 76.8 ));
      letter-spacing: 0.2em; } }
  @media print, screen and (min-width: 1025px) {
    .h01 {
      font-size: 4rem; } }
  .h01::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: linear-gradient(to right, #009999, #009999 5px, transparent 5px, transparent 13px);
    /* 幅2の線を作る */
    background-size: 13px 5px;
    /* グラデーションの幅・高さを指定 */
    background-position: left bottom;
    /* 背景の開始位置を指定 */
    background-repeat: repeat-x;
    /* 横向きにのみ繰り返す */ }
  .h01.fcw {
    color: #fff; }
    .h01.fcw::after {
      background-image: linear-gradient(to right, #fff, #fff 5px, transparent 5px, transparent 13px);
      /* 幅2の線を作る */
      background-size: 13px 5px;
      /* グラデーションの幅・高さを指定 */
      background-position: left bottom;
      /* 背景の開始位置を指定 */
      background-repeat: repeat-x;
      /* 横向きにのみ繰り返す */ }

.read1 {
  font-size: 1.6rem;
  line-height: 2.4; }
  @media print, screen and (min-width: 769px) {
    .read1 {
      font-size: 2rem; } }

.ul01 li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.6rem; }
  @media print, screen and (min-width: 769px) {
    .ul01 li {
      font-size: 2rem; } }
  .ul01 li + li {
    margin-top: 1em; }

/* Other */
.mt1 {
  margin-top: 1em !important; }

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

.mt3 {
  margin-top: 3em !important; }

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

.mb05 {
  margin-bottom: 0.5em !important; }

.mb10 {
  margin-bottom: 1em !important; }

.mb15 {
  margin-bottom: 1.5em !important; }

.mb20 {
  margin-bottom: 2em !important; }

.mb30 {
  margin-bottom: 3em !important; }

.mb40 {
  margin-bottom: 4em !important; }

.mb50 {
  margin-bottom: 5em !important; }

.ml1 {
  margin-left: 1em !important; }

.ml2 {
  margin-left: 2em !important; }

.ml3 {
  margin-left: 3em !important; }

.mr1 {
  margin-right: 1em !important; }

.mr2 {
  margin-right: 2em !important; }

.mr3 {
  margin-right: 3em !important; }

.pl1 {
  padding-left: 1em !important; }

.pl2 {
  padding-left: 2em !important; }

.pl3 {
  padding-left: 3em !important; }

.pr1 {
  padding-right: 1em !important; }

.pr2 {
  padding-right: 2em !important; }

.pr3 {
  padding-right: 3em !important; }

.font-bold {
  font-weight: 500 !important; }

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

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

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

.fsS {
  font-size: 80% !important; }

.main-contents .mb05f {
  margin-bottom: calc(0.5em - (((1em * 1.6) - 1em) / 2)); }

.main-contents .mb10f {
  margin-bottom: calc(1em - (((1em * 1.6) - 1em) / 2)); }

.main-contents .mb15f {
  margin-bottom: calc(1.5em - (((1em * 1.6) - 1em) / 2)); }

.main-contents .mb20f {
  margin-bottom: calc(2em - (((1em * 1.6) - 1em) / 2)); }

.main-contents .mb30f {
  margin-bottom: calc(3em - (((1em * 1.6) - 1em) / 2)); }

.exLink {
  margin: 0 10px; }
  .exLink .exl {
    fill: #fff;
    vertical-align: middle; }
  .exLink.mini .exl {
    width: 12px;
    height: 12px; }

i.pdf {
  background: url("../img/common/icon_pdf.png") no-repeat;
  background-size: 14px 18px;
  display: inline-block;
  width: 14px;
  height: 18px;
  margin: 0 10px; }

.btn01, .btn01:active, .btn01:visited {
  color: #fff;
  background: #c31820;
  border: 1px solid #c31820;
  max-width: 360px;
  height: 50px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  border-radius: 3px;
  padding: 0.5em 1em;
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center; }
  @media print, screen and (min-width: 769px) {
    .btn01, .btn01:active, .btn01:visited {
      font-size: 1.6rem; } }
  .btn01::after, .btn01:active::after, .btn01:visited::after {
    content: "";
    margin-left: 5px;
    width: 4px;
    height: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff; }
  .btn01:hover, .btn01:active:hover, .btn01:visited:hover {
    /*background: #fff;
    color: $btnColor;*/
    opacity: 0.7; }
  .btn01:hover::after, .btn01:active:hover::after, .btn01:visited:hover::after {
    /*border-top: 2px solid $btnColor;
    border-right: 2px solid $btnColor;*/ }
  .medicaldeviceGroup .btn01, .medicaldeviceGroup .btn01:active, .medicaldeviceGroup .btn01:visited {
    background: #184fc3;
    border: 1px solid #184fc3; }
    .medicaldeviceGroup .btn01:hover, .medicaldeviceGroup .btn01:active:hover, .medicaldeviceGroup .btn01:visited:hover {
      /*background: #fff;
      color: $colorKey3;*/
      opacity: 0.7; }
    .medicaldeviceGroup .btn01:hover::after, .medicaldeviceGroup .btn01:active:hover::after, .medicaldeviceGroup .btn01:visited:hover::after {
      /*border-top: 2px solid $colorKey3;
      border-right: 2px solid $colorKey3;*/ }

.btn02, .btn02:active, .btn02:visited {
  color: #fff;
  background: #184fc3;
  border: 1px solid #184fc3;
  max-width: 420px;
  height: 50px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  border-radius: 3px;
  padding: 0.5em 1em;
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 0; }
  @media print, screen and (min-width: 769px) {
    .btn02, .btn02:active, .btn02:visited {
      font-size: 1.6rem; } }
  .btn02::after, .btn02:active::after, .btn02:visited::after {
    content: "";
    margin-left: 5px;
    width: 4px;
    height: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff; }
  .btn02:hover, .btn02:active:hover, .btn02:visited:hover {
    /*background: #fff;
    color: $btnColor;*/
    opacity: 0.7; }
  .btn02:hover::after, .btn02:active:hover::after, .btn02:visited:hover::after {
    /*border-top: 2px solid $btnColor;
    border-right: 2px solid $btnColor;*/ }
  .medicaldeviceGroup .btn02, .medicaldeviceGroup .btn02:active, .medicaldeviceGroup .btn02:visited {
    background: #184fc3;
    border: 1px solid #184fc3; }
    .medicaldeviceGroup .btn02:hover, .medicaldeviceGroup .btn02:active:hover, .medicaldeviceGroup .btn02:visited:hover {
      /*background: #fff;
      color: $colorKey3;*/
      opacity: 0.7; }
    .medicaldeviceGroup .btn02:hover::after, .medicaldeviceGroup .btn02:active:hover::after, .medicaldeviceGroup .btn02:visited:hover::after {
      /*border-top: 2px solid $colorKey3;
      border-right: 2px solid $colorKey3;*/ }

.btn01 .example, .btn02 .example {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  align-items: center; }

@media print, screen and (max-width: 768px) {
  .btn01 .exl, .btn02 .exl {
    -webkit-transform: scale(0.8);
    transform: scale(0.8); } }

.listMarkerCircle li {
  position: relative;
  padding-left: 1em; }
  .listMarkerCircle li:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 0.5em;
    left: 0;
    left: 5px; }
    @media print, screen and (min-width: 769px) {
      .listMarkerCircle li:after {
        top: 0.6em; } }
.listMarkerCircle li + li {
  margin-top: 0; }

.listMarkerSquare li {
  position: relative;
  padding-left: 1em; }
  .listMarkerSquare li:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #000;
    position: absolute;
    top: 0.4em;
    left: 0;
    left: 5px; }
.listMarkerSquare li + li {
  margin-top: 0; }

.listMarkerArrow li:after {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border-top: 2px solid #0099ff;
  border-right: 2px solid #0099ff; }
.listMarkerArrow li + li {
  margin-top: 0.5em; }

.olNum {
  counter-reset: item;
  padding-left: 0; }
  .olNum dt {
    float: left;
    padding-left: 1em; }
    .olNum dt::before {
      counter-increment: item;
      content: counter(item) ""; }
  .olNum dd {
    padding-left: 3em; }

/* table */
.table01 {
  width: 100%;
  border-collapse: separate;
  border-top: 2px solid #dddddd; }
  .table01 caption {
    padding: 0.8em 1em;
    text-align: left;
    border-top: 2px solid #dddddd; }
  .table01 th, .table01 td {
    vertical-align: top;
    text-align: left;
    padding: 0.8em 1em; }
    @media print, screen and (max-width: 768px) {
      .table01 th, .table01 td {
        display: block; } }
    @media print, screen and (min-width: 769px) {
      .table01 th, .table01 td {
        border-bottom: 2px solid #dddddd; } }
  .table01 th {
    background: #f5f7f8;
    font-weight: 400; }
    @media print, screen and (min-width: 769px) {
      .table01 th {
        width: 120px; } }
  @media print, screen and (min-width: 769px) {
    .table01 td {
      border-bottom: 2px solid #dddddd; } }

/* iframe */
.iframe {
  text-align: center; }
  @media print, screen and (max-width: 768px) {
    .iframe {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden; } }

@media print, screen and (max-width: 768px) {
  .iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; } }

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

  .sp-display {
    display: block; } }
@media only screen and (min-width: 769px) {
  .pc-display {
    display: block; }

  .sp-display {
    display: none; } }
/* clearfix */
.interview-content .layout:after,
.inner section:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
  font-size: 0; }
