
/* ------------------------------------------
  Utility Class
------------------------------------------ */
/* clearfix */
.clearfix:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}

/* ------------------------------------------
  Common
------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  height: 100%;
}

body {
  background: #fff;
  color: #353535;
  font-family: '游ゴシック Medium','Yu Gothic Medium','游ゴシック体',YuGothic,sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-width: 1150px;
  position: relative;
  -webkit-text-size-adjust: none;
}

@media all and (-ms-high-contrast:none) {
  body {
    font-family: 'メイリオ',Meiryo,'游ゴシック',YuGothic,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  }
}

body.active {
  height: 100%;
  overflow: hidden;
}

a, a img {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease, background .3s ease, opacity .3s ease;
}

a:hover {
  opacity: .75;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: inherit;
}

ul, ol {
  list-style: none;
}

.only_pc {
  display: block !important;
}

.only_sp {
  display: none !important;
}

input, button, select, textarea {
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
}

input[type=checkbox], input[type=radio] {
  height: 0;
  width: 0;
}

.container {
  margin: 0 auto;
  width: 1000px;
}

.more_btn {
  background-color: #17aa97;
  border: 2px #17aa97 solid;
  border-radius: 27px;
  color: #fff;
  display: table;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 auto;
  padding: 16px 34px 18px;
  position: relative;
  transition: all .3s;
}

.more_btn:hover {
  background-color: #fff;
  border: 2px #17aa97 solid;
  border-radius: 27px;
  color: #17aa97;
  opacity: 1;
}

.heading {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
}

.heading span {
  color: #17aa97;
  font-family: 'Damion', cursive;
  font-size: 7.2rem;
  font-weight: normal;
  letter-spacing: .05em;
  line-height: 1;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }

  .container {
    margin: 0 15px;
    width: auto;
  }

  .only_pc {
    display: none !important;
  }

  .only_sp {
    display: block !important;
  }

  .more_btn {
    font-size: 1.5rem;
    padding: 15px 25px 17px;
  }

  .heading {
    font-size: 1.5rem;
  }

  .heading span {
    font-size: 4rem;
    margin-right: 12px;
  }
}

/* ------------------------------------------
  header
------------------------------------------ */
body {
  padding-top: 100px;
}

.header {
  background-color: #fff;
  display: flex;
  height: 100px;
  justify-content: space-between;
  left: 0;
  padding: 13px 20px 0 13px;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 99;
}

.header .header_logo a {
  display: block;
  height: 65px;
}

.header .header_logo a img {
  height: 100%;
}

.header nav .header_nav {
  display: flex;
  height: 100%;
}

.header_nav .header_nav_list {
  font-size: 1.8rem;
  font-weight: bold;
  height: 100%;
  margin-left: 36px;
  padding-top: 28px;
  position: relative;
}

.header_nav .header_nav_list a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
}

.header_nav .header_nav_list a:hover {
  opacity: 1;
}

.header_nav .header_nav_list::after {
  background-color: #fff45c;
  bottom: 30px;
  content: '';
  height: 9px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: .3s;
  width: 0;
}

.header_nav .header_nav_list:hover::after {
  width: calc(100% + 6px);
}

.header_nav .header_nav_list:first-child {
  margin-left: 0;
}

.header_contact {
  background-color: #17aa97;
  background-image: url(../img/mail_icon.png);
  background-position: center left 30px;
  background-repeat: no-repeat;
  background-size: 22px auto;
  border: 2px #fff solid;
  border-radius: 27px;
  color: #fff;
  height: 54px;
  margin-left: 33px;
  margin-top: 13px;
  transition: all .3s;
}

.header_contact:hover {
  background-color: #fff;
  background-image: url(../img/mail_icon_hover.png);
  border: 2px #17aa97 solid;
  color: #17aa97;
}

.header_contact a {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 16px 30px 18px;
  transition: none;
}

.header_contact a:hover {
  opacity: 1;
}

.header_contact a span {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  padding-left: 30px;
  position: relative;
}

.header .sp_header_nav_btn {
  display: none;
}

.header_nav_list_recruit {
  background-color: #17aa97;
  display: none;
  height: 80px;
  position: absolute;
  right: -476px;
  top: 87px;
  width: 100vw;
  z-index: 999;
}

.header_nav_list_recruit ul {
  align-items: stretch;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  padding-right: 280px;
  position: relative;
}

.header_nav_list_recruit ul li {
  color: #fff;
  display: table;
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 30px;
}

.header_nav_list_recruit ul li:first-child {
  margin-left: 0;
}

.header_nav_list_recruit ul li a {
  display: block;
  line-height: 1;
  padding: 33px 0 29px;
}

.header_nav .header_nav_list .header_nav_list_recruit ul li a:hover {
  opacity: .7;
}

.header_nav_list_recruit .header_nav_list_recruit_arrow {
  border-color: transparent transparent #17aa96 transparent;
  border-style: solid;
  border-width: 0 12.5px 25px 12.5px;
  content: '';
  height: 0;
  pointer-events: none;
  position: absolute;
  right: 500px;
  top: -25px;
  width: 0;
}

.sp_nav {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }

  .header {
    height: 60px;
    padding: 6px;
  }

  .header nav {
    display: none;
  }

  .header .header_logo a {
    height: 47px;
  }

  .header .sp_header_nav_btn {
    background-image: url(../img/sp_nav_btn.png);
    background-size: 43px auto;
    cursor: pointer;
    display: block;
    height: 43px;
    width: 43px;
  }

  .sp_nav {
    background-color: #17aa97;
    display: block;
    height: 100vh;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: .5s;
    width: 0;
    z-index: 99999;
  }

  .sp_nav.open {
    opacity: 1;
    width: 70vw;
  }

  .sp_nav_wrap {
    padding-top: 70px;
    position: relative;
    z-index: 2;
  }

  .sp_nav .sp_nav_wrap .sp_nav_close {
    background-image: url(../img/sp_nav_close.png);
    background-repeat: no-repeat;
    background-size: 24px;
    display: none;
    height: 24px;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 24px;
  }

  .sp_nav.open .sp_nav_wrap .sp_nav_close {
    display: block;
  }

  .sp_nav_lists {
    max-height: calc(100vh - 70px);
    overflow-y: scroll;
  }

  .sp_nav_lists .item {
    border-bottom: 1px #fff solid;
  }

  .sp_nav_lists .item a {
    color: #fff;
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1;
    padding: 15px 35px;
    position: relative;
  }

  .sp_nav_lists .item a::after {
    background-image: url(../img/sp_nav_arrow.png);
    background-repeat: no-repeat;
    background-size: 8px 12px;
    content: '';
    height: 12px;
    position: absolute;
    right: 15px;
    top: 18px;
    width: 8px;
  }

  .sp_nav_lists .item .recruit_slide::after {
    transition: .3s;
  }

  .sp_nav_lists .item .recruit_slide.open::after {
    transform: rotate(90deg);
  }

  .sp_nav_recruit_slide {
    background-color: #3bccb9;
    border-top: 1px #fff solid;
    display: none;
  }

  .sp_nav_lists .item .sp_nav_recruit_slide li a {
    padding: 15px 0 15px 55px;
  }

  .sp_nav_lists .item .sp_nav_recruit_slide li a::after {
    display: none;
  }
}

/* ------------------------------------------
  contact
------------------------------------------ */
.contact {
  padding: 60px 0 70px;
}

.contact_box {
  display: flex;
  margin-top: 65px;
}

.contact_tel {
  background-color: #f2fbfa;
  box-shadow: 4px 4px 2px rgba(4,0,0,.33);
  position: relative;
  width: calc(50% - 17px);
}

.contact_tel a {
  display: block;
}

.contact_tel_text {
  color: #17aa97;
  padding: 137px 0 25px;
  position: relative;
  text-align: center;
}

.contact_tel_text::after {
  background-image: url(../img/contact_phone_icon01.png);
  background-size: 89px 88px;
  content: '';
  height: 88px;
  left: 50%;
  position: absolute;
  top: 34px;
  transform: translateX(-50%);
  width: 89px;
}

.contact_tel_text .text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}

.contact_tel_text .tel {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
}

.contact_tel_text .tel span {
  font-size: 2.3rem;
}

.contact_tel_text .time {
  font-size: 1.8rem;
  line-height: 1.3;
}

.contact_mail {
  background-color: #f2fbfa;
  box-shadow: 4px 4px 2px rgba(4,0,0,.33);
  margin-left: 34px;
  position: relative;
  width: calc(50% - 17px);
}

.contact_mail a {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.contact_mail a:hover {
  opacity: 1;
}

.contact_mail a::after {
  background-image: url(../img/contact_mail_icon01.png);
  background-size: 89px 88px;
  content: '';
  height: 88px;
  left: 50%;
  position: absolute;
  top: 34px;
  transform: translateX(-50%);
  width: 89px;
}

.contact_mail_btn_text {
  background-color: #17aa97;
  border: 2px #17aa97 solid;
  border-radius: 27px;
  color: #fff;
  display: table;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 auto;
  padding: 16px 34px 18px;
  transition: all .3s;
}

.contact_mail a:hover .contact_mail_btn .contact_mail_btn_text {
  background-color: #fff;
  border: 2px #17aa97 solid;
  color: #17aa97;
  opacity: 1;
}

.contact_mail_btn {
  padding: 146px 0 46px;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 35px 0 70px;
  }

  .contact_box {
    display: block;
    margin-top: 40px;
  }

  .contact_tel {
    margin: 0 20px ;
    width: calc(100% - 40px);
  }

  .contact_tel_text {
    padding: 83px 0 15px;
  }

  .contact_tel_text::after {
    background-size: 54px;
    height: 54px;
    top: 20px;
    width: 54px;
  }

  .contact_tel_text .text {
    font-size: 1.2rem;
  }

  .contact_tel_text .tel {
    font-size: 1.8rem;
  }

  .contact_tel_text .tel span {
    font-size: 1.6rem;
  }

  .contact_tel_text .time {
    font-size: 1.1rem;
  }

  .contact_mail {
    margin: 30px 20px 0;
    width: calc(100% - 40px);
  }

  .contact_mail a::after {
    background-size: 54px;
    height: 54px;
    top: 20px;
    width: 54px;
  }

  .contact_mail_btn {
    padding: 88px 0 28px;
  }

  .contact_mail_btn .contact_mail_btn_text {
    font-size: 1.2rem;
    padding: 10px 18px;
  }
}

/* ------------------------------------------
  news
------------------------------------------ */
.news {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.news_lists {
  margin-top: 60px;
}

.news_lists dl {
  border-bottom: #c1bfc0 1px solid;
  display: flex;
  padding: 15px 0;
}

.news_lists dl:first-child {
  padding: 0 0 15px;
}

.news_lists dl dt {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}

.news_lists dl dd {
  font-size: 1.8rem;
  margin-left: 60px;
}

.news_more {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .news {
    padding: 35px 0 45px;
  }

  .news_lists {
    margin-top: 25px;
  }

  .news_lists dl {
    padding: 10px 0;
  }

  .news_lists dl dt {
    font-size: 1.2rem;
  }

  .news_lists dl dd {
    font-size: 1.2rem;
    margin-left: 15px;
  }

  .news_more {
    margin-top: 30px;
  }
}


/* ------------------------------------------
  footer
------------------------------------------ */
.footer {
  background-color: #ededed;
  padding: 50px 0 70px;
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
}

.footer_left .footer_logo {
  display: block;
  height: 65px;
}

.footer_left .footer_logo img {
  height: 100%;
}

.footer_left .footer_text {
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 50px;
}

.footer_left .footer_copy {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 15px;
}

.footer_right {
  display: flex;
}

.footer_links {
  margin-left: 70px;
}

.footer_links:first-child {
  margin-left: 0;
}

.footer_links li {
  font-size: 1.8rem;
}

.footer_links li ul {
  padding-left: 18px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 40px;
  }

  .footer .container {
    margin: 0 50px;
  }

  .footer_wrap {
    display: block;
  }

  .footer_left .footer_logo {
    height: 45px;
  }

  .footer_left .footer_logo img {
    margin: 0 auto;
  }

  .footer_left .footer_text {
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
  }

  .footer_left .footer_copy {
    font-size: 1rem;
    margin-top: 10px;
    text-align: center;
  }

  .footer_right {
    justify-content: center;
    margin-top: 32px;
  }

  .footer_links li {
    font-size: 1.2rem;
  }

  .footer_links {
    margin-left: 25px;
  }


  .footer_links li ul {
    padding-left: 12px;
  }
}

/* ------------------------------------------
  page_top
------------------------------------------ */
.page_top {
  background-image: url(../img/pagetop_icon.png);
  background-size: 100%;
  bottom: 10px;
  cursor: pointer;
  padding-left: 58px;
  padding-top: 58px;
  position: fixed;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .page_top {
    padding-left: 40px;
    padding-top: 40px;
  }
}


/* ------------------------------------------
  fadein
------------------------------------------ */

.fadein {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}

.fadein.scrollin {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  opacity: 1;
  transform: translate(0, 0);
}
