@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');

/*============================================
  Common CSS
  ============================================*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{
  margin: 0;
  padding: 0;
  font-family: 'Zen Kaku Gothic New',"游ゴシック","メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  box-sizing: border-box;
}
body{
  overflow-x: hidden;
  color: #302e2d;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
.invisible {
  transition: opacity 0.3s ease;
  opacity: 0.0;
}
.visible {
  transition: opacity 0.3s ease;
  opacity: 1.0;
}
p{
  line-height: 2;
}
a{
  color: #0066ff;
  text-decoration: none;
}
a:hover, .active{
  color: #ccc;
}
a:active, a:focus,input:active, input:focus {
  outline:0;
}
a:hover img {
  opacity:0.95;
  filter: alpha(opacity=95);
  -ms-filter: "alpha(opacity=95)";
  -moz-opacity:0.95;
  -khtml-opacity: 0.95;
}
img{
  max-width: 100%;
  height: auto;
}
.w-inner{
  padding: 0 80px;
}
.inner{
  max-width: 1100px;
  margin: 0 auto;
}
.hr {
  clear: both;
  border: 0px;
  padding: 2vw 0;
}
#content {
  min-height: calc(100vh - 300px);
}
.img1-2{
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
}
.img1-2 li{
  width: 49%;
  list-style-type: none;
}
.img1-1 img,.img1-2 li img{
  border-radius: 4px;
}
.ini:first-letter{
  color: #3862e4;
}
.flex{
  display: flex;
}
.space-b{
  justify-content: space-between;
}
.row-r{
  flex-direction: row-reverse;
}
.col2{
  padding-top: 1em;
}
.btn-wrap{
  text-align: right;
  padding: 1.3em 0 0;
}
.btn1{
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #0864af;
  padding: 14px 30px;
  text-align: center;
  outline: none; 
  transition: ease .2s;
  font-weight: 600;
  background: #0864af;
  border-radius: 500px;
}
.btn1 span{
  position: relative;
  z-index: 3;
  color:#fff;
}
.btn1:hover span{
  color:#0864af;
}
.btn1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn1:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.-pd-t{
  margin-top: 4vw!important;
}

@media only screen and (max-width: 1200px){
  .inner{
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 992px) {
  body{
    font-size:16px;
  }
  .sp{
    display: none!important;
  }
}
@media screen and (max-width: 991px) {
  p{
    font-size: 13px;
    line-height: 1.6;
  }
  .pc{
    display: none!important;
  }
  .w-inner{
    padding: 0 30px;
  }
  .inner{
    padding-left: 20px!important;
    padding-right: 20px!important;
    margin: 0 auto;
  }
  .flex{
    flex-direction: column;
  }
}

/*============================================
  Animation
  ============================================*/
.fade{
  opacity : 0.1;
  transform : translate(0, 50px);
  transition : all 500ms;
}
.fade.f-in{
  opacity : 1;
  transform : translate(0, 0);
}

/*============================================
  Header
  ============================================*/
#l-header {
  z-index:1000;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  transition:all .6s cubic-bezier(.165,.84,.44,1);
  transition-property:transform;
  transition-timing-function:cubic-bezier(.165,.84,.44,1)
}
#l-header .l-header__wrapper {
  margin:0;
}
#l-header .logo img{
  padding-top: 10px;
  width: 160px;
}
#l-header .l-header__wrapper > .l-header__inner {
  display: flex;
  justify-content: space-between;
  z-index: 3;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  height: 80px;
  padding: 0 20px 0 25px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
#l-hero__wrapper {
  position:relative;
  height:100vh
}
#l-hero__wrapper .l-hero__content {
  position:absolute;
  width: 100%;
}

/* Global Menu */
#global-navi {
  width: 100%;
}
#wrapper nav ul li{
  list-style-type: none;
}
#wrapper nav ul li a{
  color: #302e2d;
}
.header{
  background: #fff;
  transition: all 0.5s ease;
}
.hidden {
  background: none;
  transition: all 0.5s ease;
}

@media screen and (min-width: 992px) {
  #l-header .logo{
    width: 10%;
  }
  #wrapper{
    width: 70%;
  }
  #l-header .head-tel{
    width: 20%;
    text-align: center;
    border-left: 1px solid #eee;
  }
  #l-header .head-tel p{
    font-size: max(2vw, 1em);
    font-weight: 700;
    line-height: 1.2;
    color: #3862e4;
  }
  #l-header .head-tel p::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../img/tel.svg) no-repeat center top;
    background-size: auto;
    background-size: contain;
  }
  #l-header .head-tel span{
    font-size: max(.7vw, 10px);
    line-height: 1.4;
    display: block;
  }
  #global-navi .menu{
    display: flex;
    justify-content: flex-end;
  }
  #wrapper nav ul li{
    padding: 0 1vw;
    position: relative;
    font-size: max(1.1vw, .8em);
  }
  #wrapper nav ul li a{
    position: relative;
    font-weight: bold;
  }
  #wrapper nav ul li a:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 1px;
    background: #3862e4;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.4s;
  }
  #wrapper nav ul li a:hover:before {
    transform: scale(1);
  }
  #wrapper nav ul .last::after {
    width: 0;
    height: 0;
  }
  .menu-items{
    height: 60px;
    position: relative;
  }
  .menu-items a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    letter-spacing: .05em;
    font-weight: 600;
    transition: all .15s;
  }
  .SubMenu {
    visibility: hidden;
    position: absolute;
    left: -20px;
    top: 70px;
    width: 200px;
    background-color: #3862e4;
  }
  #wrapper nav .SubMenu-Item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0;
    margin: 0;
  }
  #wrapper nav .SubMenu-Item a{
    color: #fff;
    background-color: #3862e4;
    display: block;
    padding: 6px 0;
    text-align: center;
    font-size: max(.9vw, .7em);
  }
  #wrapper nav .SubMenu-Item a:hover{
    background: #444;
  }
  #wrapper nav .menu-items:hover .SubMenu {
    visibility: visible;
  }
  #wrapper nav .SubMenu-Item a::before{
    height: 0px;
    position: relative;
  }
}

@media screen and (max-width: 991px) {
  #l-header{
    top: 0px;
  }
  #l-header .logo img{
    height: 30px;
  }
  #l-header .l-header__wrapper > .l-header__inner{
    padding: 0 10px;
    height: 60px;
  }
  #l-hero__wrapper{
    margin-top: 0px;
  }
  #wrapper nav {
    position: fixed;
    top: 0;
    right: -1000px;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    background:rgba(255,255,255,0.95);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2
  }
  #wrapper nav ul{
    padding: 0 20px;
  }
  #wrapper nav ul li {
    display:block;
    text-align: center;
    padding: 20px 0px;
    border-bottom: 1px dashed #ccc;
  }
  #wrapper nav ul li a {
    text-decoration: none;
    color: #302e2d;
    display: block;
    font-weight: bold;
  }
  #wrapper .btn-gnavi {
    position: fixed;
    top: 5px;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms
  }
  #wrapper .btn-gnavi span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #3862e4;
    width: 45%;
  }
  #wrapper .btn-gnavi span:nth-child(1) {
    top:15px; 
  }
  #wrapper .btn-gnavi span:nth-child(2) {
    top:23px;
  }
  #wrapper .btn-gnavi span:nth-child(3) {
    top:31px;
  }
  #wrapper .btn-gnavi.open span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  #wrapper .btn-gnavi.open span:nth-of-type(2) {
    opacity: 0;
  }
  #wrapper .btn-gnavi.open span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  #wrapper .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 6px #666
  }
  #wrapper .contents section:nth-child(odd) p {
    left: 10%
  }
  #wrapper .contents section:nth-child(even) p {
    right: 10%
  }
  .head-tel{
    display: none;
  }
    #wrapper nav .SubMenu{
    display: flex;
    margin: 14px -20px -14px -20px;
    border-top: 1px solid #eaeaea;
  }
  #wrapper nav .SubMenu-Item{
    font-size: .75rem;
    width: 50%;
    padding: 15px 0 15px 20px;
    border-bottom: 0;
  }
  .menu-items .SubMenu-Item{
    position: relative;
  }
  .menu-items .SubMenu-Item::before{
    content: "";
    position: absolute;
    left:0;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 10px;
    height: 2px;
    border-top: solid 0px #ccc;
  }
  .menu-items .SubMenu-Item a::before{
    width: 0;
    height: 0;
    border-right: 0;
  }
  #wrapper nav .SubMenu li:nth-child(odd){
    border-right: 1px solid #eaeaea;
  }
}



/*============================================
  Top Slider
  ============================================*/
.slider {
  position:relative;
  z-index: 1;
  margin: 0 -6px;
  height: 100vh;
}
.slider-item01 {
    background:url(../img/slider1.jpg);
}
.slider-item02 {
    background:url(../img/slider2.jpg);
}
.slider-item03 {
    background:url(../img/slider3.jpg);
}
.slider-item {
  width: 100%;
  height:100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.slider-txt{
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 5%;
  font-size: max(2.4vw, 1.2em);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.slick-prev, 
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 25px;
  width: 25px;
}
.slick-prev {
  left:2.5%;
  transform: rotate(-135deg);
}
.slick-next {
  right:2.5%;
  transform: rotate(45deg);
}
.slick-dots {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 10px;
}
.slick-dots li {
  display:block;
  margin:10px 0;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 6px;
  height: 10px;
  display:block;
  border-radius: 50%;
  background:#fff;
  border: 0;
}
.slick-dots .slick-active button{
  background:#3862e4;
}

@media screen and (max-width: 991px) {
  #l-hero__wrapper{
    height: 95vh;
  }
  .slider {
    height: 95vh;
  }
  .slider-item {
    height: 95vh;
  }
  .slick-arrow{
    display: none!important;
  }
  .slick-dots {
    display: none!important;
  }
  .slick-dots button {
    width: 0!important;
    height: 2px;
    border-radius: 0;
  }
}

/*============================================
  Top Page
  ============================================*/
.first-contents{
  background: #f0f1f9;
  padding: 4vw 0;
}
.first-message{
  padding: 2.4em 0 4.5em 0;
  align-items: center;
}
.first-message .txt{
  width: 46%;
}
.first-message .img-r{
  width: 50%;
}
.message__ttl{
  font-size: max(2.6vw, 1.4em);
  font-weight: 600;
  padding-bottom: .6em;
  line-height: 1.8;
  color: #3862e4;
}
.meesage__txt{
  font-size: max(1.1vw, .9em);
  line-height: 2.4;
}
.img-rad{
  border-radius: 6px;
}
.index-ttl{
  font-size: max(3.2vw, 2em);
  letter-spacing: .04em;
  line-height: 1.4;
  padding-bottom: .6em;
}
.index-ttl span{
  display: block;
  font-size: 13px;
}
.index-ttl:first-letter{
  color: #3862e4;
}
.first-box__items{
  width: 45%;
}
.first-box__items h3{
  font-size: max(1.5vw, 1.2em);
}
.first-box__items h3 span{
  display: block;
  font-size: 12px;
  color: #3862e4;
}
.first-box__items a{
  color: #302e2d;
}
.first-box__items .btn{
  display: block;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #3862e4;
  color: #3862e4;
  height: 45px;
  line-height: 45px;
  font-size: .9rem;
}
.first-box__items .btn span{
  position: relative;
  padding-right: 16px;
}
.first-box__items .btn span::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #3862e4;
  border-right: solid 2px #3862e4;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  transform: rotate(45deg);
}
.first-box__items .btn:hover{
  background: #3862e4;
  color: #fff;
}

#news{
  padding: 5rem 0;
}
.newe-items{
  display: flex;
  border-top: 1px solid #f6f6f5;
  padding: 1.8vw .4vw;
  font-weight: 500;
}
.newe-items dt{
  padding-right: 2.4vw;
  color: #3862e4;
  font-weight: bold;
}
.first-recruit{
  background: linear-gradient( 130deg, rgba(255,255,255,0.6), rgba(255,225,255,0.3)),url(../img/is-recruit.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  height:100%;
  padding: 5.2vw 20px;
  margin-bottom: 3rem;
  text-align: center;
}
.first-recruit a{
  display: block;
  color: #302e2d;
}
.l-sns{
  display: flex;
  justify-content: space-between;
  padding: 3.4em 0;
}
.l-sns li{
  list-style-type: none;
  margin: 0;
  border: 6px solid #f1f1f1;
  background: #fff;
  width: 31%;
  text-align: center;
  padding: 1.2em 0;
  border-radius: 4px;
}
.l-sns li a{
  display: block;
}
.l-sns li img{
  width: 15%;
  vertical-align: middle;
  padding-right: 15px;
}
.l-sns li p{
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  color: #302e2d;
}
.sns-embed{
  padding: 0 0 3em;
}
.sns-embed .col2__items{
  text-align: center;
  background: #fafafa;
  padding: 30px 0;
}
@media screen and (min-width: 992px) {
  .first-box__items p{
    height: 110px;
  }
  .col2__items{
    width: 48%;
  }
  .news-ttl{
    width: 30%;
  }
  .news-list{
    width: 70%;
  }
}
@media only screen and (max-width: 991px){
  .first-box__items{
    width: 100%;
    padding-bottom: 2rem;
  }
  .first-box__items p{
    padding-bottom: 1rem;
  }
  .first-message .txt,.first-message .img-r{
    width: 100%;
  }
  .t-message{
    flex-direction: column;
    padding: 2em 0 0;
  }
  .t-message__items,.t-message__img{
    width: 100%;
  }
  .first-message{
    padding: 1em 0 2em 0;
  }
  .message__ttl{
    text-align: center;
  }
  .meesage__txt br{
    display: none;
  }
  .meesage__txt{
    line-height: 1.8;
    padding-bottom: 1em;
  }
  .first-box__items{
    width: 100%;
  }
  .first-box__items h3 span{
    line-height: 1;
    padding-bottom: 8px;
  }
  #news{
    padding: 2.5em 0;
  }
  .newe-items dt, .newe-items dd{
    font-size: 13px;
    line-height: 1.4;
  }
  .l-sns li{
    width: 32%;
    padding: 10px 0;
    border: 2px solid #f1f1f1;
  }
  .l-sns li p{
    font-size: 10px;
  }
  .col2__items{
    padding-bottom: 1rem;
  }
}


/*============================================
  Inside pages
  ============================================*/
/* Inside head title */
#content .is-head__wrapper{
  padding: 0;
  position: relative;
  height: 500px;
}
#content .is-head__items{
  background-position: center center;
  height: 500px;
  position: relative;
  background-size: cover;
}
#content .is-head__items::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
}
#content .is-head__txt{
  position: absolute;
  left: 50px;
  bottom: 10%;
  color: #fff;
}
#content .is-head__txt h1{
  font-size: max(2.6vw, 1.4em);
}
#content .is-head__txt span{
  display: block;
  font-size: max(1.3vw, .9em);
  padding-left: 5px;
  font-weight: 600;
}

/* Inside Contents */
.is-contentWrap{
  padding-bottom: 4vw;
}
.is-ttl2{
  text-align: center;
  font-size: max(2.5vw, 1.4em);
  padding-top: 1vw;
  line-height: 1.4;
}
.is-ttl2__sub{
  text-align: center;
  font-size: max(1.1vw, .7em);
  padding-bottom: 1vw;
  letter-spacing: .04em;
}
.is-ttl3{
  border-left: 3px solid #3862e4;
  font-size: max(1.4vw, 15px);
  padding: 0 0 0 .6em;
  margin: 0 0 1em 0;
}
.is-sub__txt{
  text-align: center;
  font-weight: 600;
  padding: 1.4vw 0;
  font-size: max(1.6vw, 1em);
  line-height: 1.6;
}
.full{
  background: #f0f1f9;
  padding: 5em 0;
}
.is-c-wrap{
  padding-top: 3em;
  padding-bottom: 3em;
}
.txt-p{
  padding: 0 0 1.2em 0;
}
.about-facilities li{
  background: #fff;
  list-style-type: none;
  margin: 0 0 1em 0;
  padding: 0;
  width: 100%;
  padding: 1em 1.5em;
  border-radius: 15px;
  border: 1px solid #3862e4;
  font-weight: 700;
}
.about-facilities li span{
  font-size: .9em;
  color: #3862e4;
  padding-right: 15px;
}
.txt-area{
  padding: 3rem 0;
}
.txt-area p{
  padding: .8rem 0;
}
.txt-area p.mh{
  border-left: 10px solid #FF3333;
  padding: 5px 0 5px 10px !important;
  font-size: 120%;
  font-weight: bold; 
}
.txt-area h4{
  color: #000;
  font-size: max(1.3vw, 1.2rem);
}
.line-up__ttl{
  font-size: max(1.6vw, 1em);
  border-left: 8px solid #FF3333;
  padding: 0 0 0 10px;
  margin: 5vw 0 .5em;
}

/* Service Page */
.message{
  background: #f6f6fc;
}
.message h2{
  text-align: center;
  font-size: max(2.6vw, 1.2rem);
  padding-top: 3rem;
}
.message h2 span{
  border-bottom: 3px dashed #b4ab87;
}
.message h3{
  text-align: center;
  color: #3862e4;
  font-size: max(1.3vw, 1.2rem);
  padding-top: 3rem;
}
.message h3 span{
  border-bottom: 2px dashed #b4ab87;
}
.message h4{
  color: #3862e4;
  font-size: max(1.3vw, 1.2rem);
}
.message h5{
  font-size: max(1vw, 1.2rem);
  padding-top: 2rem;
}


.message .txt-area{
  padding: 3rem 0;
}
.message .txt-area p{
  padding: .8rem 0;
}

.message-img-box{
  display: flex;
  justify-content: space-between;
  padding: 2vw 0 0;
}
.message-img-box li{
  width: 32%;
}
.w-wrap{
  background: #fff;
  border-radius: 10px;
  margin: 2em 0 0;
  padding: 2em!important;
}

.w-wrap .list{
  margin: 0 1em;
}
.w-wrap .list li{
  list-style-type: circle;
  padding: .6em 0;
  border-bottom: 1px dotted #bbb;
}
@media screen and (min-width: 992px) {
  .message .txt-area p{
    line-height: 2.4;
  }
}
@media only screen and (max-width: 768px){
  .w-wrap h3 .num{
    padding-right: 6px;
    padding-left: 6px;
  }
}

/*Safety Page */
.safety-table{
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  margin: 2rem 0 3rem;
}
.safety-table th{
  width: 20%;
  padding: 14px;
  font-weight: bold;
  border: 1px solid #ccc;
  background: #3862e4;
  color: #fff;
}
.safety-table td{
  width: 80%;
  padding: 14px;
  border: 1px solid #ccc;
  background: #fff;
}


/* Faq Page */
.faq-wrapper{
  border-radius: 10px;
  background: #f0f1f9;
  padding: 1.6rem;
  margin: 1.8em 0;
}
.c-faq__head,.c-faq__content{
  display: flex;
  align-items: flex-start;
}
.c-faq__content{
  position: relative;
  padding-top: .5em;
}
.c-faq__head .c-faq__title{
  font-size: max(1.4vw, 14px);
  padding-top: .3rem;
}
.c-faq__content .c-faq__title{
  font-size: max(1.2vw, 13px);
  line-height: 1.8;
  font-weight: 500;
  padding-top: .3rem;
}
.c-faq__icon{
  color: #b59a2d;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 1.2;
  background-color: #f3f0e3;
  border-radius: 50%;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 1.4rem;
  padding-left: .01em;
}
.c-faq__content .c-faq__icon{
  background-color: #f8eeef;
  color: #3862e4;
  padding-left: .02em;
}
.is-recruit-wrap{
  padding: 2vw 0 6vw 0;
}
.is-recruit-txt{
  text-align: center;
  padding-bottom: 2rem;
}
.infoList-wrap{
  display: flex;
  border-bottom: 1px solid #eeece7;
  padding: 1.64em 0;
}
.infoList__ttl{
  width: 26%;
  color: #3862e4;
  font-weight: 700;
}
.recruit-table{
  width: 100%;
}
.recruit-table tr{
  border-bottom: 1px solid #eeece7;
}
.recruit-table th{
  width: 25%;
  text-align: left;
  color: #3862e4;
  font-weight: 700;
  padding: 1.6vw 0;
  border-bottom: 1px solid #eeece7;
}
.recruit-table td{
  width: 75%;
  padding: 1.6vw 0;
  border-bottom: 1px solid #eeece7;
}

.ggmap{
  margin: 1vw 0 4.5vw 0;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
}
.ggmap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flow-wrap{
  background: #fff;
  border-radius: 6px;
  padding: 5vw;
}
.flow-box{
  border-collapse: collapse;
  border-bottom: 2px dotted #3862e4;
  width: 100%;
}
.flow-box-inner{
  width: 100%;
}
.flow-box tr{
  border-top: 2px dotted #3862e4;
}
.flow-box th{
  padding: 1.15em 1em 1.15em 0;
  font-size: 1.5em;
  color: #3862e4;
}
.flow-box td{
  padding: 1.15em 0;
  font-size: .9em;
}
.flow-box td strong{
  font-size: 1.1em;
}
.flow-box-img li{
  list-style-type: none;
  padding-bottom: 6px;
}

/* Safety Page */
.safety{
  padding: 6vw 0;
  line-height: 1.6;
}
.safety h2{
  font-size: max(2vw, 1.3em);
}
.safety h3{
  font-size: max(1.5vw, 1em);
  margin: 4vw 0 14px 0;
  border-bottom: #EEEEEE solid 2px;
  position: relative;
  padding: 6px 0;
}
.safety h3:after {
  content: "";
  width: 160px;
  background: #3862e4;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.safety h4{
  font-size: max(1.3vw, .9em);
  background: #f2f2f2;
  padding: 4px 10px;
  margin: 2vw 0 10px 0;
}
.safety h5{
  font-size: max(1.2vw, .9em);
  padding: 1vw 0 .4em 10px;
}
.safety dl,.safety ul{
  padding: 0 12px 1em 12px;
  list-style: circle;
}
.safety dt{
  font-size: 1em;
  font-weight: 600;
  padding: 1em 0 0;
}
.safety dd{
  font-size: 1em;
  line-height: 1.4;
  padding: 4px 0 0 16px;
}
.safety .list5{
  font-size: 1em;
  margin: 0 0 0 16px;
}
.safety .gray{
  background: #f2f2f2;
  color: #000;
  padding: 16px 10px;
  text-align: center;
  margin: 14px 0;
}
.safety .gray strong{
  font-size: 1.2em;
}
@media screen and (max-width: 991px) {
  .safety dt{
    font-size: 14px;
    padding-top: 10px;
  }
  .safety dd,.safety .list5{
    font-size: 13px;
  }
}

/* Contact Page */
.contact-wrap {
  border-radius: 10px;
  background: #f0f1f9;
  padding: 3vw;
  margin: 1.8em 0;
}
.is-contact .is-ttl2{
  font-size: max(2.5vw, 1.1em);
}
.is-contact__tel{
  text-align: center;
}
.is-contact__tel .tel{
  color: #3862e4;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
  margin-top: -10px;
}
.is-contact__tel .tel a{
  color: #3862e4;
}
@media screen and (min-width: 992px) {
  .is-contact__tel .tel a{
    pointer-events: none;
  }
}
.is-contact__tel .tel:before{
  content: '';
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../img/tel.svg) no-repeat center top;
    background-size: auto;
  background-size: auto;
  background-size: contain;
}
#form_list{
  width: 100%;
}
#form_list th{
  width: 25%;
  text-align: left;
  padding: 1.3em 0;
}
#form_list th span{
  border: 1px solid #3862e4;
  color: #3862e4;
  font-size: .7em;
  padding: 2px 6px;
  margin-left: 10px;
}
#form_list td{
  width: 75%;
}
#form_list input{
  padding: 10px;
}
.f60 {
  box-sizing: border-box;
  width: 60%;
}
.form{
  text-align: center;
  padding: 2em 0 0;
}
.form .form_btn{
  background: #3862e4;
  color: #fff;
  border: 0;
  width: 200px;
  padding: 1em 0;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 500px;
}
.thanks{
  text-align: center;
}
.thanks strong{
  display: block;
  font-size: 1.3rem;
  padding-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .flow-box-inner{
    width: 70%;
  }
  .flow-box-img{
    width: 26.5%;
  }
}
@media screen and (max-width: 991px) {
  #content .is-head__wrapper{
    height: 260px;
  }
  #content .is-head__items{
    height: 260px;
  }
  #content .is-head__txt{
    left: 20px;
  }
  .is-c-wrap{
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .infoList-wrap{
    padding: 16px 0;
  }
  .infoList__ttl{
    width: 30%;
    font-size: 13px;
  }
  .infoList__txt{
    width: 70%;
    font-size: 13px;
  }
  .full{
    padding: 2em 0;
  }
  .flow-wrap{
    margin-top: 10px;
  }
  .flow-box-img{
    padding-top: 1em;
  }
  .flow-box-img ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0px -5px 0px;
  }
  .flow-box-img li{
    width: calc(50% - 10px);
    margin: 0px 5px 5px;
  }
  .is-sub__txt{
    text-align: left;
  }
  .is-sub__txt br{
    display: none;
  }
  .about-facilities li{
    font-size: 14px;
  }
  .is-recruit-txt{
    text-align: left;
    padding: 10px 0 16px 0;
  }
  .contact-wrap{
    padding: 30px 20px;
    margin-top: 1em;
  }
  .is-contact__tel .tel{
    font-size: 2.2em;
  }
  .is-contact__tel .time{
    font-size: 12px;
  }
  .is-contact__tel .tel::before{
    width: 24px;
    height: 24px;
  }
  .is-contact__tel .time {
    font-size: 12px;
  }
  #form_list th,#form_list td{
    display: block;
    width: 100%;
  }
  #form_list th{
    padding-bottom: 8px;
    font-size: 14px;
  }
  #form_list textarea{
    width: 100%;
  }
  .f60, .data{
    width: 100%;
  }
  .form .form_btn{
    font-size: 14px;
  }
}


/*============================================
  Footer
  ============================================*/
.l-footContact{
  background: #eff0fa;
  position: relative;
  height:100%;
  padding: 5.2vw 0;
  border-top: 1px solid #fff;
}
.l-footContact .inner{
  position: relative;
}

.l-fcontact__mail,.l-fcontact__tel{
  text-align: center;

}
.l-fcontact__mail{
  border-right: 2px solid #fff;
}
.l-fcontact__title{
  font-size: max(1.5vw, 1em);
  font-weight: 600;
}
.l-fcontact__button{
  text-align: center;
  padding: .4em 0;
}
.c-button,.recruit-btn{
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  padding: 18px 0;
  text-align: center;
  outline: none; 
  transition: ease .2s;
  font-weight: 600;
  background: #fff;
  border: 2px solid #3862e4;
  border-radius: 500px;
  max-width: 100%;
  width: 380px;
  margin: 0 auto;
  font-size: max(1.4vw, 1em);
}
.recruit-btn{
  width: 300px;
  margin-top: 1em;
  font-size: 1em;
}
.c-button span,.recruit-btn span{
  position: relative;
  z-index: 3;
  color:#3862e4;
}
.c-button:hover span,.recruit-btn:hover span{
  color:#fff;
}
.c-button:before,.recruit-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #3862e4;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-button:hover:before,.recruit-btn:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.l-fcontact__box-tel{
  font-size: 2.4em;
  font-weight: 600;
  line-height: 1.4;
}
.l-fcontact__box-tel small{
  font-size: .8rem;
  display: block;
}
.l-fcontact__box-tel a{
  color: #3862e4;
}
.l-fcontact__box-tel a::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/tel.svg) no-repeat center top;
  background-size: auto;
  background-size: contain;
}

footer{
  background: #fff;
  border-top: 1px solid #fff;
}
.footer-logo{
  text-align: center;
  padding: 3.5em 0 2em;
}
.footer-logo img{
  width: 180px;
}
.footer-menu{
  justify-content: center;
}
.footer-menu li{
  list-style-type: none;
  padding: 0 1vw;
}
.footer-menu li a{
  color: #302e2d;
  font-size: .9em;
  font-weight: 600;
}
footer .copy{
  text-align: center;
  padding: 4.2vw 0 .4vw 0;
  font-size: 10px;
  letter-spacing: .03rem;
}

@media only screen and (max-width: 768px){
.recruit-btn{
  width: 200px;
  font-size: .8em;
  padding: 10px 0;
}
.l-sns{
  padding-top: 1.4em;
  padding-bottom: 1.4em;
}
.l-fcontact__mail, .l-fcontact__tel{
  width: 100%;
  padding-top: .5em;
}
.l-fcontact__mail{
  border-right: 0;
}
.footer-logo{
  padding: 2em 0 1em;
}
.footer-logo img{
  width: 100px;
}
.footer-menu li{
  border-bottom: 1px solid #eeece7;
}
.footer-menu li a{
  display: block;
  padding: 10px 0;
  }
}

/*============================================
  Page Scroll
  ============================================*/
#side_btn{
  position: fixed;
  border-radius: 8px 0 0 8px;
  bottom: 160px;
  right: 0;
  z-index: 3;
  background: #3862e4;
  padding: 20px 12px 16px 12px;
}
#side_btn li{
  list-style-type: none;
  padding: 4px 0;
}
#side_btn li img{
  width: 24px;
}
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 100%;
  z-index: 9999;
}
#page-top a {
  background: #fff;
  text-decoration: none;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  display: block;
  opacity: 0.9;
  padding: 0;
  border-radius: 500px;
  border: 2px solid #3862e4;
}
#page-top a:hover {
  text-decoration: none;
  background: #f3f5f8;
}
#page-top img{
  width: 30px;
  margin-top: 15px;
}

@media only screen and (max-width: 768px){
  #page-top {
    bottom: 25px;
    right: 10px;
  }
  #page-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  #page-top img{
    width: 16px;
    padding-top: 0px;
    margin-top: -4px;
  }
  #side_btn{
    bottom: 100px;
  }
  #side_btn li img{
    width: 18px;
  }
}