@charset "utf-8";
/*=======================================================
==========================================================
　　　　　　　　　　　　　共通コード
==========================================================
========================================================*/
/* ----------------------------------------
　   リセット
------------------------------------------ */
body {
  font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  a, sans-serif;
  font-size: 1.5rem;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, picture {
  margin: 0;
  padding: 0;
  border: 0;
  /*font: inherit;*/
  vertical-align: baseline;
  line-height: 1.5em;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header, footer, nav, menu, article, aside, section, details, figcaption, figure {
  display: block;
}

ul, ol {
  list-style: none;
}

table {
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
}

strong {
  font-weight: normal;
}

i {
  font-style: normal;
}

a {
  text-decoration: none;
  color: #000000;
}

a:active {
  color: #000000;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  filter: alpha(opacity=80);
  -moz-opacity: 0.80;
  opacity: 0.80;
}

a, a:hover, a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

.bold {
  font-weight: bold;
}

.relative {
  position: relative;
}

.float-left {
  float: left;
}

.clear {
  clear: both;
}
.DivLink{
    position:relative;
}
.DivLink .Link{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}
video{
    width: 100%;
    margin:3% 0;
}


@font-face {
font-family: 'kanjyasama';
src: url('../font/ZenKurenaido-Regular.ttf') format('truetype');
}

section.kanjyasama {
    padding: 10em 0 3em;
}
/* スライドレールの枠 */
.wrap-media2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding: 1.5em 0 1em;
}
/* content4つをまとめたスライドブロック */
.slideshow2 {
  display: flex;
  -webkit-animation: loop-slide2 70s infinite linear 1s both;
  animation: loop-slide2 70s infinite linear 1s both;
  margin: 1em 0;
  align-items: flex-start;
}

@-webkit-keyframes loop-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ホバー時に動きを止める（パターン2・3）*/
.slide-paused2:hover .slideshow2 {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.content-media2{
  width: 480px;
  position: relative;
  background-image: url(../img/kanjyasama-back.png);
  padding: 1em 2em;
  margin: 0 2.7em;
  font-size: 17px;
  transition: .3s;
  box-shadow: 5px 5px 15px #E0DDD5;
}

.content-media2::before{
  content:"";
  position:absolute;
  top: -30px;
  left: -20px;
  width:60px;
  height:60px;
  background-image: url(../img/kanjyasama-img.png);
  background-size: cover;
}
.content-media2 p{
  font-family: 'kanjyasama';
  background-image: linear-gradient(180deg, #ccc 1px, transparent 1px);
  background-size: 100% 2em;
  line-height: 2em;
  padding: 0 0 01px;
  font-size: inherit;
}

.kanjyasama-title{
  width:fit-content;
}
.kanjyasan-box{
  padding: 2em 0 1em;
  margin: 3em 0 0;
  border-top: 14px dotted #CEEEF4;
  border-bottom: 14px dotted #CEEEF4;
}









/*=======================================================
==========================================================
　　　　　　　　　　　　　共通end
==========================================================
========================================================*/


/*=======================================================
==========================================================
　　　　　　　　　　　　　PC start
==========================================================
========================================================*/

@media screen and (min-width:999px) {

  html {
    font-size: 62.5%;
  }
  .inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }
  .main-visual {
    position: relative;
  }
  .main-logo {
    position: absolute;
    top: 2em;
    left: 2em;
    width: 30%;
    max-width: 400px;
  }
  /*スライドショー*/
  .none-scroll {
    overflow-x: hidden;
  }
  .myChangeImage {
    position: relative;
    width: 100%;
    padding-top: 44%;
  }
  .myChangeImage img {
    position: absolute;
    top: 0;
    left: 0;
    animation: ChangeImage 10s infinite;
    opacity: 0;
  }
  @keyframes ChangeImage {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    33% {
      opacity: 1;
    }
    63% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  .myChangeImage img:nth-of-type(1) {
    animation-delay: 0s;
  }
  .myChangeImage img:nth-of-type(2) {
    animation-delay: 3.5s;
  }
  .myChangeImage img:nth-of-type(3) {
    animation-delay: 7s;
  }
  /*ヘッダー*/
  .gnavi__wrap {
      max-width: 1200px;
      padding: 0 20px;
      position: relative;
      z-index: 100;
      margin: 50px auto;
  }
  .gnavi__lists {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .gnavi__list {
    width: 19%;
    height: 48px;
    background-color: #fff;
    position: relative;
    transition: all .3s;
    border-left: 1px solid #bae2eb;
  }
  .top-gnavi .gnavi__list {
    width: 22%;
    height: 48px;
    background-color: #fff;
    position: relative;
    transition: all .3s;
    border-left: 1px solid #bae2eb;
  }
  .gnavi__list:last-child{
    border-right: 1px solid #bae2eb;
  }
  .gnavi__list:hover {
    background-color: #fff;
    opacity: 1;
  }
  .gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    color: #000;
  }
  .gnavi__list:hover::before {
    background-color: #fff;
  }
  .gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
    padding: 1.6em 0 1.9em;
  }
  .gnavi__list:hover a {
    color: #000;
  }
  .gnavi_bottom:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 6px solid #1373c0;
  }
  /*ヘッダー　ドロップダウン*/
  .dropdown__lists {
    display: none;
    /*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
  }
  .gnavi__list:hover .dropdown__lists {
    display: block;
    /*Gナビメニューにホバーしたら表示*/
  }
  .dropdown__list {
    background-color: #eaf2f9;
    position: relative;
    text-align: left;
    padding: 1em 1em 1em 0;
  }
  .dropdown__list:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .dropdown__list:hover {
    background-color: #fff;
  }
  .dropdown__list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000;
    text-decoration: none;
    padding: 0 1em 0;
    font-size: 1.3rem;
  }
  .dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #1373c0;
    border-left: 2px solid #1373c0;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
  }
  .dropdown__lists {
    visibility: hidden;
    /*デフォルトでは非表示の状態にしておく*/
    opacity: 0;
    /*不透明度0*/
    transition: all .3s;
    /*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
  }
  .gnavi__list:hover .dropdown__lists {
    visibility: visible;
    /*Gナビメニューにホバーしたら表示*/
    opacity: 1;
    /*不透明度1*/
  }
  .list-home {
    width: 30px;
    margin: 0 auto;
  }
  /*MESSAGE*/
  .message-box {
    position: relative;
    width: 100%;
    background-color: #1fadcc;
    margin: 0;
    padding: 187px 0 80px;
    overflow: hidden;
    min-height: 1000px;
  }
  .message-box-inner {
    margin: -30px auto 0;
  }
  .message-img {
    width: 80%;
    margin: 0 auto;
    position: relative;
    bottom: -70px;
  }
  .message-left {
    position: relative;
    width: 40%;
    float: left;
  }
  .message-left img:nth-child(1) {
    position: absolute;
    top: 25px;
    right: 0;
    width: 95%;
    margin: 0 0;
  }
  .message-left img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    margin: 0 0;
  }
  .message-subimg {
    position: absolute;
    right: 0;
    top: 636px;
    margin: auto;
    width: 131px;
    height: 122px;
  }
  .message-right {
    position: relative;
    width: 60%;
    padding: 0 0 0 3em;
    float: right;
  }
  .message-right p {
    color: #fff;
    line-height: 1.7em;
    font-size: 1.5rem;
  }
  .message-right h3 {
    color: #fff;
    font-size: 4.5rem;
    margin: 0 0 .5em;
  }
  .message-right h3 .marker {
    background: webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #198aa3));
    background: linear-gradient(transparent 70%, #198aa3 70%);
  }
  .message-titlebox {
    position: relative;
    z-index: 1;
  }
  /*当院で働く魅力*/
  .section-2 {
    margin: 100px auto 50px;
  }
  .section-2 h3 {
    font-size: 2.7rem;
    text-align: center;
    letter-spacing: .1em;
  }
  .section2-1, .section2-2, .section2-3, .section2-4 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .section2-1 h3, .section2-2 h3, .section2-3 h3, .section2-4 h3 {
    font-size: 4.0rem;
    font-weight: normal;
    line-height: 1.7em;
    letter-spacing: .1em;
  }
  .section2-1 h3 span, .section2-2 h3 span, .section2-3 h3 span, .section2-4 h3 span {
    background: linear-gradient(transparent 70%, #d7edf4 70%);
  }
  .section2-1 p, .section2-2 p, .section2-3 p, .section2-4 p {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2em;
    padding: 4% 0 0;
  }
  .section2-1-left {
    width: 45%;
    position: relative;
  }
  .section2-1-left img:nth-child(1) {
    width: 95%;
  }
  .section2-1-left img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-1-right {
    width: 50%;
    padding: 5% 0 0;
    position: relative;
  }
  .section2-1-right::before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg01.png") no-repeat center/contain;
  }
  .section2-2-left {
    width: 50%;
    padding: 8% 0 0 40px;
    position: relative;
  }
  .section2-2-right {
    width: 45%;
    position: relative;
  }
  .section2-2-right img:nth-child(1) {
    width: 95%;
  }
  .section2-2-right img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-2-left::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -50px;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg02.png") no-repeat center/contain;
    z-index: -1;
  }
  .section2-3-left {
    width: 45%;
    position: relative;
  }
  .section2-3-left img:nth-child(1) {
    width: 95%;
  }
  .section2-3-left img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-3-right {
    width: 50%;
    padding: 7% 0 0;
    position: relative;
  }
  .section2-3-right::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg03.png") no-repeat center/contain;
    z-index: -1;
  }
  .section2-4-left {
    width: 50%;
    padding: 1% 0 0 40px;
    position: relative;
  }
  .section2-4-right {
    width: 45%;
    position: relative;
  }
  .section2-4-right img:nth-child(1) {
    width: 95%;
  }
  .section2-4-right img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-4-left::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -80px;
    width: 200px;
    height: 190px;
    background: url("../img/rec02_bg04.png") no-repeat center/contain;
    z-index: -1;
  }
  .section2-4-imgbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1em 0 0;
  }
  .section2-4-imgbox img {
    width: 32%;
    padding: 1em;
  }
  /*職種紹介*/
  .tab-wrap {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
  }
  .tab-label {
    color: #1373c0;
    background: #fff;
    border: 1px solid #1373c0;
    font-size: 2rem;
    letter-spacing: .1em;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 1em 0;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    flex: 1;
  }
  .tab-label:not(:last-of-type) {
    margin-right: 20px;
  }
  .tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
  .tab-switch:checked+.tab-label {
    background: #325A8C;
  }
  .tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 50px 0;
    opacity: 1;
    transition: .5s opacity;
  }
  .tab-switch {
    display: none;
  }
  .tab-switch:checked+.tab-label:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #1373c0;
    border-width: 14px;
    margin-left: -14px;
  }
  .tab-switch:checked+.tab-label {
    background: #1373c0;
    position: relative;
    color: #fff;
  }
  .section3 {
    background-image: url("../img/rec03_bg.jpg");
    background-size: 120% auto;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 100px 0 0;
  }
  .section3-title {
    width: 90%;
    margin: 6px auto 51px;
  }
  .section3 h3 {
    font-size: 2.7rem;
    text-align: center;
    letter-spacing: .1em;
    color: #fff;
  }
  .section3-1 {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px 8px 0 0;
    background-image: url(../img/rec03_slide01.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .section3-1b {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px 8px 0 0;
    background-image: url(../img/rec03_slide02.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .section3-1c {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px 8px 0 0;
    background-image: url(../img/rec03_slide03.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .section3-1-name {
    position: absolute;
    left: 60px;
    bottom: 40px;
    width: 250px;
    padding: 1em;
    border-bottom: 5px solid #1fadcc;
    background-color: #fff;
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .1em;
  }
  .section3-1-2 {
    width: 100%;
    background-color: #1373c0;
    padding: 50px;
    border-radius: 0 0 8px 8px;
  }
  .section3-1-2 p {
    color: #fff;
    font-weight: 500;
    margin: 0 0 50px;
    font-size: 1.6rem;
    line-height: 1.8em;
  }
  /* 001 */
  .button001 a {
    background: #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    max-width: 280px;
    padding: 10px 25px;
    color: #1373c0;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 1.5rem;
    border: 1px solid #fff;
  }
  .button001 a:hover {
    border: 1px solid #fff;
    background-color: #1373c0;
    color: #fff;
  }
  .button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #1373c0;
    border-right: 3px solid #1373c0;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
  }
  .button001 a:hover:after {
    border-color: #FFF;
  }
  /*職種紹介 section4*/
  .section4 {
    background-image: url("../img/rec04_bg.jpg");
    background-size: 140% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 100px 0 100px;
    min-height: 900px;
  }
  .non-noshu {
    font-size: 2rem;
    font-weight: bold;
    color: #1fadcc;
    text-align: center;
    margin: 0.5em 0 1.5em;
  }
  /*タブ切り替え全体のスタイル*/
  .tabs {
    margin-top: 50px;
    width: 100%;
    margin: 0 auto;
  }
  /*タブのスタイル*/
  .tab_item {
    width: calc(95%/3);
    background-color: #bbb;
    line-height: 50px;
    font-size: 2.3rem;
    text-align: center;
    color: #fff;
    display: block;
    float: left;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 20px 20px 0 0;
    padding: 0.5em;
  }
  .tab_item {
    margin: 0 calc(5%/2) 0 0;
  }
  .tab_item2 {
    margin: 0 0 0 0!important;
  }
  .tab_item:hover {
    opacity: 0.75;
  }
  /*ラジオボタンを全て消す*/
  input[name="tab_item"] {
    display: none;
  }
  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 3rem 7rem 7rem;
    clear: both;
    overflow: hidden;
    border: 1px solid #1fadcc;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
  }
  /*選択されているタブのコンテンツのみを表示*/
  #all:checked~#all_content, #programming:checked~#programming_content, #design:checked~#design_content {
    display: block;
  }
  /*選択されているタブのスタイルを変える*/
  .tabs input:checked+.tab_item {
    background-color: #1fadcc;
    color: #fff;
  }
  .section4-table {
    border-collapse: separate;
    border-spacing: 0;
    border-right: 1px solid #1fadcc;
    border-bottom: 1px solid #1fadcc;
    background-color: #fff;
    margin-bottom: 30px;
  }
  .section4-table th, .section4-table td {
    padding: 1.5em 2em;
    text-align: left;
    vertical-align: middle;
  }
  .section4-table th {
    border-top: 1px solid #1fadcc;
    border-left: 1px solid #1fadcc;
    font-size: 1.8rem;
    font-weight: normal;
    min-width: 200px;
  }
  .section4-table td {
    border-top: 1px solid #1fadcc;
    border-left: 1px solid #1fadcc;
    line-height: 1.8em;
  }

  .section4-table-table {
    border-collapse: separate;
    border-spacing: 0;
  }
  .section4-table-table th, .section4-table-table td {
    border: 0px!important;
    line-height: 1.8em;
  }
  .section4-table-table th {
    text-align: left;
    font-size: 1.5rem;
    font-weight: normal;
    padding: 0;
    width: 17%;
    vertical-align: top;
  }
  .section4-table-table td {
    position: relative;
    text-align: left;
    padding: 0;
    vertical-align: top;
  }
  .section4-table-table td::before {
    content: ":";
    position: absolute;
    top: 0;
    left: -10px;
  }
  .section5 {
    width: 100%;
    padding: 80px 0 120px;
    background-position: center;
    background-size: 95% cover;
    background-image: url("../img/rec05-1.png");
  }
  .section5 img {
    width: 80%;
    margin: 0 auto;
  }
  .section5 a {
    position: relative;
    width: 60%;
    display: block;
    background-color: #1373c0;
    padding: .7em 0;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 3.5rem;
    letter-spacing: .1em;
    border-radius: 70px;
  }
  .section5 a:after {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    width: 30px;
    height: 22px;
    background: url(../img/btn_arrow.png) no-repeat center/contain;
  }
  .section5 a::before {
    position: absolute;
    top: 50%;
    left: 29%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    width: 40px;
    height: 32px;
    background: url(../img/rec05_icon_web.png) no-repeat center/contain;
  }
  .back-blue {
    background-color: #d7edf4;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  /* スライドする要素 */
  .sulide-content {
    width: 250px;
    padding: 0 1em;
  }
  /* スライドレールの枠 */
  .slide-wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 210px;
  }
  /* content4つをまとめたスライドブロック */
  .slideshow {
    display: flex;
    -webkit-animation: loop-slide 20s infinite linear 1s both;
    animation: loop-slide 20s infinite linear 1s both;
  }
  @-webkit-keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  /*スタッフ ブログ*/
  .section6 {
    padding: 100px 0 70px;
  }
  .news-img1 {
    margin: 1em 0;
    padding: 0 0 5em;
    border-bottom: 1px solid #abb8c3;
  }
  .news-btn-ab {
    position: absolute;
    top: 30%;
    right: 5%;
  }
  .news-btn {
    position: relative;
    width: 250px;
    display: block;
    background-color: #1373c0;
    padding: 1em 0;
    text-align: center;
    color: #fff;
    border-radius: 40px;
  }
  .news-ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .news-ul li {
    width: 45%;
    margin: 3em 0 0;
  }
  .news-table {
    margin: 2em 0;
  }
  .news-table th, .news-table td {
    padding: .5em 0;
  }
  .all-btn {
    position: relative;
    width: 250px;
    display: block;
    background-color: #1373c0;
    padding: 1em 0;
    text-align: center;
    color: #fff;
    border-radius: 40px;
    margin: 2em auto;
  }
  .yajirushi:after {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/btn_arrow.png) no-repeat center/contain;
  }
  h3.h3-left {
    font-size: 2.7rem;
    text-align: left;
    letter-spacing: .1em;
  }
  h3.h3-black {
    font-size: 2.7rem;
    text-align: center;
    letter-spacing: .1em;
  }
  #footer{
    width: 100%;
    padding: 1em 0;
    text-align: center;
    background-color: #1fadcc;
    color: #fff;
    font-size: 1.3rem;
  }



  /*リンクを右下に固定*/
  #page-top {
    width: 65px;
  	position: fixed;
  	right: 10px;
  	bottom:10px;
  	z-index: 2;
      /*はじめは非表示*/
  	opacity: 0;
  	transform: translateY(100px);
    margin: 0;
  }

  /*　上に上がる動き　*/

  #page-top.UpMove{
  	animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
  	transform: translateY(100px);
    }
    to {
      opacity: 1;
  	transform: translateY(0);
    }
  }

  /*　下に下がる動き　*/

  #page-top.DownMove{
  	animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
    	opacity: 1;
  	transform: translateY(0);
    }
    to {
    	opacity: 1;
  	transform: translateY(100px);
    }
  }

.web-fixed{
  position:fixed;
  top:10%;
  right:0;
  width:90px;
  z-index:101;
}
.web-fixed img{
  width:90px;
}
h3.kyusyoku {
    padding: 0.25em 0.6em;
    color: #494949;
    background: transparent;
    border-left: solid 5px #1fadcc;
    margin: 1em 0;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.1em;
}
.section-kyusyoku{
  margin:9em auto;
}

.section-2-2{
  margin: 0 auto;
  padding: 100px 0 50px;
  width: 100%;
}
.section-2-2-voice{
  width: 54%;
  max-width: 650px;
  margin: 0 auto;
}
h3.subtitle {
    font-size: 2.7rem;
    text-align: center;
    letter-spacing: .1em;
    margin:0 0 10px;
}

.slider {
  margin: 30px auto 0;
  width: 100%;
  padding: 0 50px;
}

h3.voice-h3{
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.7em;
  letter-spacing: .1em;
  color:#fff;
  text-align: left;
}
h3.voice-h3 span {
    background: linear-gradient(transparent 70%, #198aa3 70%);
}
.voice-box{
  position: relative;
  margin:-120px 0 0 auto;
  width:70%;
  background-color: #1fadcc;
  border-radius: 15px;
  padding:2em 3em;
  z-index:2;
  text-align: left;
}

.voice-p1{
  position: relative;
  color:#fff;
  padding-left: 3.4em;
  font-size: 1.6rem;
}
.voice-p2{
  position: relative;
  color:#fff;
  padding-left: 3.4em;
  font-size: 1.5rem;
  margin-top: 2em;
}

.voice-p1 p.p-faq__q-txt{
  color:#fff;
  font-size:1.3rem;
  text-align: left;
}
.voice-p2 p.p-faq__a-txt{
  color:#fff;
  font-size:1.3rem;
  text-align: left;
}

.voice-p1::before {
    position: absolute;
    top: -5px;
    left: 0;
    content: "Q";
    color: #1fadcc;
    font-size: 22px;
    font-weight: bold;
    background-color: #fff;
    border-radius: 100px;
    width: 17px;
    height: 17px;
    padding: 10px;
    line-height: 17px;
}
.voice-p2::before {
    position: absolute;
    top: -5px;
    left: 0;
    content: "A";
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 100px;
    border: 1px solid #fff;
    width: 17px;
    height: 17px;
    padding: 10px;
    line-height: 17px;
    text-align: center;
}
.voice-box ul li{
  border-bottom:1px solid rgba(255,255,255,.6);
}

.button002 a {
  background: #fff;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  max-width: 280px;
  padding: 10px 25px;
  color: #1fadcc;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1.5rem;
  border: 1px solid #fff;
  margin:20px 0 0 auto;
}
.button002 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #1fadcc;
  border-right: 3px solid #1fadcc;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.section3 p{
  text-align: center;
  font-weight: bold;
  color:#fff;
}

.syokusyu-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin:50px 0 0;
}
.syokusyu-box li{
  width:30%;
  margin: 0 1.6% 50px;
}
.syokusyu-box li a:hover{
  opacity: 1;
}

.interview-youtube{
  margin:140px 0 160px;
}


h2.top-h2{
  color: #505050;/*文字色*/
  padding: 0.5em;/*文字周りの余白*/
  display: inline-block;/*おまじない*/
  line-height: 1.3;/*行高*/
  background: #dbebf8;/*背景色*/
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
    margin:0 0 20px 0;
      width: 100%;
}

h2.top-h2:before {
  content: '●';
  color: white;
  margin-right: 8px;
}

/* video */
.video-box{
  width: 100%;
  height: 100vh;
  position:relative;
}


.video{
  width: 100%;
  height: 100vh;
  background: url(../img/kv-alternative.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(16, 57, 75, .0);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.main-logo-video {
  position: absolute;
  top: 2em;
  left: 2em;
  width: 30%;
  max-width: 400px;
}


}/*=======================================================
==========================================================
　　　　　　　　　　　　　PC end
                      IPADSTART
==========================================================
==========================================================
========================================================*/

@media screen and (min-width:600px) and ( max-width:999px) {
  html {
    font-size: 50.5%;
  }
  .inner {
    width: 100%;
    padding: 0 2.5em;
    margin: 0 auto;
    height: 100%;
  }
  .main-visual {
    position: relative;
  }
  .main-logo {
    position: absolute;
    top: 1em;
    left: 1em;
    width: 38%;
    max-width: 400px;
  }
  /*スライドショー*/
  .none-scroll {
    overflow-x: hidden;
  }
  .myChangeImage {
    position: relative;
    width: 100%;
    padding-top: 44%;
  }
  .myChangeImage img {
    position: absolute;
    top: 0;
    left: 0;
    animation: ChangeImage 10s infinite;
    opacity: 0;
  }
  @keyframes ChangeImage {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    33% {
      opacity: 1;
    }
    63% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  .myChangeImage img:nth-of-type(1) {
    animation-delay: 0s;
  }
  .myChangeImage img:nth-of-type(2) {
    animation-delay: 3.5s;
  }
  .myChangeImage img:nth-of-type(3) {
    animation-delay: 7s;
  }
  /*ヘッダー*/
  .gnavi__wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
  }
  .gnavi__lists {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 1em;
  }
  .gnavi__list {
    width: 19%;
    height: 60px;
    background-color: #fff;
    position: relative;
    transition: all .3s;
    border-left: 1px solid #bae2eb;
  }
  .gnavi__list:last-child{
    border-right: 1px solid #bae2eb;
  }
  .gnavi__list:hover {
    background-color: #fff;
    opacity: 1;
  }
  .gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    color: #000;
  }
  .gnavi__list:hover::before {
    background-color: #fff;
  }
  .gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
    font-size: 1.4rem;
    letter-spacing: normal;
    font-weight: 600;
    transition: all .3s;
    padding: 1.6em 0 1.9em;
  }
  .gnavi__list:hover a {
    color: #000;
  }
  .gnavi_bottom:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 6px solid #1373c0;
  }
  /*ヘッダー　ドロップダウン*/
  .dropdown__lists {
    display: none;
    /*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
  }
  .gnavi__list:hover .dropdown__lists {
    display: block;
    /*Gナビメニューにホバーしたら表示*/
  }
  .dropdown__list {
    background-color: #eaf2f9;
    position: relative;
    text-align: left;
    padding: 1em 1em 1em 0;
  }
  .dropdown__list:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .dropdown__list:hover {
    background-color: #fff;
  }
  .dropdown__list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000;
    text-decoration: none;
    padding: 0 1em 0;
    font-size: 1.3rem;
  }
  .dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #1373c0;
    border-left: 2px solid #1373c0;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
  }
  .dropdown__lists {
    visibility: hidden;
    /*デフォルトでは非表示の状態にしておく*/
    opacity: 0;
    /*不透明度0*/
    transition: all .3s;
    /*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
  }
  .gnavi__list:hover .dropdown__lists {
    visibility: visible;
    /*Gナビメニューにホバーしたら表示*/
    opacity: 1;
    /*不透明度1*/
  }
  .list-home {
    width: 20px;
    margin: 0 auto;
  }
  /*MESSAGE*/
  .message-box {
    position: relative;
    width: 100%;
    background-color: #1fadcc;
    margin: 0;
    padding: 10em 0 5em;
    overflow: hidden;
  }
  .message-box-inner {
    margin: -30px auto 0;
  }
  .message-img {
    width: 80%;
    margin: 0 auto;
    position: relative;
    bottom: -40px;
  }
  .message-left {
    position: relative;
    width: 40%;
    float: left;
  }
  .message-left img:nth-child(1) {
    position: relative;
    margin: 2em 0 3em 2em;
    width: 95%;
  }
  .message-left img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    margin: 0 0;
  }
  .message-subimg {
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;
    width: 131px;
    height: 122px;
    padding-top: 157%;
    box-sizing: content-box;
  }
  .message-right {
    position: relative;
    width: 60%;
    padding: 0 0 0 3em;
    float: right;
  }
  .message-right p {
    color: #fff;
    line-height: 1.7em;
    font-size: 1.5rem;
  }
  .message-right h3 {
    color: #fff;
    font-size: 3.5rem;
    margin: 0 0 .5em;
  }
  .message-right h3 .marker {
    background: webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #198aa3));
    background: linear-gradient(transparent 70%, #198aa3 70%);
  }
  .message-titlebox {
    position: relative;
    z-index: 1;
  }
  /*当院で働く魅力*/
  .section-2 {
    margin: 100px auto 50px;
  }
  .section-2 h3 {
    font-size: 2.7rem;
    text-align: center;
    letter-spacing: .1em;
  }
  .section2-1, .section2-2, .section2-3, .section2-4 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .section2-1 h3, .section2-2 h3, .section2-3 h3, .section2-4 h3 {
    font-size: 2.7rem;
    font-weight: normal;
    line-height: 1.7em;
    letter-spacing: .1em;
  }
  .section2-1 h3 span, .section2-2 h3 span, .section2-3 h3 span, .section2-4 h3 span {
    background: linear-gradient(transparent 70%, #d7edf4 70%);
  }
  .section2-1 p, .section2-2 p, .section2-3 p, .section2-4 p {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2em;
    padding: 4% 0 0;
  }
  .section2-1-left {
    width: 45%;
    position: relative;
  }
  .section2-1-left img:nth-child(1) {
    width: 95%;
  }
  .section2-1-left img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-1-right {
    width: 50%;
    padding: 5% 0 0;
    position: relative;
  }
  .section2-1-right::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg01.png") no-repeat center/contain;
  }
  .section2-2-left {
    width: 50%;
    padding: 5% 0 0;
    position: relative;
  }
  .section2-2-right {
    width: 45%;
    position: relative;
  }
  .section2-2-right img:nth-child(1) {
    width: 95%;
  }
  .section2-2-right img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-2-left::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -50px;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg02.png") no-repeat center/contain;
    z-index: -1;
  }
  .section2-3-left {
    width: 45%;
    position: relative;
  }
  .section2-3-left img:nth-child(1) {
    width: 95%;
  }
  .section2-3-left img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-3-right {
    width: 50%;
    padding: 5% 0 0;
    position: relative;
  }
  .section2-3-right::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg03.png") no-repeat center/contain;
    z-index: -1;
  }
  .section2-4-left {
    width: 50%;
    padding: 1% 0 0 0;
    position: relative;
  }
  .section2-4-right {
    width: 45%;
    position: relative;
  }
  .section2-4-right img:nth-child(1) {
    width: 95%;
  }
  .section2-4-right img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .section2-4-left::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -80px;
    width: 200px;
    height: 190px;
    background: url("../img/rec02_bg04.png") no-repeat center/contain;
    z-index: -1;
  }
  .section2-4-imgbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1em 0 0;
  }
  .section2-4-imgbox img {
    width: 32%;
    padding: 4px;
  }
  /*職種紹介*/
  .tab-wrap {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
  }
  .tab-label {
    color: #1373c0;
    background: #fff;
    border: 1px solid #1373c0;
    font-size: 1.7rem;
    letter-spacing: .1em;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 1em 0;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    flex: 1;
  }
  .tab-label:not(:last-of-type) {
    margin-right: 20px;
  }
  .tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
  .tab-switch:checked+.tab-label {
    background: #325A8C;
  }
  .tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 50px 0 0;
    opacity: 1;
    transition: .5s opacity;
  }
  .tab-switch {
    display: none;
  }
  .tab-switch:checked+.tab-label:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #1373c0;
    border-width: 14px;
    margin-left: -14px;
  }
  .tab-switch:checked+.tab-label {
    background: #1373c0;
    position: relative;
    color: #fff;
  }
  .section3 {
    background-image: url("../img/rec03_bg.jpg");
    background-size: 140% auto;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 70px 0 0;
  }
  .section3-title {
    width: 90%;
    margin: 6px auto 51px;
  }
  .section3 h3 {
    font-size: 2.7rem;
    text-align: center;
    letter-spacing: .1em;
    color: #fff;
  }
  .section3-1 {
    position: relative;
    width: 100%;
    padding-bottom: 40%;
    border-radius: 8px 8px 0 0;
    background-image: url(../img/rec03_slide01.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.section3-1b {
  position: relative;
  width: 100%;
  padding-bottom: 40%;
  border-radius: 8px 8px 0 0;
  background-image: url(../img/rec03_slide02.jpg);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.section3-1c {
  position: relative;
  width: 100%;
  padding-bottom: 40%;
  border-radius: 8px 8px 0 0;
  background-image: url(../img/rec03_slide03.jpg);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.section3-1-name {
  position: absolute;
  left: 2%;
  bottom: 5%;
  width: 200px;
  padding: 1em;
  border-bottom: 5px solid #1fadcc;
  background-color: #fff;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.section3-1-2 {
  width: 100%;
  background-color: #1373c0;
  padding: 50px;
  border-radius: 0 0 8px 8px;
}

.section3-1-2 p {
  color: #fff;
  font-weight: 500;
  margin: 0 0 50px;
  font-size: 1.6rem;
  line-height: 1.8em;
}


/* 001 */

.button001 a {
  background: #fff;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  max-width: 280px;
  padding: 10px 25px;
  color: #1373c0;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1.5rem;
  border: 1px solid #fff;
}

.button001 a:hover {
  border: 1px solid #fff;
  background-color: #1373c0;
  color: #fff;
}

.button001 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #1373c0;
  border-right: 3px solid #1373c0;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button001 a:hover:after {
  border-color: #FFF;
}


/*職種紹介 section4*/

.section4 {
  background-image: url("../img/rec04_bg.jpg");
  background-size: 140% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 100px 0 100px;
  min-height: 900px;
}

.non-noshu {
  font-size: 2rem;
  font-weight: bold;
  color: #1fadcc;
  text-align: center;
  margin: 0.5em 0 1.5em;
}


/*タブ切り替え全体のスタイル*/

.tabs {
  margin-top: 50px;
  width: 100%;
  margin: 0 auto;
}


/*タブのスタイル*/

.tab_item {
  width: calc(95%/3);
  background-color: #bbb;
  line-height: 50px;
  font-size: 1.7rem;
  text-align: center;
  color: #fff;
  display: block;
  float: left;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 20px 20px 0 0;
  padding: 0.5em;
}

.tab_item {
  margin: 0 calc(5%/2) 0 0;
}

.tab_item2 {
  margin: 0 0 0 0!important;
}

.tab_item:hover {
  opacity: 0.75;
}


/*ラジオボタンを全て消す*/

input[name="tab_item"] {
  display: none;
}


/*タブ切り替えの中身のスタイル*/

.tab_content {
  display: none;
  padding: 3rem 7% 7rem;
  clear: both;
  overflow: hidden;
  border: 1px solid #1fadcc;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
}


/*選択されているタブのコンテンツのみを表示*/

#all:checked~#all_content, #programming:checked~#programming_content, #design:checked~#design_content {
  display: block;
}


/*選択されているタブのスタイルを変える*/

.tabs input:checked+.tab_item {
  background-color: #1fadcc;
  color: #fff;
}

.section4-table {
  border-collapse: separate;
  border-spacing: 0;
  border-right: 1px solid #1fadcc;
  border-bottom: 1px solid #1fadcc;
  background-color: #fff;
  margin-bottom: 30px;
}

.section4-table th, .section4-table td {
  padding: 1.5em 2em;
  text-align: left;
  vertical-align: middle;
}

.section4-table th {
  border-top: 1px solid #1fadcc;
  border-left: 1px solid #1fadcc;
  font-size: 1.8rem;
  font-weight: normal;
    min-width: 180px;
}

.section4-table td {
  border-top: 1px solid #1fadcc;
  border-left: 1px solid #1fadcc;
  line-height: 1.8em;
}

.section4-table-table {
  border-collapse: separate;
  border-spacing: 0;
}

.section4-table-table th, .section4-table-table td {
  border: 0px!important;
  line-height: 1.8em;
}

.section4-table-table th {
  text-align: left;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 0;
  width: 17%;
  vertical-align: top;
}

.section4-table-table td {
  position: relative;
  text-align: left;
  padding: 0;
  vertical-align: top;
}

.section4-table-table td::before {
  content: ":";
  position: absolute;
  top: 0;
  left: -10px;
}

.section5 {
  width: 100%;
  padding: 80px 0 120px;
  background-position: center;
  background-size: 160%;
    background-repeat: no-repeat;
  background-image: url("../img/rec05-1.png");
}

.section5 img {
  width: 80%;
  margin: 0 auto;
}

.section5 a {
  position: relative;
      width: 350px;
      display: block;
      background-color: #1373c0;
      padding: 0.7em 0;
      margin: 0 auto;
      text-align: center;
      color: #fff;
      font-weight: 500;
      font-size: 3.5rem;
      letter-spacing: .1em;
      border-radius: 70px;
}

.section5 a:after {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 22px;
  background: url(../img/btn_arrow.png) no-repeat center/contain;
}

.section5 a::before {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  width: 40px;
  height: 32px;
  background: url(../img/rec05_icon_web.png) no-repeat center/contain;
}

.back-blue {
  background-color: #d7edf4;
  width: 100%;
  margin: 0;
  overflow: hidden;
}


/* スライドする要素 */

.sulide-content {
  width: 250px;
  padding: 0 1em;
}


/* スライドレールの枠 */

.slide-wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 210px;
}


/* content4つをまとめたスライドブロック */

.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 20s infinite linear 1s both;
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



/*スタッフ ブログ*/

.section6 {
  padding: 100px 0 70px;
}

.news-img1 {
  margin: 1em 0;
  padding: 0 0 5em;
  border-bottom: 1px solid #abb8c3;
}

.news-btn-ab {
  position: absolute;
  top: 30%;
  right: 5%;
}

.news-btn {
  position: relative;
  width: 250px;
  display: block;
  background-color: #1373c0;
  padding: 1em 0;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}

.news-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}

.news-ul li {
  width: 45%;
  margin: 3em 0 0;
}

.news-table {
  margin: 2em 0;
}

.news-table th, .news-table td {
  padding: .5em 0;
}

.all-btn {
  position: relative;
  width: 250px;
  display: block;
  background-color: #1373c0;
  padding: 1em 0;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  margin: 2em auto;
}

.yajirushi:after {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/btn_arrow.png) no-repeat center/contain;
}

h3.h3-left {
  font-size: 2.7rem;
  text-align: left;
  letter-spacing: .1em;
}

h3.h3-black {
  font-size: 2.7rem;
  text-align: center;
  letter-spacing: .1em;
}

#footer{
  width: 100%;
  padding: 1em 0;
  text-align: center;
  background-color: #1fadcc;
  color: #fff;
  font-size: 1.3rem;
}



/*リンクを右下に固定*/
#page-top {
  width:60px;
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
.web-fixed{
  position: fixed;
  top: 7%;
  right: 0;
  width: 68px;
  z-index: 101;
}
.web-fixed img{
  width: 68px;
}
h3.kyusyoku {
    padding: 0.25em 0.6em;
    color: #494949;
    background: transparent;
    border-left: solid 5px #1fadcc;
    margin: 1em 0;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.1em;
}

.section-kyusyoku{
  margin:5em auto 2em;
}


.slider {
  margin: 30px auto 0;
  width: 100%;
}

h3.voice-h3{
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.7em;
  letter-spacing: .1em;
  color:#fff;
  text-align: left;
}
h3.voice-h3 span {
    background: linear-gradient(transparent 70%, #198aa3 70%);
}
.voice-box{
  position: relative;
  margin:-100px 0 0 auto;
  width:70%;
  background-color: #1fadcc;
  border-radius: 15px;
  padding:2em 3em;
  z-index:2;
  text-align: left;
}

.voice-p1{
  position: relative;
  color:#fff;
  padding-left: 3.4em;
  font-size: 1.4rem;
}
.voice-p2{
  position: relative;
  color:#fff;
  padding-left: 3.4em;
  font-size: 1.4rem;
  margin-top: 2em;
}

.voice-p1 p.p-faq__q-txt{
  color:#fff;
  font-size:1.3rem;
  text-align: left;
}
.voice-p2 p.p-faq__a-txt{
  color:#fff;
  font-size:1.3rem;
  text-align: left;
}

.voice-p1::before {
  position: absolute;
  top: -5px;
  left: 0;
  content: "Q";
  color: #1fadcc;
  font-size: 13px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 100px;
  width: 11px;
  height: 11px;
  padding: 10px;
  line-height: 11px;
}
.voice-p2::before {
    position: absolute;
    top: -5px;
    left: 0;
    content: "A";
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 100px;
    border: 1px solid #fff;
    width: 11px;
    height: 11px;
    padding: 10px;
    line-height: 11px;
    text-align: center;
}
.voice-box ul li{
  border-bottom:1px solid rgba(255,255,255,.6);
}

.button002 a {
  background: #fff;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  max-width: 280px;
  padding: 10px 25px;
  color: #1fadcc;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1.5rem;
  border: 1px solid #fff;
  margin:20px 0 0 auto;
}
.button002 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #1fadcc;
  border-right: 3px solid #1fadcc;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
h3.subtitle {
    font-size: 2.7rem;
    text-align: center;
    letter-spacing: .1em;
    margin: 0 0 10px;
}


.section-2-2{
  text-align:center;
  margin:100px auto;
  width:100%;
}
.section-2-2-voice{
  width: 62%;
  margin: 0 auto 40px;
}

.section3 p{
  text-align: center;
  font-weight: bold;
  color:#fff;
}

.syokusyu-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin:50px 0 0;
}
.syokusyu-box li{
  width:30%;
  margin: 0 1.6% 30px;
}


.interview-youtube{
  margin:90px 0 100px;
}

h2.top-h2{
  color: #505050;/*文字色*/
  padding: 0.5em;/*文字周りの余白*/
  display: inline-block;/*おまじない*/
  line-height: 1.3;/*行高*/
  background: #dbebf8;/*背景色*/
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
    margin:0 0 20px 0;
      width: 100%;
}

h2.top-h2:before {
  content: '●';
  color: white;
  margin-right: 8px;
}

/* video */
.video-box{
  width: 100%;
  height: 100vh;
  position:relative;
}


.video{
  width: 100%;
  height: 100vh;
  background: url(../img/kv-alternative.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(16, 57, 75, .0);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.main-logo-video {
  position: absolute;
  top: 2em;
  left: 2em;
  width: 30%;
  max-width: 400px;
}























}/*=======================================================
==========================================================
  　　　　　　　　　　　　　ip end SPstart
==========================================================
========================================================*/
@media screen and (max-width:600px) {
  html {
    font-size: 62.5%;
  }

  .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.7em;
    height: 100%;
  }

  .main-visual {
    position: relative;
  }

  .main-logo img:first-child {
    width: 80%;
    margin: 1em auto 1em;
  }

  .main-logo img:last-child {
      width: 92%;
      margin: 1em auto;
  }

  .header ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-flow: row;
    border-collapse: separate;
    border-spacing: 0;
  }

  .header ul li {
    width: 25%;
    border-left: 1px solid #ccc;
  }

  .header ul li:first-child {
    border-left: none;
  }

  .header ul li img {
    width: 90%;
    margin: 0 auto;
  }

  .header {
    position: relative;
  }

  .header-fixed {
    position: fixed!important;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    background-color: #fff;
    overflow: hidden;
  }

  ul.header-modal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-flow: row;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
  }

  ul.header-modal li {
    width: 25%;
    border-left: 1px solid #ccc;
  }

  ul.header-modal li:first-child {
    border-left: none;
  }

  ul.header-modal li img {
    width: 90%;
    margin: 0 auto;
  }
  /*モーダル本体の指定 + モーダル外側の背景の指定*/

  .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #1fadcc;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 100;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/

  .modal-container.active {
    opacity: 1;
    visibility: visible;
  }
  /*モーダル枠の指定*/

  .modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }

  .modal-inner {
    width: 85%;
    margin: 2em auto;
  }

  .modal-content {
    width: 100%;
  }

  .modal-content li {
    width: 100%;
    background-color: #fff;
    margin: 0 0;
    padding: .6em 2em;
    font-weight: bold;
    text-align: left;
    border-top: 1px solid #1fadcc;
  }
  .modal-ul-li-s{
    padding: 0.6em 2em 0.6em 3em!important;
    position:relative;
    border-top: none!important;
  }
  .modal-ul-li-s:after{
    padding: 0.6em 2em 0.6em 3em!important;
    position:absolute;
    top:0;
    left:3px;
    content: "●";
    color:#1fadcc;
    font-size: 8px;
    line-height: 3rem;
    opacity: .5;
  }
  .header-logo-btm {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: 0;
    width: 95%;
    z-index: -1;
  }
  /*スライドショー*/

  .myChangeImage {
    position: relative;
    width: 100%;
    padding-top: 98%;
  }

  .myChangeImage img {
    position: absolute;
    top: 0;
    left: 0;
    animation: ChangeImage 10s infinite;
    opacity: 0;
  }

  @keyframes ChangeImage {
    0% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    33% {
      opacity: 1;
    }
    63% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }

  .myChangeImage img:nth-of-type(1) {
    animation-delay: 0s;
  }

  .myChangeImage img:nth-of-type(2) {
    animation-delay: 3.5s;
  }

  .myChangeImage img:nth-of-type(3) {
    animation-delay: 7s;
  }
  /*ヘッダー*/

  .gnavi__wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
  }

  .gnavi__lists {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gnavi__list {
    width: 15.8%;
    height: 60px;
    background-color: #fff;
    position: relative;
    transition: all .3s;
  }

  .gnavi__list:hover {
    background-color: #fff;
    opacity: 1;
  }

  .gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    color: #000;
  }

  .gnavi__list:hover::before {
    background-color: #fff;
  }

  .gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
    padding: 1.6em 0 1.9em;
  }

  .gnavi__list:hover a {
    color: #000;
  }

  .gnavi_bottom:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 6px solid #1373c0;
  }
  /*ヘッダー　ドロップダウン*/

  .dropdown__lists {
    display: none;
    /*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
  }

  .gnavi__list:hover .dropdown__lists {
    display: block;
    /*Gナビメニューにホバーしたら表示*/
  }

  .dropdown__list {
    background-color: #eaf2f9;
    position: relative;
    text-align: left;
    padding: 1em 1em 1em 0;
  }

  .dropdown__list:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }

  .dropdown__list:hover {
    background-color: #fff;
  }

  .dropdown__list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000;
    text-decoration: none;
    padding: 0 1em 0;
    font-size: 1.3rem;
  }

  .dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #1373c0;
    border-left: 2px solid #1373c0;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
  }

  .dropdown__lists {
    visibility: hidden;
    /*デフォルトでは非表示の状態にしておく*/
    opacity: 0;
    /*不透明度0*/
    transition: all .3s;
    /*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
  }

  .gnavi__list:hover .dropdown__lists {
    visibility: visible;
    /*Gナビメニューにホバーしたら表示*/
    opacity: 1;
    /*不透明度1*/
  }

  .list-home {
    width: 30px;
    margin: 0 auto;
  }
  /*MESSAGE*/

  .message-box {
    position: relative;
    width: 100%;
    background-color: #1fadcc;
    margin: 0;
    padding: 60px 0 40px;
    overflow: hidden;
  }

  .message-img {
    width: 90%;
    margin: 0 auto;
    position: relative;
    bottom: -30px;
  }

  .message-left {
    position: relative;
    width: 100%;
  }

  .message-left img:nth-child(1) {
    position: relative;
    width: 97%;
    margin: 0 0;
    z-index: 2;
  }

  .message-left img:nth-child(2) {
    position: absolute;
    top: 15px;
    right: 0;
    width: 97%;
    margin: 0 0;
    z-index: 1;
  }

  .message-subimg {
    position: absolute;
    right: 1em;
    bottom: -4em;
    margin: auto;
    width: 78px;
    height: 75px;
    z-index: 2;
  }

  .message-right {
    position: relative;
    width: 100%;
    margin: 3em 0 0;
    padding: 0 0 0;
  }

  .message-right p {
    color: #fff;
    line-height: 1.7em;
    font-size: 1.5rem;
  }

  .message-right h3 {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 .5em;
  }

  .message-right h3 .marker {
    background: webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #198aa3));
    background: linear-gradient(transparent 70%, #198aa3 70%);
  }

  .message-titlebox {
    position: relative;
    z-index: 1;
  }
  /*当院で働く魅力*/

  .section-2 {
    margin: 4em auto 1.5em;
  }

  .section-2 h3 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: .1em;
  }

  .section2-1, .section2-2, .section2-3, .section2-4 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 2em;
  }

  .section2-1 h3, .section2-2 h3, .section2-3 h3, .section2-4 h3 {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.7em;
    letter-spacing: .1em;
  }

  .section2-1 h3 span, .section2-2 h3 span, .section2-3 h3 span, .section2-4 h3 span {
    background: linear-gradient(transparent 70%, #d7edf4 70%);
  }

  .section2-1 p, .section2-2 p, .section2-3 p, .section2-4 p {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2em;
    padding: 0 0 0;
    margin: 1em 0;
  }

  .section2-1-left {
    width: 100%;
    position: relative;
  }

  .section2-1-right {
    width: 100%;
    padding: 5% 0 0;
    position: relative;
  }

  .section2-1-right::before {
    content: "";
    position: absolute;
    bottom: -27px;
    right: 0;
    width: 150px;
    height: 190px;
    background: url("../img/rec02_bg01.png") no-repeat center/contain;
  }

  .section2-2 {
    display: flex;
    flex-direction: column-reverse;
  }

  .section2-2-left {
    width: 100%;
    padding: 2em 0 0;
    position: relative;
  }

  .section2-2-right {
    width: 100%;
    position: relative;
  }

  .section2-2-right img:nth-child(1) {
    width: 95%;
  }

  .section2-2-right img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .section2-2-left::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -50px;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg02.png") no-repeat center/contain;
    z-index: -1;
  }

  .section2-3-left {
    width: 100%;
    position: relative;
    margin: 0em 0;
  }

  .section2-3-left img:nth-child(1) {
    width: 100%;
  }

  .section2-3-left img:nth-child(2) {
    position: absolute;
    top: 0;
    right: -50px;
    z-index: -1;
  }

  .section2-3-right {
    width: 100%;
    padding: 7% 0 0;
    position: relative;
  }

  .section2-3-right::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    width: 170px;
    height: 190px;
    background: url("../img/rec02_bg03.png") no-repeat center/contain;
    z-index: -1;
  }

  .section2-4-left {
    width: 100%;
    position: relative;
  }

  .section2-4-right {
    width: 100%;
    position: relative;
  }

  .section2-4-right img:nth-child(1) {
    width: 100%;
  }

  .section2-4-right img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .section2-4-left::before {
    content: "";
    position: absolute;
    bottom: 38%;
    left: -80px;
    width: 200px;
    height: 190px;
    background: url("../img/rec02_bg04.png") no-repeat center/contain;
    z-index: -1;
  }

  .section2-4-imgbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1em 0 0;
  }

  .section2-4-imgbox img {
    width: 33%;
    padding: 2%;
  }

  .h3-fukuri {
    margin: 1.5em 0 0!important;
  }
  /*職種紹介*/

  .tab-wrap {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
  }

  .tab-label {
    color: #1373c0;
    background: #fff;
    border: 1px solid #1373c0;
    font-size: 1.5rem;
    letter-spacing: .1em;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 1em 10px;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    flex: 1;
  }

  .tab-label:not(:last-of-type) {
    margin-right: 10px;
  }

  .tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .tab-switch:checked+.tab-label {
    background: #325A8C;
  }

  .tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 2em 0;
    opacity: 1;
    transition: .5s opacity;
  }

  .tab-switch {
    display: none;
  }

  .tab-switch:checked+.tab-label:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #1373c0;
    border-width: 14px;
    margin-left: -14px;
  }

  .tab-switch:checked+.tab-label {
    background: #1373c0;
    position: relative;
    color: #fff;
  }

  .section3 {
    background-image: url("../img/rec03_bg.jpg");
    background-size: 600% auto;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 4em 0 1em;
    margin: 3em 0 0;
  }

  .section3-title {
    width: 90%;
    margin: 6px auto 41px;
  }

  .section3 h3 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: .1em;
    color: #fff;
  }

  .section3-1 {
    position: relative;
    width: 100%;
    padding-bottom: 41%;
    border-radius: 8px 8px 0 0;
    background-image: url(../img/rec03_slide01.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .section3-1b {
    position: relative;
    width: 100%;
    padding-bottom: 41%;
    border-radius: 8px 8px 0 0;
    background-image: url(../img/rec03_slide02.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .section3-1c {
    position: relative;
    width: 100%;
    padding-bottom: 41%;
    border-radius: 8px 8px 0 0;
    background-image: url(../img/rec03_slide03.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .section3-1-name {
    position: absolute;
    left: 0;
    bottom: -27px;
    padding: 0.5em 2em;
    border-bottom: 5px solid #1fadcc;
    background-color: #fff;
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
  }

  .section3-1-2 {
    width: 100%;
    background-color: #1373c0;
    padding: 3.5em 2em 2.5em;
    border-radius: 0 0 8px 8px;
  }

  .section3-1-2 p {
    color: #fff;
    font-weight: 500;
    margin: 0 0 2em;
    font-size: 1.4rem;
    line-height: 1.8em;
  }
  /* 001 */

  .button001 a {
    background: #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #1373c0;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 1.5rem;
    border: 1px solid #fff;
  }

  .button001 a:hover {
    border: 1px solid #fff;
    background-color: #1373c0;
    color: #fff;
  }

  .button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #1373c0;
    border-right: 3px solid #1373c0;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
  }

  .button001 a:hover:after {
    border-color: #FFF;
  }
  /*職種紹介 section4*/

  .section4 {
    background-image: url("../img/rec04_bg.jpg");
    background-size: 300% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 35px 0 100px;
  }

  .non-noshu {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1fadcc;
    text-align: center;
    margin: 0.5em 0 1em;
  }
  /*タブ切り替え全体のスタイル*/

  .tabs {
    margin-top: 50px;
    width: 100%;
    margin: 0 auto;
  }
  /*タブのスタイル*/

  .tab_item {
    background-color: #bbb;
        line-height: 32px;
        font-size: 1.4rem;
        text-align: center;
        color: #fff;
        display: block;
        float: left;
        text-align: center;
        font-weight: 500;
        transition: all 0.2s ease;
        border-radius: 10px 10px 0 0;
        padding: 0.6em 1em 0.3em;
        vertical-align: middle;
  }

  .tab_item {
    margin: 0 calc(5%/2) 0 0;
  }

  .tab_item2 {
    margin: 0 0 0 0!important;
  }

  .tab_item:hover {
    opacity: 0.75;
  }
  /*ラジオボタンを全て消す*/

  input[name="tab_item"] {
    display: none;
  }
  /*タブ切り替えの中身のスタイル*/

  .tab_content {
    display: none;
    padding: 1em 1em 3em;
    clear: both;
    overflow: hidden;
    border: 1px solid #1fadcc;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
  }
  /*選択されているタブのコンテンツのみを表示*/

  #all:checked~#all_content, #programming:checked~#programming_content, #design:checked~#design_content {
    display: block;
  }
  /*選択されているタブのスタイルを変える*/

  .tabs input:checked+.tab_item {
    background-color: #1fadcc;
    color: #fff;
  }

  .section4-table {
    border-collapse: separate;
    border-spacing: 0;
    border-right: 1px solid #1fadcc;
    border-bottom: 1px solid #1fadcc;
    background-color: #fff;
    margin-bottom: 10px;
  }

  .section4-table th, .section4-table td {
    width: 100%;
    display: block;
    vertical-align: middle;
  }

  .section4-table th {
    border-top: 1px solid #1fadcc;
    border-left: 1px solid #1fadcc;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    padding: 0.8em 1.2em;
    min-width: 100px;
  }

  .section4-table td {
    border-top: 1px solid #1fadcc;
    border-left: 1px solid #1fadcc;
    line-height: 1.6em;
    text-align: left;
    padding: 1.5em 1.2em;
  }


  .section4-table-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .section4-table-table th, .section4-table-table td {
    border: 0px!important;
    display: inline-block;
    line-height: 1.8em;
  }

  .section4-table-table th {
    width: 35%!important;
    vertical-align: top;
    text-align: left;
    font-size: 1.5rem;
    font-weight: normal;
    padding: 0;
  }

  .section4-table-table td {
    position: relative;
    width: 65%!important;
    vertical-align: top;
    text-align: left;
    padding: 0;
  }

  .section4-table-table td::before {
    content: ":";
    position: absolute;
    top: 0;
    left: -10px;
    font-size: 1.5rem;
  }

  .section5 {
    width: 100%;
    padding: 3em 0;
    background-position: center;
    background-size: 172%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/rec05-1.png);
  }

  .section5 img {
    width: 100%;
    margin: 0 auto;
  }

  .section5 a {
    position: relative;
    max-width: 300px;
    width: 90%;
    display: block;
    background-color: #1373c0;
    padding: 0.7em 0;
    margin: 1em auto;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: .1em;
    border-radius: 70px;
  }

  .section5 a:after {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    width: 24px;
    height: 17px;
    background: url(../img/btn_arrow.png) no-repeat center/contain;
  }

  .section5 a::before {
    position: absolute;
    top: 50%;
    left: 23%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    width: 23px;
    height: 32px;
    background: url(../img/rec05_icon_web.png) no-repeat center/contain;
  }

  .back-blue {
    background-color: #d7edf4;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  /* スライドする要素 */

  .sulide-content {
    width: 250px;
    padding: 0 .5em;
  }
  /* スライドレールの枠 */

  .slide-wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 210px;
  }
  /* content4つをまとめたスライドブロック */

  .slideshow {
    display: flex;
    -webkit-animation: loop-slide 20s infinite linear 1s both;
    animation: loop-slide 20s infinite linear 1s both;
  }

  @-webkit-keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

  @keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  /*スタッフ ブログ*/

  .section6 {
    padding: 4em 0 3em;
  }

  .news-img1 {
    margin: 1em 0 2em;
    padding: 0 0 2em;
    border-bottom: 1px solid #abb8c3;
  }

  .news-btn-ab {
    position: relative;
  }

  .news-btn {
    position: relative;
    width: 250px;
    display: block;
    background-color: #1373c0;
    padding: 1em 0;
    text-align: center;
    color: #fff;
    border-radius: 40px;
    margin: 2em auto;
  }

  .news-ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .news-ul li {
    width: 100%;
    margin: 1.5em 0 0;
  }

  .news-table {
    margin: 2em 0 1em;
    font-size: 1.4rem;
  }

  .news-table th, .news-table td {
    padding: .5em 0;
  }

  .news-table th {
    width: 23%;
  }

  .news-ul-logo {
    width: 90%;
    margin: 0 auto;
  }

  .all-btn {
    position: relative;
    width: 250px;
    display: block;
    background-color: #1373c0;
    padding: 1em 0;
    text-align: center;
    color: #fff;
    border-radius: 40px;
    margin: 2em auto;
  }

  .yajirushi:after {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/btn_arrow.png) no-repeat center/contain;
  }

  h3.h3-left {
    font-size: 2rem;
    text-align: center;
    letter-spacing: .1em;
  }

  h3.h3-black {
    font-size: 2rem;
    text-align: center;
    letter-spacing: .1em;
  }

  #footer{
    width: 100%;
    padding: 1em 0 4em;
    text-align: center;
    background-color: #1fadcc;
    color: #fff;
    font-size: 1.3rem;
  }


  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    width: 13%;
    right: 0;
    bottom: 0;
    z-index: 99;
    opacity: 0;
    transform: translateY(100px);
    margin: 0;
  }

  /*　上に上がる動き　*/

  #page-top.UpMove{
  	animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
  	transform: translateY(100px);
    }
    to {
      opacity: 1;
  	transform: translateY(0);
    }
  }

  /*　下に下がる動き　*/

  #page-top.DownMove{
  	animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
    	opacity: 1;
  	transform: translateY(0);
    }
    to {
    	opacity: 1;
  	transform: translateY(100px);
    }
  }
  .web-fixed{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 85%;
    z-index: 99;
  }

  .web-fixed img{
    width: 85%;
    max-width: 300px;
  }
  .anchor{
    padding-top: 60px;
    margin-top:-60px;
  }
  .anchor2{
    padding-top: 140px;
    margin-top:-140px;
  }
  h3.kyusyoku {
      padding: 0.25em 0.6em;
      color: #494949;
      background: transparent;
      border-left: solid 5px #1fadcc;
      margin: 1em 0;
      font-size: 2rem;
      font-weight: bold;
      line-height: 1.1em;
  }

  .section-kyusyoku{
    margin:4em auto;
  }


  .section-2-2{
    margin: 40px auto 30px;
    width:100%;
    overflow-x: hidden;
  }
  .section-2-2-voice{
    width: 72%;
    margin: 0 auto 40px;
  }

  .syokusyu-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:20px 0;
  }
  .syokusyu-box li{
    width:100%;
    margin-bottom: 20px;
  }


  h3.voice-h3{
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.7em;
    letter-spacing: .1em;
    color:#fff;
    text-align: left;
  }
  h3.voice-h3 span {
      background: linear-gradient(transparent 70%, #198aa3 70%);
  }
  .voice-box{
    position: relative;
    margin:13px 0 0 auto;
    width:100%;
    background-color: #1fadcc;
    border-radius: 15px;
    padding:1.5em 1.5em;
    z-index:2;
    text-align: left;
  }

  .voice-p1{
    position: relative;
    color:#fff;
    padding-left: 3.4em;
    font-size: 1.5rem;
  }
  .voice-p2{
    position: relative;
    color:#fff;
    padding-left: 3.4em;
    font-size: 1.4rem;
    margin-top: -.5em;
  }

  .voice-p1 p.p-faq__q-txt{
    color:#fff;
    font-size:1.3rem;
    text-align: left;
  }
  .voice-p2 p.p-faq__a-txt{
    color:#fff;
    font-size:1.3rem;
    text-align: left;
  }

  .voice-p1::before {
      position: absolute;
      top: -5px;
      left: 0;
      content: "Q";
      color: #1fadcc;
      font-size: 22px;
      font-weight: bold;
      background-color: #fff;
      border-radius: 100px;
      width: 17px;
      height: 17px;
      padding: 10px;
      line-height: 17px;
  }
  .voice-p2::before {
      position: absolute;
      top: -5px;
      left: 0;
      content: "A";
      color: #fff;
      font-size: 22px;
      font-weight: bold;
      border-radius: 100px;
      border: 1px solid #fff;
      width: 17px;
      height: 17px;
      padding: 10px;
      line-height: 17px;
      text-align: center;
  }
  .voice-box ul li{
    border-bottom:1px solid rgba(255,255,255,.6);
  }

  .button002 a {
    background: #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    max-width: 200px;
    padding: 10px 25px;
    color: #1fadcc;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 1.5rem;
    border: 1px solid #fff;
    margin:20px 0 0 auto;
  }
  .button002 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #1fadcc;
    border-right: 3px solid #1fadcc;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
  }

  h3.subtitle {
      font-size: 2rem;
      text-align: center;
      letter-spacing: .1em;
      margin: 40px 0 10px;
  }

  .section3 p{
    text-align: center;
    font-weight: bold;
    color:#fff;
  }

.interview-youtube{
  margin:20px 0 40px;
}
h2.top-h2{
  position:relative;
color: #505050;/*文字色*/
padding: 0.5em 0.5em 0.5em 2.5em;/*文字周りの余白*/
display: inline-block;/*おまじない*/
line-height: 1.3;/*行高*/
background: #dbebf8;/*背景色*/
vertical-align: middle;
border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
margin:0 0 20px 0;
font-size:1.5rem;
}

h2.top-h2:before {
  position:absolute;
  top: 8px;
  left: 15px;
content: '●';
color: white;
}



.video{
  width: 100%;
  height: 100%;
  background: url(../img/) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(16, 57, 75, .0);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.video video{
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit:cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.main-logo-video {
  position: absolute;
  top: 1em;
  left: 1em;
  width: 48%;
  max-width: 400px;
}

}/*=======================================================
==========================================================
　　　　　　　　　　　　　SPend
==========================================================
========================================================*/

/*=======================================================
==========================================================
　　　　　　　　　　　　　PC start
==========================================================
========================================================*/
@media screen and (min-width:999px) {
  body {
    width: 100%;
    min-width: 1100px;
    padding: 0;
    margin: 0;
    z-index: 0;
  }

  p {
    color: #000;
    line-height: 1.8em;
    font-size: 1.6rem;
    margin: 1.5em 0px;
    letter-spacing: normal;
    font-weight: 500;
  }

  img {
    width: 100%;
    display: block;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }

  .pc-none {
    display: none;
  }

  .pc-br::after {
    content: "\A";
    white-space: pre;
  }




}
/*=======================================================
==========================================================
　　　　　　　　　　　　　PC end
==========================================================
==========================================================
========================================================*/

/*=======================================================
==========================================================
　　　　　　　　　　　　　IPAD start
==========================================================
========================================================*/
@media screen and (min-width:600px) and ( max-width:999px) {
  body {
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 0;
  }

  p {
    color: #000;
    line-height: 1.8em;
    font-size: 1.6rem;
    margin: 1.5em 0px;
    letter-spacing: 0.02em;
    font-weight: 500;
  }

  img {
    width: 100%;
    display: block;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }

  .pc-none {
    display: none;
  }

  .pc-br::after {
    content: "\A";
    white-space: pre;
  }
}

/*=======================================================
==========================================================
  　　　　　　　　　　　　　SPstart
==========================================================
========================================================*/
@media screen and (max-width:600px) {
  body {
    width: 100%;
    min-width: 320px;
    padding: 0;
    margin: 0;
    z-index: 0;
  }

  p {
    color: #000;
    line-height: 1.8em;
    font-size: 1.4rem;
    margin: 1.5em 0px;
    letter-spacing: 0.02em;
    font-weight: 500;
  }

  img {
    width: 100%;
    display: block;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }

  .sp-none {
    display: none;
  }

  .sp-br::after {
    content:"\A";
    white-space:pre;
  }


  /*====================================================================
  slick
  ====================================================================*/
  .slider-2 .slick-slide {
    width: 80vw;
    height: auto;
    margin: 0 40px;
    position: relative;
    overflow: inherit;
    }
  .slider-2 .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slider-2 .slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 198px;
    z-index: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  }
  .slider-2 .slick-arrow::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border: 1px solid #09000d;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 11px;
    transform: rotate(45deg);
  }
  .slider-2 .slick-next {
    right: 12px;
  }
  .slider-2 .slick-prev {
    left: 12px;
  }
  .slider-2 .slick-next::before {
    left: 9px;
  }
  .slider-2 .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 8px;
  }
  .dots-2{
    margin: -2rem 0 0;
  }
  .dots-2 .slick-dots {
    text-align: center;
  }
  .dots-2 .slick-dots li {
    display: inline-block;
    margin: 0 3px;
  }
  .dots-2 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 6px;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #bcbcbc;
    border-radius: 50%;
  }
  .dots-2 .slick-dots .slick-active button {
    background: #0a467d;
  }
  .slick-track {
    padding: 4rem 0 1em;
    display: flex;
    }
    .kanjyasama-title {
    max-width: 315px;
    margin: 0 2% 1em;
}
section.kanjyasama {
  padding: 6em 0 .3em;
  position: relative;
  margin: 0 0 3em;
}
.message-titlebox {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 2em 0 0;
}































}/*=======================================================
==========================================================
　　　　　　　　　　　　　SPend
==========================================================
========================================================*/



.header-drop-none li:nth-child(2),.header-drop-none li:nth-child(4),.header-drop-none li:nth-child(5){
  display:none;
}

.header-drop-none-sp li:nth-child(4),.header-drop-none-sp li:nth-child(6),.header-drop-none-sp li:nth-child(7){
  display:none;
}
